diff --git a/src/Compute/Compute.Management.Sdk/Compute.Management.Sdk.csproj b/src/Compute/Compute.Management.Sdk/Compute.Management.Sdk.csproj index e474b44c7ea7..1e6c939e70e1 100644 --- a/src/Compute/Compute.Management.Sdk/Compute.Management.Sdk.csproj +++ b/src/Compute/Compute.Management.Sdk/Compute.Management.Sdk.csproj @@ -1,4 +1,4 @@ - + Compute diff --git a/src/Compute/Compute.Management.Sdk/Customizations/CloudServiceNetworkProfile.cs b/src/Compute/Compute.Management.Sdk/Customizations/CloudServiceNetworkProfile.cs deleted file mode 100644 index 0b6fc660318f..000000000000 --- a/src/Compute/Compute.Management.Sdk/Customizations/CloudServiceNetworkProfile.cs +++ /dev/null @@ -1,17 +0,0 @@ -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - public partial class CloudServiceNetworkProfile - { - public CloudServiceNetworkProfile(IList loadBalancerConfigurations, SubResource swappableCloudService) - { - LoadBalancerConfigurations = loadBalancerConfigurations; - SwappableCloudService = swappableCloudService; - CustomInit(); - } - } -} \ No newline at end of file diff --git a/src/Compute/Compute.Management.Sdk/Customizations/DiskEncryptionSetParameters.cs b/src/Compute/Compute.Management.Sdk/Customizations/DiskEncryptionSetParameters.cs deleted file mode 100644 index 18156d1e15b1..000000000000 --- a/src/Compute/Compute.Management.Sdk/Customizations/DiskEncryptionSetParameters.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Microsoft.Azure.Management.Compute.Models -{ - - public partial class DiskEncryptionSetParameters : SubResource - { - public DiskEncryptionSetParameters(string id = default(string)) - : base(id) - { - CustomInit(); - } - } -} diff --git a/src/Compute/Compute.Management.Sdk/Customizations/DiskRestorePoint.cs b/src/Compute/Compute.Management.Sdk/Customizations/DiskRestorePoint.cs index fe4fea2386cc..aa4695b0abfd 100644 --- a/src/Compute/Compute.Management.Sdk/Customizations/DiskRestorePoint.cs +++ b/src/Compute/Compute.Management.Sdk/Customizations/DiskRestorePoint.cs @@ -3,7 +3,7 @@ /// /// Properties of disk restore point /// - public partial class DiskRestorePoint : ProxyOnlyResource + public partial class DiskRestorePoint : ProxyResource { /// /// Initializes a new instance of the DiskRestorePoint class. diff --git a/src/Compute/Compute.Management.Sdk/Customizations/IVirtualMachinesOperations.cs b/src/Compute/Compute.Management.Sdk/Customizations/IVirtualMachinesOperations.cs deleted file mode 100644 index dd8654219301..000000000000 --- a/src/Compute/Compute.Management.Sdk/Customizations/IVirtualMachinesOperations.cs +++ /dev/null @@ -1,108 +0,0 @@ -namespace Microsoft.Azure.Management.Compute -{ - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Microsoft.Azure.Management.Compute.Models; - - /// - /// VirtualMachinesOperations operations. - /// - public partial interface IVirtualMachinesOperations - { - Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders, CancellationToken cancellationToken = default(CancellationToken)); - Task>> ListAllWithHttpMessagesAsync(string statusOnly, Dictionary> customHeaders, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The operation to delete a virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// The headers that will be added to request. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders); - /// - /// The operation to delete a virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders, CancellationToken cancellationToken); - /// - /// The operation to delete a virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// The headers that will be added to request. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders); - /// - /// The operation to delete a virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// 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 BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders, CancellationToken cancellationToken); - - Task DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders, CancellationToken cancellationToken); - Task DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders); - - Task BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders, CancellationToken cancellationToken); - Task BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders); - - Task ReimageWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? tempDisk = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? tempDisk = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/src/Compute/Compute.Management.Sdk/Customizations/NetworkInterfaceReference.cs b/src/Compute/Compute.Management.Sdk/Customizations/NetworkInterfaceReference.cs deleted file mode 100644 index 62dfec700d43..000000000000 --- a/src/Compute/Compute.Management.Sdk/Customizations/NetworkInterfaceReference.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Microsoft.Azure.Management.Compute.Models -{ - public partial class NetworkInterfaceReference : SubResource - { - public NetworkInterfaceReference(string id = default(string), bool? primary = default(bool?), string deleteOption = default(string)) - : base(id) - { - Primary = primary; - DeleteOption = deleteOption; - CustomInit(); - } - } -} diff --git a/src/Compute/Compute.Management.Sdk/Customizations/SubResourceWithColocationStatus.cs b/src/Compute/Compute.Management.Sdk/Customizations/SubResourceWithColocationStatus.cs deleted file mode 100644 index 7ca3a377c0d6..000000000000 --- a/src/Compute/Compute.Management.Sdk/Customizations/SubResourceWithColocationStatus.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Microsoft.Rest.Azure; -using Newtonsoft.Json; - -namespace Microsoft.Azure.Management.Compute.Models -{ - public partial class SubResourceWithColocationStatus : SubResource - { - public SubResourceWithColocationStatus(string id = default(string), InstanceViewStatus colocationStatus = default(InstanceViewStatus)) - : base(id) - { - ColocationStatus = colocationStatus; - CustomInit(); - } - } -} \ No newline at end of file diff --git a/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachineCaptureResult.cs b/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachineCaptureResult.cs deleted file mode 100644 index 76c1e7cd2926..000000000000 --- a/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachineCaptureResult.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Microsoft.Azure.Management.Compute.Models -{ - public partial class VirtualMachineCaptureResult : SubResource - { - public VirtualMachineCaptureResult(string id = default(string), string schema = default(string), string contentVersion = default(string), object parameters = default(object), IList resources = default(IList)) - : base(id) - { - Schema = schema; - ContentVersion = contentVersion; - Parameters = parameters; - Resources = resources; - CustomInit(); - } - } -} \ No newline at end of file diff --git a/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachineScaleSetExtensionUpdate.cs b/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachineScaleSetExtensionUpdate.cs deleted file mode 100644 index e51e800142a9..000000000000 --- a/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachineScaleSetExtensionUpdate.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System.Collections.Generic; - -namespace Microsoft.Azure.Management.Compute.Models -{ - public partial class VirtualMachineScaleSetExtensionUpdate : SubResourceReadOnly - { - public VirtualMachineScaleSetExtensionUpdate(string id = default(string), string name = default(string), string type = default(string), string forceUpdateTag = default(string), string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), IList provisionAfterExtensions = default(IList), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference)) - : base(id) - { - Name = name; - Type = type; - ForceUpdateTag = forceUpdateTag; - Publisher = publisher; - Type1 = type1; - TypeHandlerVersion = typeHandlerVersion; - AutoUpgradeMinorVersion = autoUpgradeMinorVersion; - EnableAutomaticUpgrade = enableAutomaticUpgrade; - Settings = settings; - ProtectedSettings = protectedSettings; - ProvisioningState = provisioningState; - ProvisionAfterExtensions = provisionAfterExtensions; - SuppressFailures = suppressFailures; - ProtectedSettingsFromKeyVault = protectedSettingsFromKeyVault; - CustomInit(); - } - } -} \ No newline at end of file diff --git a/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachineScaleSetVMExtension.cs b/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachineScaleSetVMExtension.cs index fcc20a2e311d..f879759fb799 100644 --- a/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachineScaleSetVMExtension.cs +++ b/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachineScaleSetVMExtension.cs @@ -8,13 +8,13 @@ namespace Microsoft.Azure.Management.Compute.Models { public partial class VirtualMachineScaleSetVMExtension : SubResourceReadOnly { - public VirtualMachineScaleSetVMExtension(string name, string type, string forceUpdateTag, string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference)) + public VirtualMachineScaleSetVMExtension(string name, string type, string forceUpdateTag, string publisher = default(string), string virtualMachineExtensionPropertiesType = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference)) { Name = name; Type = type; ForceUpdateTag = forceUpdateTag; Publisher = publisher; - Type1 = type1; + VirtualMachineExtensionPropertiesType = virtualMachineExtensionPropertiesType; TypeHandlerVersion = typeHandlerVersion; AutoUpgradeMinorVersion = autoUpgradeMinorVersion; EnableAutomaticUpgrade = enableAutomaticUpgrade; @@ -27,15 +27,15 @@ public partial class VirtualMachineScaleSetVMExtension : SubResourceReadOnly CustomInit(); } - public VirtualMachineScaleSetVMExtension(string id = default(string), string name = default(string), string type = default(string), string location = default(string), string forceUpdateTag = default(string), string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference)) + public VirtualMachineScaleSetVMExtension(string id = default(string), string name = default(string), string type = default(string), string location = default(string), string forceUpdateTag = default(string), string publisher = default(string), string virtualMachineExtensionPropertiesType = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference)) : base(id) { Name = name; Type = type; - Location = Location; + Location = location; ForceUpdateTag = forceUpdateTag; Publisher = publisher; - Type1 = type1; + VirtualMachineExtensionPropertiesType = virtualMachineExtensionPropertiesType; TypeHandlerVersion = typeHandlerVersion; AutoUpgradeMinorVersion = autoUpgradeMinorVersion; EnableAutomaticUpgrade = enableAutomaticUpgrade; @@ -48,14 +48,14 @@ public partial class VirtualMachineScaleSetVMExtension : SubResourceReadOnly CustomInit(); } - public VirtualMachineScaleSetVMExtension(string id, string name, string type, string forceUpdateTag, string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference)) + public VirtualMachineScaleSetVMExtension(string id, string name, string type, string forceUpdateTag, string publisher = default(string), string virtualMachineExtensionPropertiesType = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference)) : base(id) { Name = name; Type = type; ForceUpdateTag = forceUpdateTag; Publisher = publisher; - Type1 = type1; + VirtualMachineExtensionPropertiesType = virtualMachineExtensionPropertiesType; TypeHandlerVersion = typeHandlerVersion; AutoUpgradeMinorVersion = autoUpgradeMinorVersion; EnableAutomaticUpgrade = enableAutomaticUpgrade; diff --git a/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachineScaleSetVMExtensionUpdate.cs b/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachineScaleSetVMExtensionUpdate.cs deleted file mode 100644 index 884193d1750b..000000000000 --- a/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachineScaleSetVMExtensionUpdate.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Microsoft.Azure.Management.Compute.Models -{ - - public partial class VirtualMachineScaleSetVMExtensionUpdate : SubResourceReadOnly - { - public VirtualMachineScaleSetVMExtensionUpdate(string id = default(string), string name = default(string), string type = default(string), string forceUpdateTag = default(string), string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference)) - : base(id) - { - Name = name; - Type = type; - ForceUpdateTag = forceUpdateTag; - Publisher = publisher; - Type1 = type1; - TypeHandlerVersion = typeHandlerVersion; - AutoUpgradeMinorVersion = autoUpgradeMinorVersion; - EnableAutomaticUpgrade = enableAutomaticUpgrade; - Settings = settings; - ProtectedSettings = protectedSettings; - SuppressFailures = suppressFailures; - ProtectedSettingsFromKeyVault = protectedSettingsFromKeyVault; - CustomInit(); - } - } -} diff --git a/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachinesOperations.cs b/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachinesOperations.cs deleted file mode 100644 index dc66909f17a6..000000000000 --- a/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachinesOperations.cs +++ /dev/null @@ -1,618 +0,0 @@ -namespace Microsoft.Azure.Management.Compute -{ - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Microsoft.Azure.Management.Compute.Models; - using System.Net.Http; - using Newtonsoft.Json; - using System.Linq; - using System.Net; - - /// - /// VirtualMachinesOperations operations. - /// - internal partial class VirtualMachinesOperations : IServiceOperations, IVirtualMachinesOperations - { - public async Task ReimageWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? tempDisk, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginReimageWithHttpMessagesAsync(resourceGroupName, vmName, tempDisk, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - public async Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? tempDisk, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (vmName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-11-01"; - VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters); - if (tempDisk != null) - { - parameters = new VirtualMachineReimageParameters(); - parameters.TempDisk = tempDisk; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("vmName", vmName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", 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/virtualMachines/{vmName}/reimage").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _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; - if (parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2021-11-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("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", 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/virtualMachines").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - public async Task>> ListAllWithHttpMessagesAsync(string statusOnly, Dictionary> customHeaders, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2021-11-01"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("statusOnly", statusOnly); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAll", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/virtualMachines").ToString(); - _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 (statusOnly != null) - { - _queryParameters.Add(string.Format("statusOnly={0}", System.Uri.EscapeDataString(statusOnly))); - } - 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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// The operation to delete a virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// The headers that will be added to request. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders) - { - return await DeleteWithHttpMessagesAsync(resourceGroupName, vmName, false, customHeaders, default(CancellationToken)); - } - - /// - /// The operation to delete a virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders, CancellationToken cancellationToken) - { - return await DeleteWithHttpMessagesAsync(resourceGroupName, vmName, false, customHeaders, cancellationToken); - } - - /// - /// The operation to delete a virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Headers that will be added to request. - /// - /// - /// 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 BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders) - { - return await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, false, customHeaders, default(CancellationToken)); - } - - - /// - /// The operation to delete a virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// 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 BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders, CancellationToken cancellationToken) - { - return await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, false, customHeaders, cancellationToken); - } - - public async Task DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders, CancellationToken cancellationToken) - { - return await DeallocateWithHttpMessagesAsync(resourceGroupName, vmName, null, customHeaders, cancellationToken); - } - - public async Task DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders) - { - return await DeallocateWithHttpMessagesAsync(resourceGroupName, vmName, null, customHeaders, default(CancellationToken)); - } - - public async Task BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders, CancellationToken cancellationToken) - { - return await BeginDeallocateWithHttpMessagesAsync(resourceGroupName, vmName, null, customHeaders, cancellationToken); - } - public async Task BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders) - { - return await BeginDeallocateWithHttpMessagesAsync(resourceGroupName, vmName, null, customHeaders, default(CancellationToken)); - } - } -} diff --git a/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachinesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachinesOperationsExtensions.cs deleted file mode 100644 index 144fc71115fa..000000000000 --- a/src/Compute/Compute.Management.Sdk/Customizations/VirtualMachinesOperationsExtensions.cs +++ /dev/null @@ -1,125 +0,0 @@ -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for VirtualMachinesOperations. - /// - public static partial class VirtualMachinesOperationsExtensions - { - public static void Reimage(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? tempDisk) - { - operations.ReimageAsync(resourceGroupName, vmName, tempDisk).GetAwaiter().GetResult(); - } - - public static async Task ReimageAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? tempDisk, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.ReimageWithHttpMessagesAsync(resourceGroupName, vmName, tempDisk, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - public static void BeginReimage(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? tempDisk) - { - operations.BeginReimageAsync(resourceGroupName, vmName, tempDisk).GetAwaiter().GetResult(); - } - - public static async Task BeginReimageAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? tempDisk, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginReimageWithHttpMessagesAsync(resourceGroupName, vmName, tempDisk, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - public static async Task> ListAsync(this IVirtualMachinesOperations operations, string resourceGroupName, CancellationToken cancellationToken) - { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - public static async Task> ListAllAsync(this IVirtualMachinesOperations operations, string statusOnly, CancellationToken cancellationToken) - { - using (var _result = await operations.ListAllWithHttpMessagesAsync(statusOnly, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - /// - /// The operation to delete a virtual machine. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - public static async Task DeleteAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) - { - await DeleteAsync(operations, resourceGroupName, vmName, false, default(CancellationToken)); - } - - /// - /// The operation to delete a virtual machine. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// The cancellation token. - /// - public static async Task DeleteAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken) - { - await DeleteAsync(operations, resourceGroupName, vmName, false, cancellationToken); - } - - /// - /// The operation to delete a virtual machine. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - public static async Task BeginDeleteAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) - { - await BeginDeleteAsync(operations, resourceGroupName, vmName, false, default(CancellationToken)); - } - - /// - /// The operation to delete a virtual machine. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// The cancellation token. - /// - public static async Task BeginDeleteAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken) - { - await BeginDeleteAsync(operations, resourceGroupName, vmName, false, cancellationToken); - } - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/AvailabilitySetsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/AvailabilitySetsOperations.cs index 5175edd0b7c5..0994bd71befc 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/AvailabilitySetsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/AvailabilitySetsOperations.cs @@ -51,16 +51,11 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update an availability set. + /// Lists all availability sets in a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the availability set. - /// - /// - /// Parameters supplied to the Create Availability Set operation. + /// + /// The expand expression to apply to the operation. Allowed values are + /// 'instanceView'. /// /// /// Headers that will be added to request. @@ -83,24 +78,8 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, AvailabilitySet parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListBySubscriptionWithHttpMessagesAsync(string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (availabilitySetName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -113,24 +92,24 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("availabilitySetName", availabilitySetName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", 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/availabilitySets/{availabilitySetName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{availabilitySetName}", System.Uri.EscapeDataString(availabilitySetName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/availabilitySets").ToString(); _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 (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -138,7 +117,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -169,12 +148,6 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -230,7 +203,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -243,7 +216,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -263,16 +236,10 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) } /// - /// Update an availability set. + /// Lists all availability sets in a resource group. /// /// - /// The name of the resource group. - /// - /// - /// The name of the availability set. - /// - /// - /// Parameters supplied to the Update Availability Set operation. + /// The name of the resource group. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -295,23 +262,26 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, AvailabilitySetUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (availabilitySetName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (parameters == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } string apiVersion = "2024-11-01"; // Tracing @@ -321,19 +291,16 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("availabilitySetName", availabilitySetName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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/availabilitySets/{availabilitySetName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{availabilitySetName}", System.Uri.EscapeDataString(availabilitySetName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -346,7 +313,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -377,12 +344,6 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -438,7 +399,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -451,7 +412,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -471,10 +432,10 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) } /// - /// Delete an availability set. + /// Retrieves information about an availability set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. @@ -488,6 +449,9 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -497,19 +461,30 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (availabilitySetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (availabilitySetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); } string apiVersion = "2024-11-01"; // Tracing @@ -519,18 +494,18 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("availabilitySetName", availabilitySetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/availabilitySets/{availabilitySetName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{availabilitySetName}", System.Uri.EscapeDataString(availabilitySetName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -543,7 +518,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -594,7 +569,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -629,13 +604,31 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -644,14 +637,17 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) } /// - /// Retrieves information about an availability set. + /// Create or update an availability set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// + /// + /// Parameters supplied to the Create Availability Set operation. + /// /// /// Headers that will be added to request. /// @@ -673,19 +669,38 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, AvailabilitySet parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (availabilitySetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); } - if (Client.SubscriptionId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2024-11-01"; // Tracing @@ -695,18 +710,19 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("availabilitySetName", availabilitySetName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", 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/availabilitySets/{availabilitySetName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{availabilitySetName}", System.Uri.EscapeDataString(availabilitySetName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -719,7 +735,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -750,6 +766,12 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -838,11 +860,16 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) } /// - /// Lists all availability sets in a subscription. + /// Update an availability set. /// - /// - /// The expand expression to apply to the operation. Allowed values are - /// 'virtualMachines/$ref'. + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the availability set. + /// + /// + /// Parameters supplied to the Update Availability Set operation. /// /// /// Headers that will be added to request. @@ -865,12 +892,35 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListBySubscriptionWithHttpMessagesAsync(string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, AvailabilitySetUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (availabilitySetName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -880,23 +930,23 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("expand", expand); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("availabilitySetName", availabilitySetName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/availabilitySets").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{availabilitySetName}", System.Uri.EscapeDataString(availabilitySetName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -904,7 +954,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -935,6 +985,12 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -990,7 +1046,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1003,7 +1059,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1023,10 +1079,13 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) } /// - /// Lists all availability sets in a resource group. + /// Delete an availability set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the availability set. /// /// /// Headers that will be added to request. @@ -1037,9 +1096,6 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1049,15 +1105,30 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (availabilitySetName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); } string apiVersion = "2024-11-01"; // Tracing @@ -1067,16 +1138,18 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("availabilitySetName", availabilitySetName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", 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/availabilitySets").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{availabilitySetName}", System.Uri.EscapeDataString(availabilitySetName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1089,7 +1162,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1140,7 +1213,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1175,31 +1248,13 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1208,11 +1263,10 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) } /// - /// Lists all available virtual machine sizes that can be used to create a new - /// virtual machine in an existing availability set. + /// Cancel the migration operation on an Availability Set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. @@ -1226,9 +1280,6 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1238,19 +1289,30 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAvailableSizesWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CancelMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (availabilitySetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (availabilitySetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); } string apiVersion = "2024-11-01"; // Tracing @@ -1260,18 +1322,18 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("availabilitySetName", availabilitySetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAvailableSizes", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CancelMigrationToVirtualMachineScaleSet", 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/availabilitySets/{availabilitySetName}/vmSizes").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}/cancelMigrationToVirtualMachineScaleSet").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{availabilitySetName}", System.Uri.EscapeDataString(availabilitySetName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1284,7 +1346,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1335,7 +1397,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1370,31 +1432,13 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1402,6 +1446,34 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) return _result; } + /// + /// Create a new Flexible Virtual Machine Scale Set and migrate all the Virtual + /// Machines in the Availability Set. This does not trigger a downtime on the + /// Virtual Machines. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the availability set. + /// + /// + /// Specifies information about the Virtual Machine Scale Set that the + /// Availability Set should be converted to. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ConvertToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, string virtualMachineScaleSetName = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginConvertToVirtualMachineScaleSetWithHttpMessagesAsync(resourceGroupName, availabilitySetName, virtualMachineScaleSetName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Start migration operation on an Availability Set to move its Virtual /// Machines to a Virtual Machine Scale Set. This should be followed by a @@ -1409,7 +1481,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// Virtual Machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. @@ -1438,17 +1510,28 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// public async Task StartMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, SubResource virtualMachineScaleSetFlexible, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (availabilitySetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (availabilitySetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); } if (virtualMachineScaleSetFlexible == null) { @@ -1467,9 +1550,9 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("availabilitySetName", availabilitySetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "StartMigrationToVirtualMachineScaleSet", tracingParameters); @@ -1477,9 +1560,9 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // 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/availabilitySets/{availabilitySetName}/startMigrationToVirtualMachineScaleSet").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{availabilitySetName}", System.Uri.EscapeDataString(availabilitySetName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1599,14 +1682,19 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) } /// - /// Cancel the migration operation on an Availability Set. + /// Validates that the Virtual Machines in the Availability Set can be migrated + /// to the provided Virtual Machine Scale Set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// + /// + /// Specifies information about the Virtual Machine Scale Set that the + /// Availability Set should be migrated to. Minimum api‐version: 2024‐11‐01. + /// /// /// Headers that will be added to request. /// @@ -1625,21 +1713,41 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task CancelMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task ValidateMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, SubResource virtualMachineScaleSetFlexible, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (availabilitySetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); } - if (Client.SubscriptionId == null) + if (virtualMachineScaleSetFlexible == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "virtualMachineScaleSetFlexible"); } string apiVersion = "2024-11-01"; + MigrateToVirtualMachineScaleSetInput parameters = new MigrateToVirtualMachineScaleSetInput(); + if (virtualMachineScaleSetFlexible != null) + { + parameters.VirtualMachineScaleSetFlexible = virtualMachineScaleSetFlexible; + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1647,18 +1755,19 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("availabilitySetName", availabilitySetName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CancelMigrationToVirtualMachineScaleSet", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ValidateMigrationToVirtualMachineScaleSet", 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/availabilitySets/{availabilitySetName}/cancelMigrationToVirtualMachineScaleSet").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}/validateMigrationToVirtualMachineScaleSet").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{availabilitySetName}", System.Uri.EscapeDataString(availabilitySetName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1702,6 +1811,12 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -1772,19 +1887,15 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) } /// - /// Validates that the Virtual Machines in the Availability Set can be migrated - /// to the provided Virtual Machine Scale Set. + /// Lists all available virtual machine sizes that can be used to create a new + /// virtual machine in an existing availability set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// - /// - /// Specifies information about the Virtual Machine Scale Set that the - /// Availability Set should be migrated to. Minimum api‐version: 2024‐11‐01. - /// /// /// Headers that will be added to request. /// @@ -1794,6 +1905,9 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -1803,30 +1917,32 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task ValidateMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, SubResource virtualMachineScaleSetFlexible, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAvailableSizesWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (availabilitySetName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (virtualMachineScaleSetFlexible == null) + if (availabilitySetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "virtualMachineScaleSetFlexible"); + throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); } string apiVersion = "2024-11-01"; - MigrateToVirtualMachineScaleSetInput parameters = new MigrateToVirtualMachineScaleSetInput(); - if (virtualMachineScaleSetFlexible != null) - { - parameters.VirtualMachineScaleSetFlexible = virtualMachineScaleSetFlexible; - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1834,19 +1950,18 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("availabilitySetName", availabilitySetName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ValidateMigrationToVirtualMachineScaleSet", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAvailableSizes", 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/availabilitySets/{availabilitySetName}/validateMigrationToVirtualMachineScaleSet").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}/vmSizes").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{availabilitySetName}", System.Uri.EscapeDataString(availabilitySetName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1859,7 +1974,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1890,12 +2005,6 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -1916,7 +2025,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1951,13 +2060,31 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1971,35 +2098,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// Virtual Machines. /// /// - /// The name of the resource group. - /// - /// - /// The name of the availability set. - /// - /// - /// Specifies information about the Virtual Machine Scale Set that the - /// Availability Set should be converted to. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task ConvertToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, string virtualMachineScaleSetName = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginConvertToVirtualMachineScaleSetWithHttpMessagesAsync(resourceGroupName, availabilitySetName, virtualMachineScaleSetName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Create a new Flexible Virtual Machine Scale Set and migrate all the Virtual - /// Machines in the Availability Set. This does not trigger a downtime on the - /// Virtual Machines. - /// - /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. @@ -2028,17 +2127,28 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) /// public async Task BeginConvertToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, string virtualMachineScaleSetName = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (availabilitySetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (availabilitySetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "availabilitySetName"); } string apiVersion = "2024-11-01"; ConvertToVirtualMachineScaleSetInput parameters = default(ConvertToVirtualMachineScaleSetInput); @@ -2054,9 +2164,9 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("availabilitySetName", availabilitySetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginConvertToVirtualMachineScaleSet", tracingParameters); @@ -2064,9 +2174,9 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) // 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/availabilitySets/{availabilitySetName}/convertToVirtualMachineScaleSet").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{availabilitySetName}", System.Uri.EscapeDataString(availabilitySetName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/AvailabilitySetsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/AvailabilitySetsOperationsExtensions.cs index ff55b2b6f190..48c34b17d9a4 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/AvailabilitySetsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/AvailabilitySetsOperationsExtensions.cs @@ -24,122 +24,100 @@ namespace Microsoft.Azure.Management.Compute public static partial class AvailabilitySetsOperationsExtensions { /// - /// Create or update an availability set. + /// Lists all availability sets in a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the availability set. - /// - /// - /// Parameters supplied to the Create Availability Set operation. + /// + /// The expand expression to apply to the operation. Allowed values are + /// 'instanceView'. /// - public static AvailabilitySet CreateOrUpdate(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, AvailabilitySet parameters) + public static IPage ListBySubscription(this IAvailabilitySetsOperations operations, string expand = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, availabilitySetName, parameters).GetAwaiter().GetResult(); + return operations.ListBySubscriptionAsync(expand).GetAwaiter().GetResult(); } /// - /// Create or update an availability set. + /// Lists all availability sets in a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the availability set. - /// - /// - /// Parameters supplied to the Create Availability Set operation. + /// + /// The expand expression to apply to the operation. Allowed values are + /// 'instanceView'. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, AvailabilitySet parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListBySubscriptionAsync(this IAvailabilitySetsOperations operations, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, availabilitySetName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Update an availability set. + /// Lists all availability sets in a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the availability set. - /// - /// - /// Parameters supplied to the Update Availability Set operation. + /// The name of the resource group. The name is case insensitive. /// - public static AvailabilitySet Update(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, AvailabilitySetUpdate parameters) + public static IPage List(this IAvailabilitySetsOperations operations, string resourceGroupName) { - return operations.UpdateAsync(resourceGroupName, availabilitySetName, parameters).GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName).GetAwaiter().GetResult(); } /// - /// Update an availability set. + /// Lists all availability sets in a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the availability set. - /// - /// - /// Parameters supplied to the Update Availability Set operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, AvailabilitySetUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, availabilitySetName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Delete an availability set. + /// Retrieves information about an availability set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// - public static void Delete(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName) + public static AvailabilitySet Get(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName) { - operations.DeleteAsync(resourceGroupName, availabilitySetName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, availabilitySetName).GetAwaiter().GetResult(); } /// - /// Delete an availability set. + /// Retrieves information about an availability set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. @@ -147,148 +125,168 @@ public static void Delete(this IAvailabilitySetsOperations operations, string re /// /// The cancellation token. /// - public static async Task DeleteAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, availabilitySetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, availabilitySetName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Retrieves information about an availability set. + /// Create or update an availability set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// - public static AvailabilitySet Get(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName) + /// + /// Parameters supplied to the Create Availability Set operation. + /// + public static AvailabilitySet CreateOrUpdate(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, AvailabilitySet parameters) { - return operations.GetAsync(resourceGroupName, availabilitySetName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, availabilitySetName, parameters).GetAwaiter().GetResult(); } /// - /// Retrieves information about an availability set. + /// Create or update an availability set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// + /// + /// Parameters supplied to the Create Availability Set operation. + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, AvailabilitySet parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, availabilitySetName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, availabilitySetName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all availability sets in a subscription. + /// Update an availability set. /// /// /// The operations group for this extension method. /// - /// - /// The expand expression to apply to the operation. Allowed values are - /// 'virtualMachines/$ref'. + /// + /// The name of the resource group. The name is case insensitive. /// - public static IPage ListBySubscription(this IAvailabilitySetsOperations operations, string expand = default(string)) + /// + /// The name of the availability set. + /// + /// + /// Parameters supplied to the Update Availability Set operation. + /// + public static AvailabilitySet Update(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, AvailabilitySetUpdate parameters) { - return operations.ListBySubscriptionAsync(expand).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, availabilitySetName, parameters).GetAwaiter().GetResult(); } /// - /// Lists all availability sets in a subscription. + /// Update an availability set. /// /// /// The operations group for this extension method. /// - /// - /// The expand expression to apply to the operation. Allowed values are - /// 'virtualMachines/$ref'. + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the availability set. + /// + /// + /// Parameters supplied to the Update Availability Set operation. /// /// /// The cancellation token. /// - public static async Task> ListBySubscriptionAsync(this IAvailabilitySetsOperations operations, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, AvailabilitySetUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, availabilitySetName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all availability sets in a resource group. + /// Delete an availability set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - public static IPage List(this IAvailabilitySetsOperations operations, string resourceGroupName) + /// + /// The name of the availability set. + /// + public static void Delete(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName) { - return operations.ListAsync(resourceGroupName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, availabilitySetName).GetAwaiter().GetResult(); } /// - /// Lists all availability sets in a resource group. + /// Delete an availability set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the availability set. /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, availabilitySetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Lists all available virtual machine sizes that can be used to create a new - /// virtual machine in an existing availability set. + /// Cancel the migration operation on an Availability Set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// - public static IEnumerable ListAvailableSizes(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName) + public static void CancelMigrationToVirtualMachineScaleSet(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName) { - return operations.ListAvailableSizesAsync(resourceGroupName, availabilitySetName).GetAwaiter().GetResult(); + operations.CancelMigrationToVirtualMachineScaleSetAsync(resourceGroupName, availabilitySetName).GetAwaiter().GetResult(); } /// - /// Lists all available virtual machine sizes that can be used to create a new - /// virtual machine in an existing availability set. + /// Cancel the migration operation on an Availability Set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. @@ -296,100 +294,109 @@ public static IEnumerable ListAvailableSizes(this IAvailabil /// /// The cancellation token. /// - public static async Task> ListAvailableSizesAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CancelMigrationToVirtualMachineScaleSetAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListAvailableSizesWithHttpMessagesAsync(resourceGroupName, availabilitySetName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.CancelMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(resourceGroupName, availabilitySetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Start migration operation on an Availability Set to move its Virtual - /// Machines to a Virtual Machine Scale Set. This should be followed by a - /// migrate operation on each Virtual Machine that triggers a downtime on the - /// Virtual Machine. + /// Create a new Flexible Virtual Machine Scale Set and migrate all the Virtual + /// Machines in the Availability Set. This does not trigger a downtime on the + /// Virtual Machines. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// - /// + /// /// Specifies information about the Virtual Machine Scale Set that the - /// Availability Set should be migrated to. Minimum api‐version: 2024‐11‐01. + /// Availability Set should be converted to. /// - public static void StartMigrationToVirtualMachineScaleSet(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, SubResource virtualMachineScaleSetFlexible) + public static void ConvertToVirtualMachineScaleSet(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, string virtualMachineScaleSetName = default(string)) { - operations.StartMigrationToVirtualMachineScaleSetAsync(resourceGroupName, availabilitySetName, virtualMachineScaleSetFlexible).GetAwaiter().GetResult(); + operations.ConvertToVirtualMachineScaleSetAsync(resourceGroupName, availabilitySetName, virtualMachineScaleSetName).GetAwaiter().GetResult(); } /// - /// Start migration operation on an Availability Set to move its Virtual - /// Machines to a Virtual Machine Scale Set. This should be followed by a - /// migrate operation on each Virtual Machine that triggers a downtime on the - /// Virtual Machine. + /// Create a new Flexible Virtual Machine Scale Set and migrate all the Virtual + /// Machines in the Availability Set. This does not trigger a downtime on the + /// Virtual Machines. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// - /// + /// /// Specifies information about the Virtual Machine Scale Set that the - /// Availability Set should be migrated to. Minimum api‐version: 2024‐11‐01. + /// Availability Set should be converted to. /// /// /// The cancellation token. /// - public static async Task StartMigrationToVirtualMachineScaleSetAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, SubResource virtualMachineScaleSetFlexible, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ConvertToVirtualMachineScaleSetAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, string virtualMachineScaleSetName = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.StartMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(resourceGroupName, availabilitySetName, virtualMachineScaleSetFlexible, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.ConvertToVirtualMachineScaleSetWithHttpMessagesAsync(resourceGroupName, availabilitySetName, virtualMachineScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Cancel the migration operation on an Availability Set. + /// Start migration operation on an Availability Set to move its Virtual + /// Machines to a Virtual Machine Scale Set. This should be followed by a + /// migrate operation on each Virtual Machine that triggers a downtime on the + /// Virtual Machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// - public static void CancelMigrationToVirtualMachineScaleSet(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName) + /// + /// Specifies information about the Virtual Machine Scale Set that the + /// Availability Set should be migrated to. Minimum api‐version: 2024‐11‐01. + /// + public static void StartMigrationToVirtualMachineScaleSet(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, SubResource virtualMachineScaleSetFlexible) { - operations.CancelMigrationToVirtualMachineScaleSetAsync(resourceGroupName, availabilitySetName).GetAwaiter().GetResult(); + operations.StartMigrationToVirtualMachineScaleSetAsync(resourceGroupName, availabilitySetName, virtualMachineScaleSetFlexible).GetAwaiter().GetResult(); } /// - /// Cancel the migration operation on an Availability Set. + /// Start migration operation on an Availability Set to move its Virtual + /// Machines to a Virtual Machine Scale Set. This should be followed by a + /// migrate operation on each Virtual Machine that triggers a downtime on the + /// Virtual Machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// + /// + /// Specifies information about the Virtual Machine Scale Set that the + /// Availability Set should be migrated to. Minimum api‐version: 2024‐11‐01. + /// /// /// The cancellation token. /// - public static async Task CancelMigrationToVirtualMachineScaleSetAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task StartMigrationToVirtualMachineScaleSetAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, SubResource virtualMachineScaleSetFlexible, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.CancelMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(resourceGroupName, availabilitySetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.StartMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(resourceGroupName, availabilitySetName, virtualMachineScaleSetFlexible, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -400,7 +407,7 @@ public static void CancelMigrationToVirtualMachineScaleSet(this IAvailabilitySet /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. @@ -422,7 +429,7 @@ public static void ValidateMigrationToVirtualMachineScaleSet(this IAvailabilityS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. @@ -440,52 +447,45 @@ public static void ValidateMigrationToVirtualMachineScaleSet(this IAvailabilityS } /// - /// Create a new Flexible Virtual Machine Scale Set and migrate all the Virtual - /// Machines in the Availability Set. This does not trigger a downtime on the - /// Virtual Machines. + /// Lists all available virtual machine sizes that can be used to create a new + /// virtual machine in an existing availability set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// - /// - /// Specifies information about the Virtual Machine Scale Set that the - /// Availability Set should be converted to. - /// - public static void ConvertToVirtualMachineScaleSet(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, string virtualMachineScaleSetName = default(string)) + public static IEnumerable ListAvailableSizes(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName) { - operations.ConvertToVirtualMachineScaleSetAsync(resourceGroupName, availabilitySetName, virtualMachineScaleSetName).GetAwaiter().GetResult(); + return operations.ListAvailableSizesAsync(resourceGroupName, availabilitySetName).GetAwaiter().GetResult(); } /// - /// Create a new Flexible Virtual Machine Scale Set and migrate all the Virtual - /// Machines in the Availability Set. This does not trigger a downtime on the - /// Virtual Machines. + /// Lists all available virtual machine sizes that can be used to create a new + /// virtual machine in an existing availability set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// - /// - /// Specifies information about the Virtual Machine Scale Set that the - /// Availability Set should be converted to. - /// /// /// The cancellation token. /// - public static async Task ConvertToVirtualMachineScaleSetAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, string virtualMachineScaleSetName = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAvailableSizesAsync(this IAvailabilitySetsOperations operations, string resourceGroupName, string availabilitySetName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.ConvertToVirtualMachineScaleSetWithHttpMessagesAsync(resourceGroupName, availabilitySetName, virtualMachineScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.ListAvailableSizesWithHttpMessagesAsync(resourceGroupName, availabilitySetName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// @@ -497,7 +497,7 @@ public static void ValidateMigrationToVirtualMachineScaleSet(this IAvailabilityS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. @@ -520,7 +520,7 @@ public static void ValidateMigrationToVirtualMachineScaleSet(this IAvailabilityS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. diff --git a/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationGroupsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationGroupsOperations.cs index 8a685d402f53..5dcc94b3faca 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationGroupsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationGroupsOperations.cs @@ -51,19 +51,27 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// The operation to create or update a capacity reservation group. When - /// updating a capacity reservation group, only tags and sharing profile may be - /// modified. Please refer to https://aka.ms/CapacityReservation for more - /// details. + /// Lists all of the capacity reservation groups in the subscription. Use the + /// nextLink property in the response to get the next page of capacity + /// reservation groups. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the capacity reservation group. + /// + /// The expand expression to apply on the operation. Based on the expand + /// param(s) specified we return Virtual Machine or ScaleSet VM Instance or + /// both resource Ids which are associated to capacity reservation group in the + /// response. Possible values include: 'virtualMachineScaleSetVMs/$ref', + /// 'virtualMachines/$ref' /// - /// - /// Parameters supplied to the Create capacity reservation Group. + /// + /// The query option to fetch Capacity Reservation Group Resource Ids. + /// <br> 'CreatedInSubscription' enables fetching Resource Ids for all + /// capacity reservation group resources created in the subscription. + /// <br> 'SharedWithSubscription' enables fetching Resource Ids for all + /// capacity reservation group resources shared with the subscription. + /// <br> 'All' enables fetching Resource Ids for all capacity reservation + /// group resources shared with the subscription and created in the + /// subscription. Possible values include: 'CreatedInSubscription', + /// 'SharedWithSubscription', 'All' /// /// /// Headers that will be added to request. @@ -86,24 +94,8 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListBySubscriptionWithHttpMessagesAsync(string expand = default(string), string resourceIdsOnly = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (capacityReservationGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationGroupName"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -116,24 +108,29 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("capacityReservationGroupName", capacityReservationGroupName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("expand", expand); + tracingParameters.Add("resourceIdsOnly", resourceIdsOnly); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", 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/capacityReservationGroups/{capacityReservationGroupName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{capacityReservationGroupName}", System.Uri.EscapeDataString(capacityReservationGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/capacityReservationGroups").ToString(); _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 (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } + if (resourceIdsOnly != null) + { + _queryParameters.Add(string.Format("resourceIdsOnly={0}", System.Uri.EscapeDataString(resourceIdsOnly))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -141,7 +138,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -172,12 +169,6 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -198,7 +189,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -233,7 +224,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -246,25 +237,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -284,17 +257,19 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) } /// - /// The operation to update a capacity reservation group. When updating a - /// capacity reservation group, only tags and sharing profile may be modified. + /// Lists all of the capacity reservation groups in the specified resource + /// group. Use the nextLink property in the response to get the next page of + /// capacity reservation groups. /// /// - /// The name of the resource group. - /// - /// - /// The name of the capacity reservation group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// Parameters supplied to the Update capacity reservation Group operation. + /// + /// The expand expression to apply on the operation. Based on the expand + /// param(s) specified we return Virtual Machine or ScaleSet VM Instance or + /// both resource Ids which are associated to capacity reservation group in the + /// response. Possible values include: 'virtualMachineScaleSetVMs/$ref', + /// 'virtualMachines/$ref' /// /// /// Headers that will be added to request. @@ -317,23 +292,26 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroupUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (capacityReservationGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (parameters == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } string apiVersion = "2024-11-01"; // Tracing @@ -343,24 +321,26 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("capacityReservationGroupName", capacityReservationGroupName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", 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/capacityReservationGroups/{capacityReservationGroupName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{capacityReservationGroupName}", System.Uri.EscapeDataString(capacityReservationGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -368,7 +348,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -399,12 +379,6 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -460,7 +434,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -473,7 +447,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -493,18 +467,23 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) } /// - /// The operation to delete a capacity reservation group. This operation is - /// allowed only if all the associated resources are disassociated from the - /// reservation group and all capacity reservations under the reservation group - /// have also been deleted. Please refer to https://aka.ms/CapacityReservation - /// for more details. + /// The operation that retrieves information about a capacity reservation + /// group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// + /// + /// The expand expression to apply on the operation. 'InstanceView' will + /// retrieve the list of instance views of the capacity reservations under the + /// capacity reservation group which is a snapshot of the runtime properties of + /// a capacity reservation that is managed by the platform and can change + /// outside of control plane operations. Possible values include: + /// 'instanceView' + /// /// /// Headers that will be added to request. /// @@ -514,6 +493,9 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -523,19 +505,30 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (capacityReservationGroupName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationGroupName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (capacityReservationGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationGroupName"); } string apiVersion = "2024-11-01"; // Tracing @@ -545,23 +538,28 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("capacityReservationGroupName", capacityReservationGroupName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/capacityReservationGroups/{capacityReservationGroupName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{capacityReservationGroupName}", System.Uri.EscapeDataString(capacityReservationGroupName)); - _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 (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -569,7 +567,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -620,7 +618,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -655,13 +653,31 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -670,22 +686,19 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) } /// - /// The operation that retrieves information about a capacity reservation - /// group. + /// The operation to create or update a capacity reservation group. When + /// updating a capacity reservation group, only tags and sharing profile may be + /// modified. Please refer to https://aka.ms/CapacityReservation for more + /// details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' will - /// retrieve the list of instance views of the capacity reservations under the - /// capacity reservation group which is a snapshot of the runtime properties of - /// a capacity reservation that is managed by the platform and can change - /// outside of control plane operations. Possible values include: - /// 'instanceView' + /// + /// Parameters supplied to the Create capacity reservation Group. /// /// /// Headers that will be added to request. @@ -708,19 +721,38 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (capacityReservationGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationGroupName"); } - if (Client.SubscriptionId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2024-11-01"; // Tracing @@ -730,24 +762,20 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("capacityReservationGroupName", capacityReservationGroupName); - tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", 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/capacityReservationGroups/{capacityReservationGroupName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{capacityReservationGroupName}", System.Uri.EscapeDataString(capacityReservationGroupName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -759,7 +787,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -790,6 +818,12 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -810,7 +844,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -870,6 +904,24 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -878,19 +930,17 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) } /// - /// Lists all of the capacity reservation groups in the specified resource - /// group. Use the nextLink property in the response to get the next page of - /// capacity reservation groups. + /// The operation to update a capacity reservation group. When updating a + /// capacity reservation group, only tags and sharing profile may be modified. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The expand expression to apply on the operation. Based on the expand - /// param(s) specified we return Virtual Machine or ScaleSet VM Instance or - /// both resource Ids which are associated to capacity reservation group in the - /// response. Possible values include: 'virtualMachineScaleSetVMs/$ref', - /// 'virtualMachines/$ref' + /// + /// The name of the capacity reservation group. + /// + /// + /// Parameters supplied to the Update capacity reservation Group operation. /// /// /// Headers that will be added to request. @@ -913,15 +963,34 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroupUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (capacityReservationGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationGroupName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } string apiVersion = "2024-11-01"; // Tracing @@ -931,26 +1000,24 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("expand", expand); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("capacityReservationGroupName", capacityReservationGroupName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Update", 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/capacityReservationGroups").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups/{capacityReservationGroupName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{capacityReservationGroupName}", System.Uri.EscapeDataString(capacityReservationGroupName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -958,7 +1025,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -989,6 +1056,12 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -1044,7 +1117,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1057,7 +1130,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1077,27 +1150,17 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) } /// - /// Lists all of the capacity reservation groups in the subscription. Use the - /// nextLink property in the response to get the next page of capacity - /// reservation groups. + /// The operation to delete a capacity reservation group. This operation is + /// allowed only if all the associated resources are disassociated from the + /// reservation group and all capacity reservations under the reservation group + /// have also been deleted. Please refer to https://aka.ms/CapacityReservation + /// for more details. /// - /// - /// The expand expression to apply on the operation. Based on the expand - /// param(s) specified we return Virtual Machine or ScaleSet VM Instance or - /// both resource Ids which are associated to capacity reservation group in the - /// response. Possible values include: 'virtualMachineScaleSetVMs/$ref', - /// 'virtualMachines/$ref' + /// + /// The name of the resource group. The name is case insensitive. /// - /// - /// The query option to fetch Capacity Reservation Group Resource Ids. - /// <br> 'CreatedInSubscription' enables fetching Resource Ids for all - /// capacity reservation group resources created in the subscription. - /// <br> 'SharedWithSubscription' enables fetching Resource Ids for all - /// capacity reservation group resources shared with the subscription. - /// <br> 'All' enables fetching Resource Ids for all capacity reservation - /// group resources shared with the subscription and created in the - /// subscription. Possible values include: 'CreatedInSubscription', - /// 'SharedWithSubscription', 'All' + /// + /// The name of the capacity reservation group. /// /// /// Headers that will be added to request. @@ -1108,9 +1171,6 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1120,12 +1180,31 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListBySubscriptionWithHttpMessagesAsync(string expand = default(string), string resourceIdsOnly = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (capacityReservationGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationGroupName"); + } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1135,28 +1214,22 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("expand", expand); - tracingParameters.Add("resourceIdsOnly", resourceIdsOnly); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("capacityReservationGroupName", capacityReservationGroupName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/capacityReservationGroups").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups/{capacityReservationGroupName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{capacityReservationGroupName}", System.Uri.EscapeDataString(capacityReservationGroupName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } - if (resourceIdsOnly != null) - { - _queryParameters.Add(string.Format("resourceIdsOnly={0}", System.Uri.EscapeDataString(resourceIdsOnly))); - } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -1164,7 +1237,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1215,7 +1288,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1250,31 +1323,13 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1283,9 +1338,9 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) } /// - /// Lists all of the capacity reservation groups in the specified resource - /// group. Use the nextLink property in the response to get the next page of - /// capacity reservation groups. + /// Lists all of the capacity reservation groups in the subscription. Use the + /// nextLink property in the response to get the next page of capacity + /// reservation groups. /// /// /// The NextLink from the previous successful call to List operation. @@ -1311,7 +1366,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1326,7 +1381,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -1458,9 +1513,9 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) } /// - /// Lists all of the capacity reservation groups in the subscription. Use the - /// nextLink property in the response to get the next page of capacity - /// reservation groups. + /// Lists all of the capacity reservation groups in the specified resource + /// group. Use the nextLink property in the response to get the next page of + /// capacity reservation groups. /// /// /// The NextLink from the previous successful call to List operation. @@ -1486,7 +1541,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1501,7 +1556,7 @@ internal CapacityReservationGroupsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationGroupsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationGroupsOperationsExtensions.cs index c5456ea598d1..080f2203ff6f 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationGroupsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationGroupsOperationsExtensions.cs @@ -22,332 +22,332 @@ namespace Microsoft.Azure.Management.Compute public static partial class CapacityReservationGroupsOperationsExtensions { /// - /// The operation to create or update a capacity reservation group. When - /// updating a capacity reservation group, only tags and sharing profile may be - /// modified. Please refer to https://aka.ms/CapacityReservation for more - /// details. + /// Lists all of the capacity reservation groups in the subscription. Use the + /// nextLink property in the response to get the next page of capacity + /// reservation groups. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the capacity reservation group. + /// + /// The expand expression to apply on the operation. Based on the expand + /// param(s) specified we return Virtual Machine or ScaleSet VM Instance or + /// both resource Ids which are associated to capacity reservation group in the + /// response. Possible values include: 'virtualMachineScaleSetVMs/$ref', + /// 'virtualMachines/$ref' /// - /// - /// Parameters supplied to the Create capacity reservation Group. + /// + /// The query option to fetch Capacity Reservation Group Resource Ids. + /// <br> 'CreatedInSubscription' enables fetching Resource Ids for all + /// capacity reservation group resources created in the subscription. + /// <br> 'SharedWithSubscription' enables fetching Resource Ids for all + /// capacity reservation group resources shared with the subscription. + /// <br> 'All' enables fetching Resource Ids for all capacity reservation + /// group resources shared with the subscription and created in the + /// subscription. Possible values include: 'CreatedInSubscription', + /// 'SharedWithSubscription', 'All' /// - public static CapacityReservationGroup CreateOrUpdate(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroup parameters) + public static IPage ListBySubscription(this ICapacityReservationGroupsOperations operations, string expand = default(string), string resourceIdsOnly = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, capacityReservationGroupName, parameters).GetAwaiter().GetResult(); + return operations.ListBySubscriptionAsync(expand, resourceIdsOnly).GetAwaiter().GetResult(); } /// - /// The operation to create or update a capacity reservation group. When - /// updating a capacity reservation group, only tags and sharing profile may be - /// modified. Please refer to https://aka.ms/CapacityReservation for more - /// details. + /// Lists all of the capacity reservation groups in the subscription. Use the + /// nextLink property in the response to get the next page of capacity + /// reservation groups. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the capacity reservation group. + /// + /// The expand expression to apply on the operation. Based on the expand + /// param(s) specified we return Virtual Machine or ScaleSet VM Instance or + /// both resource Ids which are associated to capacity reservation group in the + /// response. Possible values include: 'virtualMachineScaleSetVMs/$ref', + /// 'virtualMachines/$ref' /// - /// - /// Parameters supplied to the Create capacity reservation Group. + /// + /// The query option to fetch Capacity Reservation Group Resource Ids. + /// <br> 'CreatedInSubscription' enables fetching Resource Ids for all + /// capacity reservation group resources created in the subscription. + /// <br> 'SharedWithSubscription' enables fetching Resource Ids for all + /// capacity reservation group resources shared with the subscription. + /// <br> 'All' enables fetching Resource Ids for all capacity reservation + /// group resources shared with the subscription and created in the + /// subscription. Possible values include: 'CreatedInSubscription', + /// 'SharedWithSubscription', 'All' /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroup parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListBySubscriptionAsync(this ICapacityReservationGroupsOperations operations, string expand = default(string), string resourceIdsOnly = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(expand, resourceIdsOnly, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to update a capacity reservation group. When updating a - /// capacity reservation group, only tags and sharing profile may be modified. + /// Lists all of the capacity reservation groups in the specified resource + /// group. Use the nextLink property in the response to get the next page of + /// capacity reservation groups. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the capacity reservation group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// Parameters supplied to the Update capacity reservation Group operation. + /// + /// The expand expression to apply on the operation. Based on the expand + /// param(s) specified we return Virtual Machine or ScaleSet VM Instance or + /// both resource Ids which are associated to capacity reservation group in the + /// response. Possible values include: 'virtualMachineScaleSetVMs/$ref', + /// 'virtualMachines/$ref' /// - public static CapacityReservationGroup Update(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroupUpdate parameters) + public static IPage ListByResourceGroup(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string expand = default(string)) { - return operations.UpdateAsync(resourceGroupName, capacityReservationGroupName, parameters).GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName, expand).GetAwaiter().GetResult(); } /// - /// The operation to update a capacity reservation group. When updating a - /// capacity reservation group, only tags and sharing profile may be modified. + /// Lists all of the capacity reservation groups in the specified resource + /// group. Use the nextLink property in the response to get the next page of + /// capacity reservation groups. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the capacity reservation group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// Parameters supplied to the Update capacity reservation Group operation. + /// + /// The expand expression to apply on the operation. Based on the expand + /// param(s) specified we return Virtual Machine or ScaleSet VM Instance or + /// both resource Ids which are associated to capacity reservation group in the + /// response. Possible values include: 'virtualMachineScaleSetVMs/$ref', + /// 'virtualMachines/$ref' /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroupUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupAsync(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to delete a capacity reservation group. This operation is - /// allowed only if all the associated resources are disassociated from the - /// reservation group and all capacity reservations under the reservation group - /// have also been deleted. Please refer to https://aka.ms/CapacityReservation - /// for more details. + /// The operation that retrieves information about a capacity reservation + /// group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// - public static void Delete(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName) + /// + /// The expand expression to apply on the operation. 'InstanceView' will + /// retrieve the list of instance views of the capacity reservations under the + /// capacity reservation group which is a snapshot of the runtime properties of + /// a capacity reservation that is managed by the platform and can change + /// outside of control plane operations. Possible values include: + /// 'instanceView' + /// + public static CapacityReservationGroup Get(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, string expand = default(string)) { - operations.DeleteAsync(resourceGroupName, capacityReservationGroupName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, capacityReservationGroupName, expand).GetAwaiter().GetResult(); } /// - /// The operation to delete a capacity reservation group. This operation is - /// allowed only if all the associated resources are disassociated from the - /// reservation group and all capacity reservations under the reservation group - /// have also been deleted. Please refer to https://aka.ms/CapacityReservation - /// for more details. + /// The operation that retrieves information about a capacity reservation + /// group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// + /// + /// The expand expression to apply on the operation. 'InstanceView' will + /// retrieve the list of instance views of the capacity reservations under the + /// capacity reservation group which is a snapshot of the runtime properties of + /// a capacity reservation that is managed by the platform and can change + /// outside of control plane operations. Possible values include: + /// 'instanceView' + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// The operation that retrieves information about a capacity reservation - /// group. + /// The operation to create or update a capacity reservation group. When + /// updating a capacity reservation group, only tags and sharing profile may be + /// modified. Please refer to https://aka.ms/CapacityReservation for more + /// details. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' will - /// retrieve the list of instance views of the capacity reservations under the - /// capacity reservation group which is a snapshot of the runtime properties of - /// a capacity reservation that is managed by the platform and can change - /// outside of control plane operations. Possible values include: - /// 'instanceView' + /// + /// Parameters supplied to the Create capacity reservation Group. /// - public static CapacityReservationGroup Get(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, string expand = default(string)) + public static CapacityReservationGroup CreateOrUpdate(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroup parameters) { - return operations.GetAsync(resourceGroupName, capacityReservationGroupName, expand).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, capacityReservationGroupName, parameters).GetAwaiter().GetResult(); } /// - /// The operation that retrieves information about a capacity reservation - /// group. + /// The operation to create or update a capacity reservation group. When + /// updating a capacity reservation group, only tags and sharing profile may be + /// modified. Please refer to https://aka.ms/CapacityReservation for more + /// details. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' will - /// retrieve the list of instance views of the capacity reservations under the - /// capacity reservation group which is a snapshot of the runtime properties of - /// a capacity reservation that is managed by the platform and can change - /// outside of control plane operations. Possible values include: - /// 'instanceView' + /// + /// Parameters supplied to the Create capacity reservation Group. /// /// /// The cancellation token. /// - public static async Task GetAsync(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroup parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all of the capacity reservation groups in the specified resource - /// group. Use the nextLink property in the response to get the next page of - /// capacity reservation groups. + /// The operation to update a capacity reservation group. When updating a + /// capacity reservation group, only tags and sharing profile may be modified. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The expand expression to apply on the operation. Based on the expand - /// param(s) specified we return Virtual Machine or ScaleSet VM Instance or - /// both resource Ids which are associated to capacity reservation group in the - /// response. Possible values include: 'virtualMachineScaleSetVMs/$ref', - /// 'virtualMachines/$ref' + /// + /// The name of the capacity reservation group. /// - public static IPage ListByResourceGroup(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string expand = default(string)) + /// + /// Parameters supplied to the Update capacity reservation Group operation. + /// + public static CapacityReservationGroup Update(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroupUpdate parameters) { - return operations.ListByResourceGroupAsync(resourceGroupName, expand).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, capacityReservationGroupName, parameters).GetAwaiter().GetResult(); } /// - /// Lists all of the capacity reservation groups in the specified resource - /// group. Use the nextLink property in the response to get the next page of - /// capacity reservation groups. + /// The operation to update a capacity reservation group. When updating a + /// capacity reservation group, only tags and sharing profile may be modified. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The expand expression to apply on the operation. Based on the expand - /// param(s) specified we return Virtual Machine or ScaleSet VM Instance or - /// both resource Ids which are associated to capacity reservation group in the - /// response. Possible values include: 'virtualMachineScaleSetVMs/$ref', - /// 'virtualMachines/$ref' + /// + /// The name of the capacity reservation group. + /// + /// + /// Parameters supplied to the Update capacity reservation Group operation. /// /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroupUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all of the capacity reservation groups in the subscription. Use the - /// nextLink property in the response to get the next page of capacity - /// reservation groups. + /// The operation to delete a capacity reservation group. This operation is + /// allowed only if all the associated resources are disassociated from the + /// reservation group and all capacity reservations under the reservation group + /// have also been deleted. Please refer to https://aka.ms/CapacityReservation + /// for more details. /// /// /// The operations group for this extension method. /// - /// - /// The expand expression to apply on the operation. Based on the expand - /// param(s) specified we return Virtual Machine or ScaleSet VM Instance or - /// both resource Ids which are associated to capacity reservation group in the - /// response. Possible values include: 'virtualMachineScaleSetVMs/$ref', - /// 'virtualMachines/$ref' + /// + /// The name of the resource group. The name is case insensitive. /// - /// - /// The query option to fetch Capacity Reservation Group Resource Ids. - /// <br> 'CreatedInSubscription' enables fetching Resource Ids for all - /// capacity reservation group resources created in the subscription. - /// <br> 'SharedWithSubscription' enables fetching Resource Ids for all - /// capacity reservation group resources shared with the subscription. - /// <br> 'All' enables fetching Resource Ids for all capacity reservation - /// group resources shared with the subscription and created in the - /// subscription. Possible values include: 'CreatedInSubscription', - /// 'SharedWithSubscription', 'All' + /// + /// The name of the capacity reservation group. /// - public static IPage ListBySubscription(this ICapacityReservationGroupsOperations operations, string expand = default(string), string resourceIdsOnly = default(string)) + public static void Delete(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName) { - return operations.ListBySubscriptionAsync(expand, resourceIdsOnly).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, capacityReservationGroupName).GetAwaiter().GetResult(); } /// - /// Lists all of the capacity reservation groups in the subscription. Use the - /// nextLink property in the response to get the next page of capacity - /// reservation groups. + /// The operation to delete a capacity reservation group. This operation is + /// allowed only if all the associated resources are disassociated from the + /// reservation group and all capacity reservations under the reservation group + /// have also been deleted. Please refer to https://aka.ms/CapacityReservation + /// for more details. /// /// /// The operations group for this extension method. /// - /// - /// The expand expression to apply on the operation. Based on the expand - /// param(s) specified we return Virtual Machine or ScaleSet VM Instance or - /// both resource Ids which are associated to capacity reservation group in the - /// response. Possible values include: 'virtualMachineScaleSetVMs/$ref', - /// 'virtualMachines/$ref' + /// + /// The name of the resource group. The name is case insensitive. /// - /// - /// The query option to fetch Capacity Reservation Group Resource Ids. - /// <br> 'CreatedInSubscription' enables fetching Resource Ids for all - /// capacity reservation group resources created in the subscription. - /// <br> 'SharedWithSubscription' enables fetching Resource Ids for all - /// capacity reservation group resources shared with the subscription. - /// <br> 'All' enables fetching Resource Ids for all capacity reservation - /// group resources shared with the subscription and created in the - /// subscription. Possible values include: 'CreatedInSubscription', - /// 'SharedWithSubscription', 'All' + /// + /// The name of the capacity reservation group. /// /// /// The cancellation token. /// - public static async Task> ListBySubscriptionAsync(this ICapacityReservationGroupsOperations operations, string expand = default(string), string resourceIdsOnly = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this ICapacityReservationGroupsOperations operations, string resourceGroupName, string capacityReservationGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(expand, resourceIdsOnly, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Lists all of the capacity reservation groups in the specified resource - /// group. Use the nextLink property in the response to get the next page of - /// capacity reservation groups. + /// Lists all of the capacity reservation groups in the subscription. Use the + /// nextLink property in the response to get the next page of capacity + /// reservation groups. /// /// /// The operations group for this extension method. @@ -355,15 +355,15 @@ public static void Delete(this ICapacityReservationGroupsOperations operations, /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByResourceGroupNext(this ICapacityReservationGroupsOperations operations, string nextPageLink) + public static IPage ListBySubscriptionNext(this ICapacityReservationGroupsOperations operations, string nextPageLink) { - return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListBySubscriptionNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all of the capacity reservation groups in the specified resource - /// group. Use the nextLink property in the response to get the next page of - /// capacity reservation groups. + /// Lists all of the capacity reservation groups in the subscription. Use the + /// nextLink property in the response to get the next page of capacity + /// reservation groups. /// /// /// The operations group for this extension method. @@ -374,18 +374,18 @@ public static IPage ListByResourceGroupNext(this ICapa /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this ICapacityReservationGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListBySubscriptionNextAsync(this ICapacityReservationGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListBySubscriptionNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all of the capacity reservation groups in the subscription. Use the - /// nextLink property in the response to get the next page of capacity - /// reservation groups. + /// Lists all of the capacity reservation groups in the specified resource + /// group. Use the nextLink property in the response to get the next page of + /// capacity reservation groups. /// /// /// The operations group for this extension method. @@ -393,15 +393,15 @@ public static IPage ListByResourceGroupNext(this ICapa /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListBySubscriptionNext(this ICapacityReservationGroupsOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this ICapacityReservationGroupsOperations operations, string nextPageLink) { - return operations.ListBySubscriptionNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all of the capacity reservation groups in the subscription. Use the - /// nextLink property in the response to get the next page of capacity - /// reservation groups. + /// Lists all of the capacity reservation groups in the specified resource + /// group. Use the nextLink property in the response to get the next page of + /// capacity reservation groups. /// /// /// The operations group for this extension method. @@ -412,9 +412,9 @@ public static IPage ListBySubscriptionNext(this ICapac /// /// The cancellation token. /// - public static async Task> ListBySubscriptionNextAsync(this ICapacityReservationGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this ICapacityReservationGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListBySubscriptionNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationsOperations.cs index 34c4a9f241ea..0d6b5c4a69eb 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationsOperations.cs @@ -51,109 +51,16 @@ internal CapacityReservationsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// The operation to create or update a capacity reservation. Please note some - /// properties can be set only during capacity reservation creation. Please - /// refer to https://aka.ms/CapacityReservation for more details. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the capacity reservation group. - /// - /// - /// The name of the capacity reservation. - /// - /// - /// Parameters supplied to the Create capacity reservation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to update a capacity reservation. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the capacity reservation group. - /// - /// - /// The name of the capacity reservation. - /// - /// - /// Parameters supplied to the Update capacity reservation operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservationUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to delete a capacity reservation. This operation is allowed - /// only when all the associated resources are disassociated from the capacity - /// reservation. Please refer to https://aka.ms/CapacityReservation for more - /// details. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the capacity reservation group. - /// - /// - /// The name of the capacity reservation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation that retrieves information about the capacity reservation. + /// Lists all of the capacity reservations in the specified capacity + /// reservation group. Use the nextLink property in the response to get the + /// next page of capacity reservations. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// - /// - /// The name of the capacity reservation. - /// - /// - /// The expand expression to apply on the operation. 'InstanceView' retrieves a - /// snapshot of the runtime properties of the capacity reservation that is - /// managed by the platform and can change outside of control plane operations. - /// Possible values include: 'instanceView' - /// /// /// Headers that will be added to request. /// @@ -175,23 +82,30 @@ internal CapacityReservationsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByCapacityReservationGroupWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (capacityReservationGroupName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (capacityReservationName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (capacityReservationGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationGroupName"); } string apiVersion = "2024-11-01"; // Tracing @@ -201,26 +115,19 @@ internal CapacityReservationsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("capacityReservationGroupName", capacityReservationGroupName); - tracingParameters.Add("capacityReservationName", capacityReservationName); - tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByCapacityReservationGroup", 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/capacityReservationGroups/{capacityReservationGroupName}/capacityReservations/{capacityReservationName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups/{capacityReservationGroupName}/capacityReservations").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{capacityReservationGroupName}", System.Uri.EscapeDataString(capacityReservationGroupName)); - _url = _url.Replace("{capacityReservationName}", System.Uri.EscapeDataString(capacityReservationName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -318,7 +225,7 @@ internal CapacityReservationsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -331,7 +238,7 @@ internal CapacityReservationsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -351,16 +258,23 @@ internal CapacityReservationsOperations(ComputeManagementClient client) } /// - /// Lists all of the capacity reservations in the specified capacity - /// reservation group. Use the nextLink property in the response to get the - /// next page of capacity reservations. + /// The operation that retrieves information about the capacity reservation. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// + /// + /// The name of the capacity reservation. + /// + /// + /// The expand expression to apply on the operation. 'InstanceView' retrieves a + /// snapshot of the runtime properties of the capacity reservation that is + /// managed by the platform and can change outside of control plane operations. + /// Possible values include: 'instanceView' + /// /// /// Headers that will be added to request. /// @@ -382,19 +296,34 @@ internal CapacityReservationsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByCapacityReservationGroupWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (capacityReservationGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationGroupName"); } - if (Client.SubscriptionId == null) + if (capacityReservationName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationName"); } string apiVersion = "2024-11-01"; // Tracing @@ -404,23 +333,30 @@ internal CapacityReservationsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("capacityReservationGroupName", capacityReservationGroupName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("capacityReservationName", capacityReservationName); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByCapacityReservationGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/capacityReservationGroups/{capacityReservationGroupName}/capacityReservations").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups/{capacityReservationGroupName}/capacityReservations/{capacityReservationName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{capacityReservationGroupName}", System.Uri.EscapeDataString(capacityReservationGroupName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{capacityReservationName}", System.Uri.EscapeDataString(capacityReservationName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -514,7 +450,7 @@ internal CapacityReservationsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -527,7 +463,7 @@ internal CapacityReservationsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -552,7 +488,93 @@ internal CapacityReservationsOperations(ComputeManagementClient client) /// refer to https://aka.ms/CapacityReservation for more details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the capacity reservation group. + /// + /// + /// The name of the capacity reservation. + /// + /// + /// Parameters supplied to the Create capacity reservation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to update a capacity reservation. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the capacity reservation group. + /// + /// + /// The name of the capacity reservation. + /// + /// + /// Parameters supplied to the Update capacity reservation operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservationUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to delete a capacity reservation. This operation is allowed + /// only when all the associated resources are disassociated from the capacity + /// reservation. Please refer to https://aka.ms/CapacityReservation for more + /// details. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the capacity reservation group. + /// + /// + /// The name of the capacity reservation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to create or update a capacity reservation. Please note some + /// properties can be set only during capacity reservation creation. Please + /// refer to https://aka.ms/CapacityReservation for more details. + /// + /// + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -584,12 +606,27 @@ internal CapacityReservationsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (capacityReservationGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationGroupName"); @@ -606,10 +643,6 @@ internal CapacityReservationsOperations(ComputeManagementClient client) { parameters.Validate(); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -618,21 +651,21 @@ internal CapacityReservationsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("capacityReservationGroupName", capacityReservationGroupName); tracingParameters.Add("capacityReservationName", capacityReservationName); tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", 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/capacityReservationGroups/{capacityReservationGroupName}/capacityReservations/{capacityReservationName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{capacityReservationGroupName}", System.Uri.EscapeDataString(capacityReservationGroupName)); _url = _url.Replace("{capacityReservationName}", System.Uri.EscapeDataString(capacityReservationName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -737,7 +770,7 @@ internal CapacityReservationsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -780,6 +813,19 @@ internal CapacityReservationsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -791,7 +837,7 @@ internal CapacityReservationsOperations(ComputeManagementClient client) /// The operation to update a capacity reservation. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -825,10 +871,25 @@ internal CapacityReservationsOperations(ComputeManagementClient client) /// public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservationUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (capacityReservationGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationGroupName"); @@ -841,10 +902,6 @@ internal CapacityReservationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -853,21 +910,21 @@ internal CapacityReservationsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("capacityReservationGroupName", capacityReservationGroupName); tracingParameters.Add("capacityReservationName", capacityReservationName); tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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/capacityReservationGroups/{capacityReservationGroupName}/capacityReservations/{capacityReservationName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{capacityReservationGroupName}", System.Uri.EscapeDataString(capacityReservationGroupName)); _url = _url.Replace("{capacityReservationName}", System.Uri.EscapeDataString(capacityReservationName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1011,7 +1068,7 @@ internal CapacityReservationsOperations(ComputeManagementClient client) /// details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -1039,10 +1096,25 @@ internal CapacityReservationsOperations(ComputeManagementClient client) /// public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (capacityReservationGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationGroupName"); @@ -1051,10 +1123,6 @@ internal CapacityReservationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "capacityReservationName"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1063,20 +1131,20 @@ internal CapacityReservationsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("capacityReservationGroupName", capacityReservationGroupName); tracingParameters.Add("capacityReservationName", capacityReservationName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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/capacityReservationGroups/{capacityReservationGroupName}/capacityReservations/{capacityReservationName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{capacityReservationGroupName}", System.Uri.EscapeDataString(capacityReservationGroupName)); _url = _url.Replace("{capacityReservationName}", System.Uri.EscapeDataString(capacityReservationName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationsOperationsExtensions.cs index 809751692ac2..19b196c579d7 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/CapacityReservationsOperationsExtensions.cs @@ -22,69 +22,57 @@ namespace Microsoft.Azure.Management.Compute public static partial class CapacityReservationsOperationsExtensions { /// - /// The operation to create or update a capacity reservation. Please note some - /// properties can be set only during capacity reservation creation. Please - /// refer to https://aka.ms/CapacityReservation for more details. + /// Lists all of the capacity reservations in the specified capacity + /// reservation group. Use the nextLink property in the response to get the + /// next page of capacity reservations. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// - /// - /// The name of the capacity reservation. - /// - /// - /// Parameters supplied to the Create capacity reservation. - /// - public static CapacityReservation CreateOrUpdate(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservation parameters) + public static IPage ListByCapacityReservationGroup(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName) { - return operations.CreateOrUpdateAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, parameters).GetAwaiter().GetResult(); + return operations.ListByCapacityReservationGroupAsync(resourceGroupName, capacityReservationGroupName).GetAwaiter().GetResult(); } /// - /// The operation to create or update a capacity reservation. Please note some - /// properties can be set only during capacity reservation creation. Please - /// refer to https://aka.ms/CapacityReservation for more details. + /// Lists all of the capacity reservations in the specified capacity + /// reservation group. Use the nextLink property in the response to get the + /// next page of capacity reservations. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// - /// - /// The name of the capacity reservation. - /// - /// - /// Parameters supplied to the Create capacity reservation. - /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservation parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByCapacityReservationGroupAsync(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByCapacityReservationGroupWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to update a capacity reservation. + /// The operation that retrieves information about the capacity reservation. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -92,22 +80,25 @@ public static CapacityReservation CreateOrUpdate(this ICapacityReservationsOpera /// /// The name of the capacity reservation. /// - /// - /// Parameters supplied to the Update capacity reservation operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' retrieves a + /// snapshot of the runtime properties of the capacity reservation that is + /// managed by the platform and can change outside of control plane operations. + /// Possible values include: 'instanceView' /// - public static CapacityReservation Update(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservationUpdate parameters) + public static CapacityReservation Get(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, string expand = default(string)) { - return operations.UpdateAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, parameters).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, expand).GetAwaiter().GetResult(); } /// - /// The operation to update a capacity reservation. + /// The operation that retrieves information about the capacity reservation. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -115,31 +106,33 @@ public static CapacityReservation Update(this ICapacityReservationsOperations op /// /// The name of the capacity reservation. /// - /// - /// Parameters supplied to the Update capacity reservation operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' retrieves a + /// snapshot of the runtime properties of the capacity reservation that is + /// managed by the platform and can change outside of control plane operations. + /// Possible values include: 'instanceView' /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservationUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to delete a capacity reservation. This operation is allowed - /// only when all the associated resources are disassociated from the capacity - /// reservation. Please refer to https://aka.ms/CapacityReservation for more - /// details. + /// The operation to create or update a capacity reservation. Please note some + /// properties can be set only during capacity reservation creation. Please + /// refer to https://aka.ms/CapacityReservation for more details. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -147,22 +140,24 @@ public static CapacityReservation Update(this ICapacityReservationsOperations op /// /// The name of the capacity reservation. /// - public static void Delete(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName) + /// + /// Parameters supplied to the Create capacity reservation. + /// + public static CapacityReservation CreateOrUpdate(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservation parameters) { - operations.DeleteAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, parameters).GetAwaiter().GetResult(); } /// - /// The operation to delete a capacity reservation. This operation is allowed - /// only when all the associated resources are disassociated from the capacity - /// reservation. Please refer to https://aka.ms/CapacityReservation for more - /// details. + /// The operation to create or update a capacity reservation. Please note some + /// properties can be set only during capacity reservation creation. Please + /// refer to https://aka.ms/CapacityReservation for more details. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -170,22 +165,28 @@ public static void Delete(this ICapacityReservationsOperations operations, strin /// /// The name of the capacity reservation. /// + /// + /// Parameters supplied to the Create capacity reservation. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservation parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// The operation that retrieves information about the capacity reservation. + /// The operation to update a capacity reservation. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -193,25 +194,22 @@ public static void Delete(this ICapacityReservationsOperations operations, strin /// /// The name of the capacity reservation. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' retrieves a - /// snapshot of the runtime properties of the capacity reservation that is - /// managed by the platform and can change outside of control plane operations. - /// Possible values include: 'instanceView' + /// + /// Parameters supplied to the Update capacity reservation operation. /// - public static CapacityReservation Get(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, string expand = default(string)) + public static CapacityReservation Update(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservationUpdate parameters) { - return operations.GetAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, expand).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, parameters).GetAwaiter().GetResult(); } /// - /// The operation that retrieves information about the capacity reservation. + /// The operation to update a capacity reservation. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -219,65 +217,67 @@ public static void Delete(this ICapacityReservationsOperations operations, strin /// /// The name of the capacity reservation. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' retrieves a - /// snapshot of the runtime properties of the capacity reservation that is - /// managed by the platform and can change outside of control plane operations. - /// Possible values include: 'instanceView' + /// + /// Parameters supplied to the Update capacity reservation operation. /// /// /// The cancellation token. /// - public static async Task GetAsync(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservationUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all of the capacity reservations in the specified capacity - /// reservation group. Use the nextLink property in the response to get the - /// next page of capacity reservations. + /// The operation to delete a capacity reservation. This operation is allowed + /// only when all the associated resources are disassociated from the capacity + /// reservation. Please refer to https://aka.ms/CapacityReservation for more + /// details. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// - public static IPage ListByCapacityReservationGroup(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName) + /// + /// The name of the capacity reservation. + /// + public static void Delete(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName) { - return operations.ListByCapacityReservationGroupAsync(resourceGroupName, capacityReservationGroupName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName).GetAwaiter().GetResult(); } /// - /// Lists all of the capacity reservations in the specified capacity - /// reservation group. Use the nextLink property in the response to get the - /// next page of capacity reservations. + /// The operation to delete a capacity reservation. This operation is allowed + /// only when all the associated resources are disassociated from the capacity + /// reservation. Please refer to https://aka.ms/CapacityReservation for more + /// details. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// + /// + /// The name of the capacity reservation. + /// /// /// The cancellation token. /// - public static async Task> ListByCapacityReservationGroupAsync(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this ICapacityReservationsOperations operations, string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByCapacityReservationGroupWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, capacityReservationGroupName, capacityReservationName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -289,7 +289,7 @@ public static IPage ListByCapacityReservationGroup(this ICa /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -314,7 +314,7 @@ public static CapacityReservation BeginCreateOrUpdate(this ICapacityReservations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -343,7 +343,7 @@ public static CapacityReservation BeginCreateOrUpdate(this ICapacityReservations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -366,7 +366,7 @@ public static CapacityReservation BeginUpdate(this ICapacityReservationsOperatio /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -398,7 +398,7 @@ public static CapacityReservation BeginUpdate(this ICapacityReservationsOperatio /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -421,7 +421,7 @@ public static void BeginDelete(this ICapacityReservationsOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. diff --git a/src/Compute/Compute.Management.Sdk/Generated/CloudServiceOperatingSystemsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/CloudServiceOperatingSystemsOperations.cs deleted file mode 100644 index d4519a5c8c56..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/CloudServiceOperatingSystemsOperations.cs +++ /dev/null @@ -1,1172 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - using System.Net; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServiceOperatingSystemsOperations operations. - /// - internal partial class CloudServiceOperatingSystemsOperations : IServiceOperations, ICloudServiceOperatingSystemsOperations - { - /// - /// Initializes a new instance of the CloudServiceOperatingSystemsOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal CloudServiceOperatingSystemsOperations(ComputeManagementClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the ComputeManagementClient - /// - public ComputeManagementClient Client { get; private set; } - - /// - /// Gets properties of a guest operating system version that can be specified - /// in the XML service configuration (.cscfg) for a cloud service. - /// - /// - /// Name of the location that the OS version pertains to. - /// - /// - /// Name of the OS version. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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> GetOSVersionWithHttpMessagesAsync(string location, string osVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); - } - if (osVersionName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "osVersionName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); - tracingParameters.Add("osVersionName", osVersionName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetOSVersion", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/cloudServiceOsVersions/{osVersionName}").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); - _url = _url.Replace("{osVersionName}", System.Uri.EscapeDataString(osVersionName)); - _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("GET"); - _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) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all guest operating system versions available to be - /// specified in the XML service configuration (.cscfg) for a cloud service. - /// Use nextLink property in the response to get the next page of OS versions. - /// Do this till nextLink is null to fetch all the OS versions. - /// - /// - /// Name of the location that the OS versions pertain to. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListOSVersionsWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListOSVersions", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/cloudServiceOsVersions").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); - _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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets properties of a guest operating system family that can be specified in - /// the XML service configuration (.cscfg) for a cloud service. - /// - /// - /// Name of the location that the OS family pertains to. - /// - /// - /// Name of the OS family. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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> GetOSFamilyWithHttpMessagesAsync(string location, string osFamilyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); - } - if (osFamilyName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "osFamilyName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); - tracingParameters.Add("osFamilyName", osFamilyName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetOSFamily", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/cloudServiceOsFamilies/{osFamilyName}").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); - _url = _url.Replace("{osFamilyName}", System.Uri.EscapeDataString(osFamilyName)); - _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("GET"); - _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) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all guest operating system families available to be - /// specified in the XML service configuration (.cscfg) for a cloud service. - /// Use nextLink property in the response to get the next page of OS Families. - /// Do this till nextLink is null to fetch all the OS Families. - /// - /// - /// Name of the location that the OS families pertain to. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListOSFamiliesWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListOSFamilies", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/cloudServiceOsFamilies").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); - _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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all guest operating system versions available to be - /// specified in the XML service configuration (.cscfg) for a cloud service. - /// Use nextLink property in the response to get the next page of OS versions. - /// Do this till nextLink is null to fetch all the OS versions. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListOSVersionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListOSVersionsNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - 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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all guest operating system families available to be - /// specified in the XML service configuration (.cscfg) for a cloud service. - /// Use nextLink property in the response to get the next page of OS Families. - /// Do this till nextLink is null to fetch all the OS Families. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListOSFamiliesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListOSFamiliesNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - 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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/CloudServiceOperatingSystemsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/CloudServiceOperatingSystemsOperationsExtensions.cs deleted file mode 100644 index 524d3e158568..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/CloudServiceOperatingSystemsOperationsExtensions.cs +++ /dev/null @@ -1,269 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for CloudServiceOperatingSystemsOperations. - /// - public static partial class CloudServiceOperatingSystemsOperationsExtensions - { - /// - /// Gets properties of a guest operating system version that can be specified - /// in the XML service configuration (.cscfg) for a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the location that the OS version pertains to. - /// - /// - /// Name of the OS version. - /// - public static OSVersion GetOSVersion(this ICloudServiceOperatingSystemsOperations operations, string location, string osVersionName) - { - return operations.GetOSVersionAsync(location, osVersionName).GetAwaiter().GetResult(); - } - - /// - /// Gets properties of a guest operating system version that can be specified - /// in the XML service configuration (.cscfg) for a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the location that the OS version pertains to. - /// - /// - /// Name of the OS version. - /// - /// - /// The cancellation token. - /// - public static async Task GetOSVersionAsync(this ICloudServiceOperatingSystemsOperations operations, string location, string osVersionName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetOSVersionWithHttpMessagesAsync(location, osVersionName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all guest operating system versions available to be - /// specified in the XML service configuration (.cscfg) for a cloud service. - /// Use nextLink property in the response to get the next page of OS versions. - /// Do this till nextLink is null to fetch all the OS versions. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the location that the OS versions pertain to. - /// - public static IPage ListOSVersions(this ICloudServiceOperatingSystemsOperations operations, string location) - { - return operations.ListOSVersionsAsync(location).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all guest operating system versions available to be - /// specified in the XML service configuration (.cscfg) for a cloud service. - /// Use nextLink property in the response to get the next page of OS versions. - /// Do this till nextLink is null to fetch all the OS versions. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the location that the OS versions pertain to. - /// - /// - /// The cancellation token. - /// - public static async Task> ListOSVersionsAsync(this ICloudServiceOperatingSystemsOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListOSVersionsWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets properties of a guest operating system family that can be specified in - /// the XML service configuration (.cscfg) for a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the location that the OS family pertains to. - /// - /// - /// Name of the OS family. - /// - public static OSFamily GetOSFamily(this ICloudServiceOperatingSystemsOperations operations, string location, string osFamilyName) - { - return operations.GetOSFamilyAsync(location, osFamilyName).GetAwaiter().GetResult(); - } - - /// - /// Gets properties of a guest operating system family that can be specified in - /// the XML service configuration (.cscfg) for a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the location that the OS family pertains to. - /// - /// - /// Name of the OS family. - /// - /// - /// The cancellation token. - /// - public static async Task GetOSFamilyAsync(this ICloudServiceOperatingSystemsOperations operations, string location, string osFamilyName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetOSFamilyWithHttpMessagesAsync(location, osFamilyName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all guest operating system families available to be - /// specified in the XML service configuration (.cscfg) for a cloud service. - /// Use nextLink property in the response to get the next page of OS Families. - /// Do this till nextLink is null to fetch all the OS Families. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the location that the OS families pertain to. - /// - public static IPage ListOSFamilies(this ICloudServiceOperatingSystemsOperations operations, string location) - { - return operations.ListOSFamiliesAsync(location).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all guest operating system families available to be - /// specified in the XML service configuration (.cscfg) for a cloud service. - /// Use nextLink property in the response to get the next page of OS Families. - /// Do this till nextLink is null to fetch all the OS Families. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the location that the OS families pertain to. - /// - /// - /// The cancellation token. - /// - public static async Task> ListOSFamiliesAsync(this ICloudServiceOperatingSystemsOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListOSFamiliesWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all guest operating system versions available to be - /// specified in the XML service configuration (.cscfg) for a cloud service. - /// Use nextLink property in the response to get the next page of OS versions. - /// Do this till nextLink is null to fetch all the OS versions. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListOSVersionsNext(this ICloudServiceOperatingSystemsOperations operations, string nextPageLink) - { - return operations.ListOSVersionsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all guest operating system versions available to be - /// specified in the XML service configuration (.cscfg) for a cloud service. - /// Use nextLink property in the response to get the next page of OS versions. - /// Do this till nextLink is null to fetch all the OS versions. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListOSVersionsNextAsync(this ICloudServiceOperatingSystemsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListOSVersionsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all guest operating system families available to be - /// specified in the XML service configuration (.cscfg) for a cloud service. - /// Use nextLink property in the response to get the next page of OS Families. - /// Do this till nextLink is null to fetch all the OS Families. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListOSFamiliesNext(this ICloudServiceOperatingSystemsOperations operations, string nextPageLink) - { - return operations.ListOSFamiliesNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all guest operating system families available to be - /// specified in the XML service configuration (.cscfg) for a cloud service. - /// Use nextLink property in the response to get the next page of OS Families. - /// Do this till nextLink is null to fetch all the OS Families. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListOSFamiliesNextAsync(this ICloudServiceOperatingSystemsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListOSFamiliesNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/CloudServiceRoleInstancesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/CloudServiceRoleInstancesOperations.cs deleted file mode 100644 index e7d488cd6e8b..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/CloudServiceRoleInstancesOperations.cs +++ /dev/null @@ -1,1881 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.IO; - using System.Linq; - using System.Net; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServiceRoleInstancesOperations operations. - /// - internal partial class CloudServiceRoleInstancesOperations : IServiceOperations, ICloudServiceRoleInstancesOperations - { - /// - /// Initializes a new instance of the CloudServiceRoleInstancesOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal CloudServiceRoleInstancesOperations(ComputeManagementClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the ComputeManagementClient - /// - public ComputeManagementClient Client { get; private set; } - - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets a role instance from a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The expand expression to apply to the operation. 'UserData' is not - /// supported for cloud services. Possible values include: 'instanceView', - /// 'userData' - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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> GetWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("expand", expand); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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 (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); - } - 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("GET"); - _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) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Retrieves information about the run-time state of a role instance in a - /// cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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> GetInstanceViewWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetInstanceView", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/instanceView").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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("GET"); - _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) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets the list of all role instances in a cloud service. Use nextLink - /// property in the response to get the next page of role instances. Do this - /// till nextLink is null to fetch all the role instances. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The expand expression to apply to the operation. 'UserData' is not - /// supported for cloud services. Possible values include: 'instanceView', - /// 'userData' - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("expand", expand); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", 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/cloudServices/{cloudServiceName}/roleInstances").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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 (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); - } - 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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// The Reboot Role Instance asynchronous operation requests a reboot of a role - /// instance in the cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task RestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The Reimage Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task ReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginReimageWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles and initializes the - /// storage resources that are used by them. If you do not want to initialize - /// storage resources, you can use Reimage Role Instance. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task RebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRebuildWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets a remote desktop file for a role instance in a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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> GetRemoteDesktopFileWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetRemoteDesktopFile", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/remoteDesktopFile").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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("GET"); - _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, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _result.Body = await _httpResponse.Content.ReadAsStreamAsync().ConfigureAwait(false); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginDeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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("DELETE"); - _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 && (int)_statusCode != 204) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// The Reboot Role Instance asynchronous operation requests a reboot of a role - /// instance in the cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginRestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/restart").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// The Reimage Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/reimage").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles and initializes the - /// storage resources that are used by them. If you do not want to initialize - /// storage resources, you can use Reimage Role Instance. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginRebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRebuild", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/rebuild").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets the list of all role instances in a cloud service. Use nextLink - /// property in the response to get the next page of role instances. Do this - /// till nextLink is null to fetch all the role instances. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - 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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/CloudServiceRoleInstancesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/CloudServiceRoleInstancesOperationsExtensions.cs deleted file mode 100644 index d93d8dcd6922..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/CloudServiceRoleInstancesOperationsExtensions.cs +++ /dev/null @@ -1,631 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.IO; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for CloudServiceRoleInstancesOperations. - /// - public static partial class CloudServiceRoleInstancesOperationsExtensions - { - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void Delete(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.DeleteAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task DeleteAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.DeleteWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets a role instance from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The expand expression to apply to the operation. 'UserData' is not - /// supported for cloud services. Possible values include: 'instanceView', - /// 'userData' - /// - public static RoleInstance Get(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?)) - { - return operations.GetAsync(roleInstanceName, resourceGroupName, cloudServiceName, expand).GetAwaiter().GetResult(); - } - - /// - /// Gets a role instance from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The expand expression to apply to the operation. 'UserData' is not - /// supported for cloud services. Possible values include: 'instanceView', - /// 'userData' - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, expand, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Retrieves information about the run-time state of a role instance in a - /// cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static RoleInstanceInstanceView GetInstanceView(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - return operations.GetInstanceViewAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Retrieves information about the run-time state of a role instance in a - /// cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task GetInstanceViewAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetInstanceViewWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets the list of all role instances in a cloud service. Use nextLink - /// property in the response to get the next page of role instances. Do this - /// till nextLink is null to fetch all the role instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The expand expression to apply to the operation. 'UserData' is not - /// supported for cloud services. Possible values include: 'instanceView', - /// 'userData' - /// - public static IPage List(this ICloudServiceRoleInstancesOperations operations, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?)) - { - return operations.ListAsync(resourceGroupName, cloudServiceName, expand).GetAwaiter().GetResult(); - } - - /// - /// Gets the list of all role instances in a cloud service. Use nextLink - /// property in the response to get the next page of role instances. Do this - /// till nextLink is null to fetch all the role instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The expand expression to apply to the operation. 'UserData' is not - /// supported for cloud services. Possible values include: 'instanceView', - /// 'userData' - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this ICloudServiceRoleInstancesOperations operations, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, cloudServiceName, expand, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// The Reboot Role Instance asynchronous operation requests a reboot of a role - /// instance in the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void Restart(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.RestartAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// The Reboot Role Instance asynchronous operation requests a reboot of a role - /// instance in the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task RestartAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.RestartWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// The Reimage Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void Reimage(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.ReimageAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// The Reimage Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task ReimageAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.ReimageWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles and initializes the - /// storage resources that are used by them. If you do not want to initialize - /// storage resources, you can use Reimage Role Instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void Rebuild(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.RebuildAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles and initializes the - /// storage resources that are used by them. If you do not want to initialize - /// storage resources, you can use Reimage Role Instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task RebuildAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.RebuildWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets a remote desktop file for a role instance in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static Stream GetRemoteDesktopFile(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - return operations.GetRemoteDesktopFileAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Gets a remote desktop file for a role instance in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task GetRemoteDesktopFileAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - var _result = await operations.GetRemoteDesktopFileWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false); - _result.Request.Dispose(); - return _result.Body; - } - - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void BeginDelete(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.BeginDeleteAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginDeleteAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginDeleteWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// The Reboot Role Instance asynchronous operation requests a reboot of a role - /// instance in the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void BeginRestart(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.BeginRestartAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// The Reboot Role Instance asynchronous operation requests a reboot of a role - /// instance in the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginRestartAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginRestartWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// The Reimage Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void BeginReimage(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.BeginReimageAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// The Reimage Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginReimageAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginReimageWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles and initializes the - /// storage resources that are used by them. If you do not want to initialize - /// storage resources, you can use Reimage Role Instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void BeginRebuild(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.BeginRebuildAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles and initializes the - /// storage resources that are used by them. If you do not want to initialize - /// storage resources, you can use Reimage Role Instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginRebuildAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginRebuildWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets the list of all role instances in a cloud service. Use nextLink - /// property in the response to get the next page of role instances. Do this - /// till nextLink is null to fetch all the role instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListNext(this ICloudServiceRoleInstancesOperations operations, string nextPageLink) - { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets the list of all role instances in a cloud service. Use nextLink - /// property in the response to get the next page of role instances. Do this - /// till nextLink is null to fetch all the role instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListNextAsync(this ICloudServiceRoleInstancesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/CloudServiceRolesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/CloudServiceRolesOperations.cs deleted file mode 100644 index d35b939bc199..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/CloudServiceRolesOperations.cs +++ /dev/null @@ -1,628 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - using System.Net; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServiceRolesOperations operations. - /// - internal partial class CloudServiceRolesOperations : IServiceOperations, ICloudServiceRolesOperations - { - /// - /// Initializes a new instance of the CloudServiceRolesOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal CloudServiceRolesOperations(ComputeManagementClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the ComputeManagementClient - /// - public ComputeManagementClient Client { get; private set; } - - /// - /// Gets a role from a cloud service. - /// - /// - /// Name of the role. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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> GetWithHttpMessagesAsync(string roleName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleName", roleName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", 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/cloudServices/{cloudServiceName}/roles/{roleName}").ToString(); - _url = _url.Replace("{roleName}", System.Uri.EscapeDataString(roleName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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("GET"); - _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) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all roles in a cloud service. Use nextLink property in the - /// response to get the next page of roles. Do this till nextLink is null to - /// fetch all the roles. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", 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/cloudServices/{cloudServiceName}/roles").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all roles in a cloud service. Use nextLink property in the - /// response to get the next page of roles. Do this till nextLink is null to - /// fetch all the roles. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - 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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/CloudServiceRolesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/CloudServiceRolesOperationsExtensions.cs deleted file mode 100644 index c86e95e15acb..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/CloudServiceRolesOperationsExtensions.cs +++ /dev/null @@ -1,153 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for CloudServiceRolesOperations. - /// - public static partial class CloudServiceRolesOperationsExtensions - { - /// - /// Gets a role from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static CloudServiceRole Get(this ICloudServiceRolesOperations operations, string roleName, string resourceGroupName, string cloudServiceName) - { - return operations.GetAsync(roleName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Gets a role from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this ICloudServiceRolesOperations operations, string roleName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(roleName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all roles in a cloud service. Use nextLink property in the - /// response to get the next page of roles. Do this till nextLink is null to - /// fetch all the roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static IPage List(this ICloudServiceRolesOperations operations, string resourceGroupName, string cloudServiceName) - { - return operations.ListAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all roles in a cloud service. Use nextLink property in the - /// response to get the next page of roles. Do this till nextLink is null to - /// fetch all the roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this ICloudServiceRolesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all roles in a cloud service. Use nextLink property in the - /// response to get the next page of roles. Do this till nextLink is null to - /// fetch all the roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListNext(this ICloudServiceRolesOperations operations, string nextPageLink) - { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all roles in a cloud service. Use nextLink property in the - /// response to get the next page of roles. Do this till nextLink is null to - /// fetch all the roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListNextAsync(this ICloudServiceRolesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/CloudServicesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/CloudServicesOperations.cs deleted file mode 100644 index 3ba1d07dd5aa..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/CloudServicesOperations.cs +++ /dev/null @@ -1,3122 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - using System.Net; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServicesOperations operations. - /// - internal partial class CloudServicesOperations : IServiceOperations, ICloudServicesOperations - { - /// - /// Initializes a new instance of the CloudServicesOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal CloudServicesOperations(ComputeManagementClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the ComputeManagementClient - /// - public ComputeManagementClient Client { get; private set; } - - /// - /// Create or update a cloud service. Please note some properties can be set - /// only during cloud service creation. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Update a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, tags, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Deletes a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Display information about a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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> GetWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", 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/cloudServices/{cloudServiceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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("GET"); - _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) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets the status of a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetInstanceView", 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/cloudServices/{cloudServiceName}/instanceView").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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("GET"); - _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) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all cloud services in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of Cloud Services. Do this till nextLink is null to fetch all the - /// Cloud Services. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAll", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/cloudServices").ToString(); - _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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all cloud services under a resource group. Use nextLink - /// property in the response to get the next page of Cloud Services. Do this - /// till nextLink is null to fetch all the Cloud Services. - /// - /// - /// Name of the resource group. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", 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/cloudServices").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Starts the cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task StartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginStartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Power off the cloud service. Note that resources are still attached and you - /// are getting charged for the resources. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginPowerOffWithHttpMessagesAsync(resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task RestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Reimage asynchronous operation reinstalls the operating system on instances - /// of web roles or worker roles. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task ReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginReimageWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Rebuild Role Instances reinstalls the operating system on instances of web - /// roles or worker roles and initializes the storage resources that are used - /// by them. If you do not want to initialize storage resources, you can use - /// Reimage Role Instances. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task RebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRebuildWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Deletes role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Create or update a cloud service. Please note some properties can be set - /// only during cloud service creation. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (parameters != null) - { - parameters.Validate(); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", 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/cloudServices/{cloudServiceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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("PUT"); - _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; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // 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 != 201) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Update a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - CloudServiceUpdate parameters = default(CloudServiceUpdate); - if (tags != null) - { - parameters = new CloudServiceUpdate(); - parameters.Tags = tags; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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/cloudServices/{cloudServiceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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("PATCH"); - _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; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // 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) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Deletes a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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/cloudServices/{cloudServiceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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("DELETE"); - _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 && (int)_statusCode != 204) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Starts the cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginStartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginStart", 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/cloudServices/{cloudServiceName}/start").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Power off the cloud service. Note that resources are still attached and you - /// are getting charged for the resources. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginPowerOff", 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/cloudServices/{cloudServiceName}/poweroff").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// 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 BeginRestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (roleInstancesProperty == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); - } - string apiVersion = "2022-09-04"; - RoleInstances parameters = default(RoleInstances); - if (roleInstancesProperty != null) - { - parameters = new RoleInstances(); - parameters.RoleInstancesProperty = roleInstancesProperty; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", 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/cloudServices/{cloudServiceName}/restart").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Reimage asynchronous operation reinstalls the operating system on instances - /// of web roles or worker roles. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// 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 BeginReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (roleInstancesProperty == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); - } - string apiVersion = "2022-09-04"; - RoleInstances parameters = default(RoleInstances); - if (roleInstancesProperty != null) - { - parameters = new RoleInstances(); - parameters.RoleInstancesProperty = roleInstancesProperty; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", 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/cloudServices/{cloudServiceName}/reimage").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Rebuild Role Instances reinstalls the operating system on instances of web - /// roles or worker roles and initializes the storage resources that are used - /// by them. If you do not want to initialize storage resources, you can use - /// Reimage Role Instances. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// 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 BeginRebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (roleInstancesProperty == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); - } - string apiVersion = "2022-09-04"; - RoleInstances parameters = default(RoleInstances); - if (roleInstancesProperty != null) - { - parameters = new RoleInstances(); - parameters.RoleInstancesProperty = roleInstancesProperty; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRebuild", 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/cloudServices/{cloudServiceName}/rebuild").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Deletes role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// 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 BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (roleInstancesProperty == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); - } - string apiVersion = "2022-09-04"; - RoleInstances parameters = default(RoleInstances); - if (roleInstancesProperty != null) - { - parameters = new RoleInstances(); - parameters.RoleInstancesProperty = roleInstancesProperty; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteInstances", 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/cloudServices/{cloudServiceName}/delete").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all cloud services in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of Cloud Services. Do this till nextLink is null to fetch all the - /// Cloud Services. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAllNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - 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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all cloud services under a resource group. Use nextLink - /// property in the response to get the next page of Cloud Services. Do this - /// till nextLink is null to fetch all the Cloud Services. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - 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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/CloudServicesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/CloudServicesOperationsExtensions.cs deleted file mode 100644 index 84568a13d4c1..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/CloudServicesOperationsExtensions.cs +++ /dev/null @@ -1,1047 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for CloudServicesOperations. - /// - public static partial class CloudServicesOperationsExtensions - { - /// - /// Create or update a cloud service. Please note some properties can be set - /// only during cloud service creation. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - public static CloudService CreateOrUpdate(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService)) - { - return operations.CreateOrUpdateAsync(resourceGroupName, cloudServiceName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Create or update a cloud service. Please note some properties can be set - /// only during cloud service creation. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - /// - /// The cancellation token. - /// - public static async Task CreateOrUpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Update a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - public static CloudService Update(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary)) - { - return operations.UpdateAsync(resourceGroupName, cloudServiceName, tags).GetAwaiter().GetResult(); - } - - /// - /// Update a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - /// - /// The cancellation token. - /// - public static async Task UpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, tags, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Deletes a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void Delete(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - operations.DeleteAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Deletes a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task DeleteAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Display information about a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static CloudService Get(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - return operations.GetAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Display information about a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets the status of a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static CloudServiceInstanceView GetInstanceView(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - return operations.GetInstanceViewAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Gets the status of a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task GetInstanceViewAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetInstanceViewWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all cloud services in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of Cloud Services. Do this till nextLink is null to fetch all the - /// Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - public static IPage ListAll(this ICloudServicesOperations operations) - { - return operations.ListAllAsync().GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all cloud services in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of Cloud Services. Do this till nextLink is null to fetch all the - /// Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAllAsync(this ICloudServicesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all cloud services under a resource group. Use nextLink - /// property in the response to get the next page of Cloud Services. Do this - /// till nextLink is null to fetch all the Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - public static IPage List(this ICloudServicesOperations operations, string resourceGroupName) - { - return operations.ListAsync(resourceGroupName).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all cloud services under a resource group. Use nextLink - /// property in the response to get the next page of Cloud Services. Do this - /// till nextLink is null to fetch all the Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this ICloudServicesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Starts the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void Start(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - operations.StartAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Starts the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task StartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.StartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Power off the cloud service. Note that resources are still attached and you - /// are getting charged for the resources. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void PowerOff(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - operations.PowerOffAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Power off the cloud service. Note that resources are still attached and you - /// are getting charged for the resources. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task PowerOffAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.PowerOffWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void Restart(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.RestartAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task RestartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.RestartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Reimage asynchronous operation reinstalls the operating system on instances - /// of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void Reimage(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.ReimageAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Reimage asynchronous operation reinstalls the operating system on instances - /// of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task ReimageAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.ReimageWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Rebuild Role Instances reinstalls the operating system on instances of web - /// roles or worker roles and initializes the storage resources that are used - /// by them. If you do not want to initialize storage resources, you can use - /// Reimage Role Instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void Rebuild(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.RebuildAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Rebuild Role Instances reinstalls the operating system on instances of web - /// roles or worker roles and initializes the storage resources that are used - /// by them. If you do not want to initialize storage resources, you can use - /// Reimage Role Instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task RebuildAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.RebuildWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Deletes role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void DeleteInstances(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.DeleteInstancesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Deletes role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task DeleteInstancesAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.DeleteInstancesWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Create or update a cloud service. Please note some properties can be set - /// only during cloud service creation. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - public static CloudService BeginCreateOrUpdate(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService)) - { - return operations.BeginCreateOrUpdateAsync(resourceGroupName, cloudServiceName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Create or update a cloud service. Please note some properties can be set - /// only during cloud service creation. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - /// - /// The cancellation token. - /// - public static async Task BeginCreateOrUpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Update a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - public static CloudService BeginUpdate(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary)) - { - return operations.BeginUpdateAsync(resourceGroupName, cloudServiceName, tags).GetAwaiter().GetResult(); - } - - /// - /// Update a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - /// - /// The cancellation token. - /// - public static async Task BeginUpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, tags, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Deletes a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void BeginDelete(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - operations.BeginDeleteAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Deletes a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginDeleteAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Starts the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void BeginStart(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - operations.BeginStartAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Starts the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginStartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginStartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Power off the cloud service. Note that resources are still attached and you - /// are getting charged for the resources. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void BeginPowerOff(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - operations.BeginPowerOffAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Power off the cloud service. Note that resources are still attached and you - /// are getting charged for the resources. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginPowerOffAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginPowerOffWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void BeginRestart(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.BeginRestartAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginRestartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Reimage asynchronous operation reinstalls the operating system on instances - /// of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void BeginReimage(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.BeginReimageAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Reimage asynchronous operation reinstalls the operating system on instances - /// of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginReimageAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginReimageWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Rebuild Role Instances reinstalls the operating system on instances of web - /// roles or worker roles and initializes the storage resources that are used - /// by them. If you do not want to initialize storage resources, you can use - /// Reimage Role Instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void BeginRebuild(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.BeginRebuildAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Rebuild Role Instances reinstalls the operating system on instances of web - /// roles or worker roles and initializes the storage resources that are used - /// by them. If you do not want to initialize storage resources, you can use - /// Reimage Role Instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginRebuildAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginRebuildWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Deletes role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void BeginDeleteInstances(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.BeginDeleteInstancesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Deletes role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginDeleteInstancesAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets a list of all cloud services in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of Cloud Services. Do this till nextLink is null to fetch all the - /// Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListAllNext(this ICloudServicesOperations operations, string nextPageLink) - { - return operations.ListAllNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all cloud services in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of Cloud Services. Do this till nextLink is null to fetch all the - /// Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAllNextAsync(this ICloudServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all cloud services under a resource group. Use nextLink - /// property in the response to get the next page of Cloud Services. Do this - /// till nextLink is null to fetch all the Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListNext(this ICloudServicesOperations operations, string nextPageLink) - { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all cloud services under a resource group. Use nextLink - /// property in the response to get the next page of Cloud Services. Do this - /// till nextLink is null to fetch all the Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListNextAsync(this ICloudServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/CloudServicesUpdateDomainOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/CloudServicesUpdateDomainOperations.cs deleted file mode 100644 index 60a960bcb687..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/CloudServicesUpdateDomainOperations.cs +++ /dev/null @@ -1,839 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - using System.Net; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServicesUpdateDomainOperations operations. - /// - internal partial class CloudServicesUpdateDomainOperations : IServiceOperations, ICloudServicesUpdateDomainOperations - { - /// - /// Initializes a new instance of the CloudServicesUpdateDomainOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal CloudServicesUpdateDomainOperations(ComputeManagementClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the ComputeManagementClient - /// - public ComputeManagementClient Client { get; private set; } - - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task WalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginWalkUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets the specified update domain of a cloud service. Use nextLink property - /// in the response to get the next page of update domains. Do this till - /// nextLink is null to fetch all the update domains. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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> GetUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("updateDomain", updateDomain); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetUpdateDomain", 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/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{updateDomain}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(updateDomain, Client.SerializationSettings).Trim('"'))); - _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("GET"); - _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) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListUpdateDomainsWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListUpdateDomains", 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/cloudServices/{cloudServiceName}/updateDomains").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// 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 BeginWalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2022-09-04"; - UpdateDomain parameters = default(UpdateDomain); - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("updateDomain", updateDomain); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginWalkUpdateDomain", 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/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{updateDomain}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(updateDomain, Client.SerializationSettings).Trim('"'))); - _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("PUT"); - _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; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListUpdateDomainsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListUpdateDomainsNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - 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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/CloudServicesUpdateDomainOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/CloudServicesUpdateDomainOperationsExtensions.cs deleted file mode 100644 index 9e3226415fe1..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/CloudServicesUpdateDomainOperationsExtensions.cs +++ /dev/null @@ -1,247 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for CloudServicesUpdateDomainOperations. - /// - public static partial class CloudServicesUpdateDomainOperationsExtensions - { - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - public static void WalkUpdateDomain(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain) - { - operations.WalkUpdateDomainAsync(resourceGroupName, cloudServiceName, updateDomain).GetAwaiter().GetResult(); - } - - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// The cancellation token. - /// - public static async Task WalkUpdateDomainAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.WalkUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets the specified update domain of a cloud service. Use nextLink property - /// in the response to get the next page of update domains. Do this till - /// nextLink is null to fetch all the update domains. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - public static UpdateDomain GetUpdateDomain(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain) - { - return operations.GetUpdateDomainAsync(resourceGroupName, cloudServiceName, updateDomain).GetAwaiter().GetResult(); - } - - /// - /// Gets the specified update domain of a cloud service. Use nextLink property - /// in the response to get the next page of update domains. Do this till - /// nextLink is null to fetch all the update domains. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// The cancellation token. - /// - public static async Task GetUpdateDomainAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static IPage ListUpdateDomains(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName) - { - return operations.ListUpdateDomainsAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task> ListUpdateDomainsAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListUpdateDomainsWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - public static void BeginWalkUpdateDomain(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain) - { - operations.BeginWalkUpdateDomainAsync(resourceGroupName, cloudServiceName, updateDomain).GetAwaiter().GetResult(); - } - - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// The cancellation token. - /// - public static async Task BeginWalkUpdateDomainAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginWalkUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListUpdateDomainsNext(this ICloudServicesUpdateDomainOperations operations, string nextPageLink) - { - return operations.ListUpdateDomainsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListUpdateDomainsNextAsync(this ICloudServicesUpdateDomainOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListUpdateDomainsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleriesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleriesOperations.cs index e20a04fada55..71a960b11025 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleriesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleriesOperations.cs @@ -54,7 +54,7 @@ internal CommunityGalleriesOperations(ComputeManagementClient client) /// Get a community gallery by gallery public name. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. @@ -90,6 +90,13 @@ internal CommunityGalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (publicGalleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "publicGalleryName"); @@ -102,9 +109,9 @@ internal CommunityGalleriesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("publicGalleryName", publicGalleryName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } diff --git a/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleriesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleriesOperationsExtensions.cs index c36d2a2c4d75..57a5c67f247f 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleriesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleriesOperationsExtensions.cs @@ -28,7 +28,7 @@ public static partial class CommunityGalleriesOperationsExtensions /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. @@ -45,7 +45,7 @@ public static CommunityGallery Get(this ICommunityGalleriesOperations operations /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. diff --git a/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImageVersionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImageVersionsOperations.cs index 73b93e0dc28b..e0a62b225e5e 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImageVersionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImageVersionsOperations.cs @@ -51,10 +51,10 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Get a community gallery image version. + /// List community gallery image versions inside an image. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. @@ -62,12 +62,6 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) /// /// The name of the community gallery image definition. /// - /// - /// The name of the community gallery image version. Needs to follow semantic - /// version name pattern: The allowed characters are digit and period. Digits - /// must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// /// /// Headers that will be added to request. /// @@ -89,7 +83,7 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -99,6 +93,13 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (publicGalleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "publicGalleryName"); @@ -107,10 +108,6 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - if (galleryImageVersionName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); - } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -119,22 +116,20 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("publicGalleryName", publicGalleryName); tracingParameters.Add("galleryImageName", galleryImageName); - tracingParameters.Add("galleryImageVersionName", galleryImageVersionName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images/{galleryImageName}/versions").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{publicGalleryName}", System.Uri.EscapeDataString(publicGalleryName)); _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName)); - _url = _url.Replace("{galleryImageVersionName}", System.Uri.EscapeDataString(galleryImageVersionName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -233,7 +228,7 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -246,7 +241,7 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -266,10 +261,10 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// List community gallery image versions inside an image. + /// Get a community gallery image version. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. @@ -277,6 +272,12 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) /// /// The name of the community gallery image definition. /// + /// + /// The name of the community gallery image version. Needs to follow semantic + /// version name pattern: The allowed characters are digit and period. Digits + /// must be within the range of a 32-bit integer. Format: + /// <MajorVersion>.<MinorVersion>.<Patch> + /// /// /// Headers that will be added to request. /// @@ -298,7 +299,7 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -308,6 +309,13 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (publicGalleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "publicGalleryName"); @@ -316,6 +324,10 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } + if (galleryImageVersionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); + } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -324,20 +336,22 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("publicGalleryName", publicGalleryName); tracingParameters.Add("galleryImageName", galleryImageName); + tracingParameters.Add("galleryImageVersionName", galleryImageVersionName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images/{galleryImageName}/versions").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{publicGalleryName}", System.Uri.EscapeDataString(publicGalleryName)); _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName)); + _url = _url.Replace("{galleryImageVersionName}", System.Uri.EscapeDataString(galleryImageVersionName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -436,7 +450,7 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -449,7 +463,7 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImageVersionsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImageVersionsOperationsExtensions.cs index 1227052f43f6..f19f850397f5 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImageVersionsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImageVersionsOperationsExtensions.cs @@ -22,13 +22,13 @@ namespace Microsoft.Azure.Management.Compute public static partial class CommunityGalleryImageVersionsOperationsExtensions { /// - /// Get a community gallery image version. + /// List community gallery image versions inside an image. /// /// /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. @@ -36,25 +36,19 @@ public static partial class CommunityGalleryImageVersionsOperationsExtensions /// /// The name of the community gallery image definition. /// - /// - /// The name of the community gallery image version. Needs to follow semantic - /// version name pattern: The allowed characters are digit and period. Digits - /// must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// - public static CommunityGalleryImageVersion Get(this ICommunityGalleryImageVersionsOperations operations, string location, string publicGalleryName, string galleryImageName, string galleryImageVersionName) + public static IPage List(this ICommunityGalleryImageVersionsOperations operations, string location, string publicGalleryName, string galleryImageName) { - return operations.GetAsync(location, publicGalleryName, galleryImageName, galleryImageVersionName).GetAwaiter().GetResult(); + return operations.ListAsync(location, publicGalleryName, galleryImageName).GetAwaiter().GetResult(); } /// - /// Get a community gallery image version. + /// List community gallery image versions inside an image. /// /// /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. @@ -62,31 +56,25 @@ public static CommunityGalleryImageVersion Get(this ICommunityGalleryImageVersio /// /// The name of the community gallery image definition. /// - /// - /// The name of the community gallery image version. Needs to follow semantic - /// version name pattern: The allowed characters are digit and period. Digits - /// must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// /// /// The cancellation token. /// - public static async Task GetAsync(this ICommunityGalleryImageVersionsOperations operations, string location, string publicGalleryName, string galleryImageName, string galleryImageVersionName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this ICommunityGalleryImageVersionsOperations operations, string location, string publicGalleryName, string galleryImageName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(location, publicGalleryName, galleryImageName, galleryImageVersionName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(location, publicGalleryName, galleryImageName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// List community gallery image versions inside an image. + /// Get a community gallery image version. /// /// /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. @@ -94,19 +82,25 @@ public static CommunityGalleryImageVersion Get(this ICommunityGalleryImageVersio /// /// The name of the community gallery image definition. /// - public static IPage List(this ICommunityGalleryImageVersionsOperations operations, string location, string publicGalleryName, string galleryImageName) + /// + /// The name of the community gallery image version. Needs to follow semantic + /// version name pattern: The allowed characters are digit and period. Digits + /// must be within the range of a 32-bit integer. Format: + /// <MajorVersion>.<MinorVersion>.<Patch> + /// + public static CommunityGalleryImageVersion Get(this ICommunityGalleryImageVersionsOperations operations, string location, string publicGalleryName, string galleryImageName, string galleryImageVersionName) { - return operations.ListAsync(location, publicGalleryName, galleryImageName).GetAwaiter().GetResult(); + return operations.GetAsync(location, publicGalleryName, galleryImageName, galleryImageVersionName).GetAwaiter().GetResult(); } /// - /// List community gallery image versions inside an image. + /// Get a community gallery image version. /// /// /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. @@ -114,12 +108,18 @@ public static IPage List(this ICommunityGalleryIma /// /// The name of the community gallery image definition. /// + /// + /// The name of the community gallery image version. Needs to follow semantic + /// version name pattern: The allowed characters are digit and period. Digits + /// must be within the range of a 32-bit integer. Format: + /// <MajorVersion>.<MinorVersion>.<Patch> + /// /// /// The cancellation token. /// - public static async Task> ListAsync(this ICommunityGalleryImageVersionsOperations operations, string location, string publicGalleryName, string galleryImageName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this ICommunityGalleryImageVersionsOperations operations, string location, string publicGalleryName, string galleryImageName, string galleryImageVersionName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(location, publicGalleryName, galleryImageName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(location, publicGalleryName, galleryImageName, galleryImageVersionName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImagesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImagesOperations.cs index 854f3f1fde2a..6fac391dd4a1 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImagesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImagesOperations.cs @@ -51,17 +51,14 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Get a community gallery image. + /// List community gallery images inside a gallery. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. /// - /// - /// The name of the community gallery image definition. - /// /// /// Headers that will be added to request. /// @@ -83,7 +80,7 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string location, string publicGalleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -93,13 +90,16 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } - if (publicGalleryName == null) + if (location != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "publicGalleryName"); + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } } - if (galleryImageName == null) + if (publicGalleryName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); + throw new ValidationException(ValidationRules.CannotBeNull, "publicGalleryName"); } string apiVersion = "2024-03-03"; // Tracing @@ -109,20 +109,18 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("publicGalleryName", publicGalleryName); - tracingParameters.Add("galleryImageName", galleryImageName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images/{galleryImageName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{publicGalleryName}", System.Uri.EscapeDataString(publicGalleryName)); - _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -221,7 +219,7 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -234,7 +232,7 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -254,14 +252,17 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) } /// - /// List community gallery images inside a gallery. + /// Get a community gallery image. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. /// + /// + /// The name of the community gallery image definition. + /// /// /// Headers that will be added to request. /// @@ -283,7 +284,7 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string location, string publicGalleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -293,10 +294,21 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (publicGalleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "publicGalleryName"); } + if (galleryImageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); + } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -305,18 +317,20 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("publicGalleryName", publicGalleryName); + tracingParameters.Add("galleryImageName", galleryImageName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images/{galleryImageName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{publicGalleryName}", System.Uri.EscapeDataString(publicGalleryName)); + _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -415,7 +429,7 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -428,7 +442,7 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImagesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImagesOperationsExtensions.cs index 0cb768ca6313..84551246fab7 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImagesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/CommunityGalleryImagesOperationsExtensions.cs @@ -22,86 +22,86 @@ namespace Microsoft.Azure.Management.Compute public static partial class CommunityGalleryImagesOperationsExtensions { /// - /// Get a community gallery image. + /// List community gallery images inside a gallery. /// /// /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. /// - /// - /// The name of the community gallery image definition. - /// - public static CommunityGalleryImage Get(this ICommunityGalleryImagesOperations operations, string location, string publicGalleryName, string galleryImageName) + public static IPage List(this ICommunityGalleryImagesOperations operations, string location, string publicGalleryName) { - return operations.GetAsync(location, publicGalleryName, galleryImageName).GetAwaiter().GetResult(); + return operations.ListAsync(location, publicGalleryName).GetAwaiter().GetResult(); } /// - /// Get a community gallery image. + /// List community gallery images inside a gallery. /// /// /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. /// - /// - /// The name of the community gallery image definition. - /// /// /// The cancellation token. /// - public static async Task GetAsync(this ICommunityGalleryImagesOperations operations, string location, string publicGalleryName, string galleryImageName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this ICommunityGalleryImagesOperations operations, string location, string publicGalleryName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(location, publicGalleryName, galleryImageName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(location, publicGalleryName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// List community gallery images inside a gallery. + /// Get a community gallery image. /// /// /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. /// - public static IPage List(this ICommunityGalleryImagesOperations operations, string location, string publicGalleryName) + /// + /// The name of the community gallery image definition. + /// + public static CommunityGalleryImage Get(this ICommunityGalleryImagesOperations operations, string location, string publicGalleryName, string galleryImageName) { - return operations.ListAsync(location, publicGalleryName).GetAwaiter().GetResult(); + return operations.GetAsync(location, publicGalleryName, galleryImageName).GetAwaiter().GetResult(); } /// - /// List community gallery images inside a gallery. + /// Get a community gallery image. /// /// /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. /// + /// + /// The name of the community gallery image definition. + /// /// /// The cancellation token. /// - public static async Task> ListAsync(this ICommunityGalleryImagesOperations operations, string location, string publicGalleryName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this ICommunityGalleryImagesOperations operations, string location, string publicGalleryName, string galleryImageName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(location, publicGalleryName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(location, publicGalleryName, galleryImageName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/ComputeManagementClient.cs b/src/Compute/Compute.Management.Sdk/Generated/ComputeManagementClient.cs index 6b4e8d26fd54..dd0ce5bd3d5f 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ComputeManagementClient.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ComputeManagementClient.cs @@ -74,69 +74,69 @@ public partial class ComputeManagementClient : ServiceClient - /// Gets the IUsageOperations. + /// Gets the IAvailabilitySetsOperations. /// - public virtual IUsageOperations Usage { get; private set; } + public virtual IAvailabilitySetsOperations AvailabilitySets { get; private set; } /// - /// Gets the IVirtualMachineSizesOperations. + /// Gets the ICapacityReservationGroupsOperations. /// - public virtual IVirtualMachineSizesOperations VirtualMachineSizes { get; private set; } + public virtual ICapacityReservationGroupsOperations CapacityReservationGroups { get; private set; } /// - /// Gets the IVirtualMachineScaleSetsOperations. + /// Gets the IDedicatedHostGroupsOperations. /// - public virtual IVirtualMachineScaleSetsOperations VirtualMachineScaleSets { get; private set; } + public virtual IDedicatedHostGroupsOperations DedicatedHostGroups { get; private set; } /// - /// Gets the IVirtualMachineScaleSetExtensionsOperations. + /// Gets the IImagesOperations. /// - public virtual IVirtualMachineScaleSetExtensionsOperations VirtualMachineScaleSetExtensions { get; private set; } + public virtual IImagesOperations Images { get; private set; } /// - /// Gets the IVirtualMachineScaleSetRollingUpgradesOperations. + /// Gets the IVirtualMachineImagesEdgeZoneOperations. /// - public virtual IVirtualMachineScaleSetRollingUpgradesOperations VirtualMachineScaleSetRollingUpgrades { get; private set; } + public virtual IVirtualMachineImagesEdgeZoneOperations VirtualMachineImagesEdgeZone { get; private set; } /// - /// Gets the IVirtualMachineScaleSetVMExtensionsOperations. + /// Gets the IVirtualMachineImagesOperations. /// - public virtual IVirtualMachineScaleSetVMExtensionsOperations VirtualMachineScaleSetVMExtensions { get; private set; } + public virtual IVirtualMachineImagesOperations VirtualMachineImages { get; private set; } /// - /// Gets the IVirtualMachineScaleSetVMsOperations. + /// Gets the ILogAnalyticsOperations. /// - public virtual IVirtualMachineScaleSetVMsOperations VirtualMachineScaleSetVMs { get; private set; } + public virtual ILogAnalyticsOperations LogAnalytics { get; private set; } /// - /// Gets the IVirtualMachineExtensionsOperations. + /// Gets the IVirtualMachineExtensionImagesOperations. /// - public virtual IVirtualMachineExtensionsOperations VirtualMachineExtensions { get; private set; } + public virtual IVirtualMachineExtensionImagesOperations VirtualMachineExtensionImages { get; private set; } /// - /// Gets the IVirtualMachinesOperations. + /// Gets the IVirtualMachineRunCommandsOperations. /// - public virtual IVirtualMachinesOperations VirtualMachines { get; private set; } + public virtual IVirtualMachineRunCommandsOperations VirtualMachineRunCommands { get; private set; } /// - /// Gets the IVirtualMachineImagesOperations. + /// Gets the IUsageOperations. /// - public virtual IVirtualMachineImagesOperations VirtualMachineImages { get; private set; } + public virtual IUsageOperations Usage { get; private set; } /// - /// Gets the IVirtualMachineImagesEdgeZoneOperations. + /// Gets the IVirtualMachineScaleSetsOperations. /// - public virtual IVirtualMachineImagesEdgeZoneOperations VirtualMachineImagesEdgeZone { get; private set; } + public virtual IVirtualMachineScaleSetsOperations VirtualMachineScaleSets { get; private set; } /// - /// Gets the IVirtualMachineExtensionImagesOperations. + /// Gets the IVirtualMachinesOperations. /// - public virtual IVirtualMachineExtensionImagesOperations VirtualMachineExtensionImages { get; private set; } + public virtual IVirtualMachinesOperations VirtualMachines { get; private set; } /// - /// Gets the IAvailabilitySetsOperations. + /// Gets the IVirtualMachineSizesOperations. /// - public virtual IAvailabilitySetsOperations AvailabilitySets { get; private set; } + public virtual IVirtualMachineSizesOperations VirtualMachineSizes { get; private set; } /// /// Gets the IProximityPlacementGroupsOperations. @@ -144,14 +144,9 @@ public partial class ComputeManagementClient : ServiceClient - /// Gets the IDedicatedHostGroupsOperations. - /// - public virtual IDedicatedHostGroupsOperations DedicatedHostGroups { get; private set; } - - /// - /// Gets the IDedicatedHostsOperations. + /// Gets the IRestorePointCollectionsOperations. /// - public virtual IDedicatedHostsOperations DedicatedHosts { get; private set; } + public virtual IRestorePointCollectionsOperations RestorePointCollections { get; private set; } /// /// Gets the ISshPublicKeysOperations. @@ -159,14 +154,14 @@ public partial class ComputeManagementClient : ServiceClient - /// Gets the IImagesOperations. + /// Gets the ICapacityReservationsOperations. /// - public virtual IImagesOperations Images { get; private set; } + public virtual ICapacityReservationsOperations CapacityReservations { get; private set; } /// - /// Gets the IRestorePointCollectionsOperations. + /// Gets the IDedicatedHostsOperations. /// - public virtual IRestorePointCollectionsOperations RestorePointCollections { get; private set; } + public virtual IDedicatedHostsOperations DedicatedHosts { get; private set; } /// /// Gets the IRestorePointsOperations. @@ -174,24 +169,24 @@ public partial class ComputeManagementClient : ServiceClient - /// Gets the ICapacityReservationGroupsOperations. + /// Gets the IVirtualMachineScaleSetRollingUpgradesOperations. /// - public virtual ICapacityReservationGroupsOperations CapacityReservationGroups { get; private set; } + public virtual IVirtualMachineScaleSetRollingUpgradesOperations VirtualMachineScaleSetRollingUpgrades { get; private set; } /// - /// Gets the ICapacityReservationsOperations. + /// Gets the IVirtualMachineScaleSetExtensionsOperations. /// - public virtual ICapacityReservationsOperations CapacityReservations { get; private set; } + public virtual IVirtualMachineScaleSetExtensionsOperations VirtualMachineScaleSetExtensions { get; private set; } /// - /// Gets the ILogAnalyticsOperations. + /// Gets the IVirtualMachineScaleSetVMsOperations. /// - public virtual ILogAnalyticsOperations LogAnalytics { get; private set; } + public virtual IVirtualMachineScaleSetVMsOperations VirtualMachineScaleSetVMs { get; private set; } /// - /// Gets the IVirtualMachineRunCommandsOperations. + /// Gets the IVirtualMachineScaleSetVMExtensionsOperations. /// - public virtual IVirtualMachineRunCommandsOperations VirtualMachineRunCommands { get; private set; } + public virtual IVirtualMachineScaleSetVMExtensionsOperations VirtualMachineScaleSetVMExtensions { get; private set; } /// /// Gets the IVirtualMachineScaleSetVMRunCommandsOperations. @@ -199,9 +194,9 @@ public partial class ComputeManagementClient : ServiceClient - /// Gets the IDisksOperations. + /// Gets the IVirtualMachineExtensionsOperations. /// - public virtual IDisksOperations Disks { get; private set; } + public virtual IVirtualMachineExtensionsOperations VirtualMachineExtensions { get; private set; } /// /// Gets the IDiskAccessesOperations. @@ -214,9 +209,9 @@ public partial class ComputeManagementClient : ServiceClient - /// Gets the IDiskRestorePointOperations. + /// Gets the IDisksOperations. /// - public virtual IDiskRestorePointOperations DiskRestorePoint { get; private set; } + public virtual IDisksOperations Disks { get; private set; } /// /// Gets the ISnapshotsOperations. @@ -224,9 +219,9 @@ public partial class ComputeManagementClient : ServiceClient - /// Gets the IResourceSkusOperations. + /// Gets the IDiskRestorePointOperations. /// - public virtual IResourceSkusOperations ResourceSkus { get; private set; } + public virtual IDiskRestorePointOperations DiskRestorePoint { get; private set; } /// /// Gets the IGalleriesOperations. @@ -234,44 +229,19 @@ public partial class ComputeManagementClient : ServiceClient - /// Gets the IGalleryImagesOperations. - /// - public virtual IGalleryImagesOperations GalleryImages { get; private set; } - - /// - /// Gets the IGalleryImageVersionsOperations. - /// - public virtual IGalleryImageVersionsOperations GalleryImageVersions { get; private set; } - - /// - /// Gets the IGalleryApplicationsOperations. - /// - public virtual IGalleryApplicationsOperations GalleryApplications { get; private set; } - - /// - /// Gets the IGalleryApplicationVersionsOperations. - /// - public virtual IGalleryApplicationVersionsOperations GalleryApplicationVersions { get; private set; } - - /// - /// Gets the ISoftDeletedResourceOperations. - /// - public virtual ISoftDeletedResourceOperations SoftDeletedResource { get; private set; } - - /// - /// Gets the IGallerySharingProfileOperations. + /// Gets the ICommunityGalleriesOperations. /// - public virtual IGallerySharingProfileOperations GallerySharingProfile { get; private set; } + public virtual ICommunityGalleriesOperations CommunityGalleries { get; private set; } /// - /// Gets the IGalleryInVMAccessControlProfilesOperations. + /// Gets the ICommunityGalleryImagesOperations. /// - public virtual IGalleryInVMAccessControlProfilesOperations GalleryInVMAccessControlProfiles { get; private set; } + public virtual ICommunityGalleryImagesOperations CommunityGalleryImages { get; private set; } /// - /// Gets the IGalleryInVMAccessControlProfileVersionsOperations. + /// Gets the ICommunityGalleryImageVersionsOperations. /// - public virtual IGalleryInVMAccessControlProfileVersionsOperations GalleryInVMAccessControlProfileVersions { get; private set; } + public virtual ICommunityGalleryImageVersionsOperations CommunityGalleryImageVersions { get; private set; } /// /// Gets the ISharedGalleriesOperations. @@ -289,44 +259,49 @@ public partial class ComputeManagementClient : ServiceClient - /// Gets the ICommunityGalleriesOperations. + /// Gets the IGalleryApplicationsOperations. /// - public virtual ICommunityGalleriesOperations CommunityGalleries { get; private set; } + public virtual IGalleryApplicationsOperations GalleryApplications { get; private set; } /// - /// Gets the ICommunityGalleryImagesOperations. + /// Gets the IGalleryApplicationVersionsOperations. /// - public virtual ICommunityGalleryImagesOperations CommunityGalleryImages { get; private set; } + public virtual IGalleryApplicationVersionsOperations GalleryApplicationVersions { get; private set; } /// - /// Gets the ICommunityGalleryImageVersionsOperations. + /// Gets the IGalleryImagesOperations. /// - public virtual ICommunityGalleryImageVersionsOperations CommunityGalleryImageVersions { get; private set; } + public virtual IGalleryImagesOperations GalleryImages { get; private set; } + + /// + /// Gets the IGalleryImageVersionsOperations. + /// + public virtual IGalleryImageVersionsOperations GalleryImageVersions { get; private set; } /// - /// Gets the ICloudServiceRoleInstancesOperations. + /// Gets the IGalleryInVMAccessControlProfilesOperations. /// - public virtual ICloudServiceRoleInstancesOperations CloudServiceRoleInstances { get; private set; } + public virtual IGalleryInVMAccessControlProfilesOperations GalleryInVMAccessControlProfiles { get; private set; } /// - /// Gets the ICloudServiceRolesOperations. + /// Gets the IGalleryInVMAccessControlProfileVersionsOperations. /// - public virtual ICloudServiceRolesOperations CloudServiceRoles { get; private set; } + public virtual IGalleryInVMAccessControlProfileVersionsOperations GalleryInVMAccessControlProfileVersions { get; private set; } /// - /// Gets the ICloudServicesOperations. + /// Gets the IGallerySharingProfileOperations. /// - public virtual ICloudServicesOperations CloudServices { get; private set; } + public virtual IGallerySharingProfileOperations GallerySharingProfile { get; private set; } /// - /// Gets the ICloudServicesUpdateDomainOperations. + /// Gets the ISoftDeletedResourceOperations. /// - public virtual ICloudServicesUpdateDomainOperations CloudServicesUpdateDomain { get; private set; } + public virtual ISoftDeletedResourceOperations SoftDeletedResource { get; private set; } /// - /// Gets the ICloudServiceOperatingSystemsOperations. + /// Gets the IResourceSkusOperations. /// - public virtual ICloudServiceOperatingSystemsOperations CloudServiceOperatingSystems { get; private set; } + public virtual IResourceSkusOperations ResourceSkus { get; private set; } /// /// Initializes a new instance of the ComputeManagementClient class. @@ -570,57 +545,52 @@ public ComputeManagementClient(System.Uri baseUri, ServiceClientCredentials cred private void Initialize() { Operations = new Operations(this); + AvailabilitySets = new AvailabilitySetsOperations(this); + CapacityReservationGroups = new CapacityReservationGroupsOperations(this); + DedicatedHostGroups = new DedicatedHostGroupsOperations(this); + Images = new ImagesOperations(this); + VirtualMachineImagesEdgeZone = new VirtualMachineImagesEdgeZoneOperations(this); + VirtualMachineImages = new VirtualMachineImagesOperations(this); + LogAnalytics = new LogAnalyticsOperations(this); + VirtualMachineExtensionImages = new VirtualMachineExtensionImagesOperations(this); + VirtualMachineRunCommands = new VirtualMachineRunCommandsOperations(this); Usage = new UsageOperations(this); - VirtualMachineSizes = new VirtualMachineSizesOperations(this); VirtualMachineScaleSets = new VirtualMachineScaleSetsOperations(this); - VirtualMachineScaleSetExtensions = new VirtualMachineScaleSetExtensionsOperations(this); - VirtualMachineScaleSetRollingUpgrades = new VirtualMachineScaleSetRollingUpgradesOperations(this); - VirtualMachineScaleSetVMExtensions = new VirtualMachineScaleSetVMExtensionsOperations(this); - VirtualMachineScaleSetVMs = new VirtualMachineScaleSetVMsOperations(this); - VirtualMachineExtensions = new VirtualMachineExtensionsOperations(this); VirtualMachines = new VirtualMachinesOperations(this); - VirtualMachineImages = new VirtualMachineImagesOperations(this); - VirtualMachineImagesEdgeZone = new VirtualMachineImagesEdgeZoneOperations(this); - VirtualMachineExtensionImages = new VirtualMachineExtensionImagesOperations(this); - AvailabilitySets = new AvailabilitySetsOperations(this); + VirtualMachineSizes = new VirtualMachineSizesOperations(this); ProximityPlacementGroups = new ProximityPlacementGroupsOperations(this); - DedicatedHostGroups = new DedicatedHostGroupsOperations(this); - DedicatedHosts = new DedicatedHostsOperations(this); - SshPublicKeys = new SshPublicKeysOperations(this); - Images = new ImagesOperations(this); RestorePointCollections = new RestorePointCollectionsOperations(this); - RestorePoints = new RestorePointsOperations(this); - CapacityReservationGroups = new CapacityReservationGroupsOperations(this); + SshPublicKeys = new SshPublicKeysOperations(this); CapacityReservations = new CapacityReservationsOperations(this); - LogAnalytics = new LogAnalyticsOperations(this); - VirtualMachineRunCommands = new VirtualMachineRunCommandsOperations(this); + DedicatedHosts = new DedicatedHostsOperations(this); + RestorePoints = new RestorePointsOperations(this); + VirtualMachineScaleSetRollingUpgrades = new VirtualMachineScaleSetRollingUpgradesOperations(this); + VirtualMachineScaleSetExtensions = new VirtualMachineScaleSetExtensionsOperations(this); + VirtualMachineScaleSetVMs = new VirtualMachineScaleSetVMsOperations(this); + VirtualMachineScaleSetVMExtensions = new VirtualMachineScaleSetVMExtensionsOperations(this); VirtualMachineScaleSetVMRunCommands = new VirtualMachineScaleSetVMRunCommandsOperations(this); - Disks = new DisksOperations(this); + VirtualMachineExtensions = new VirtualMachineExtensionsOperations(this); DiskAccesses = new DiskAccessesOperations(this); DiskEncryptionSets = new DiskEncryptionSetsOperations(this); - DiskRestorePoint = new DiskRestorePointOperations(this); + Disks = new DisksOperations(this); Snapshots = new SnapshotsOperations(this); - ResourceSkus = new ResourceSkusOperations(this); + DiskRestorePoint = new DiskRestorePointOperations(this); Galleries = new GalleriesOperations(this); - GalleryImages = new GalleryImagesOperations(this); - GalleryImageVersions = new GalleryImageVersionsOperations(this); + CommunityGalleries = new CommunityGalleriesOperations(this); + CommunityGalleryImages = new CommunityGalleryImagesOperations(this); + CommunityGalleryImageVersions = new CommunityGalleryImageVersionsOperations(this); + SharedGalleries = new SharedGalleriesOperations(this); + SharedGalleryImages = new SharedGalleryImagesOperations(this); + SharedGalleryImageVersions = new SharedGalleryImageVersionsOperations(this); GalleryApplications = new GalleryApplicationsOperations(this); GalleryApplicationVersions = new GalleryApplicationVersionsOperations(this); - SoftDeletedResource = new SoftDeletedResourceOperations(this); - GallerySharingProfile = new GallerySharingProfileOperations(this); + GalleryImages = new GalleryImagesOperations(this); + GalleryImageVersions = new GalleryImageVersionsOperations(this); GalleryInVMAccessControlProfiles = new GalleryInVMAccessControlProfilesOperations(this); GalleryInVMAccessControlProfileVersions = new GalleryInVMAccessControlProfileVersionsOperations(this); - SharedGalleries = new SharedGalleriesOperations(this); - SharedGalleryImages = new SharedGalleryImagesOperations(this); - SharedGalleryImageVersions = new SharedGalleryImageVersionsOperations(this); - CommunityGalleries = new CommunityGalleriesOperations(this); - CommunityGalleryImages = new CommunityGalleryImagesOperations(this); - CommunityGalleryImageVersions = new CommunityGalleryImageVersionsOperations(this); - CloudServiceRoleInstances = new CloudServiceRoleInstancesOperations(this); - CloudServiceRoles = new CloudServiceRolesOperations(this); - CloudServices = new CloudServicesOperations(this); - CloudServicesUpdateDomain = new CloudServicesUpdateDomainOperations(this); - CloudServiceOperatingSystems = new CloudServiceOperatingSystemsOperations(this); + GallerySharingProfile = new GallerySharingProfileOperations(this); + SoftDeletedResource = new SoftDeletedResourceOperations(this); + ResourceSkus = new ResourceSkusOperations(this); BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; diff --git a/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostGroupsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostGroupsOperations.cs index 6614f0097aeb..877890b67a00 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostGroupsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostGroupsOperations.cs @@ -51,19 +51,10 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update a dedicated host group. For details of Dedicated Host and - /// Dedicated Host Groups please see [Dedicated Host Documentation] - /// (https://go.microsoft.com/fwlink/?linkid=2082596) + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated host + /// groups. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the dedicated host group. - /// - /// - /// Parameters supplied to the Create Dedicated Host Group. - /// /// /// Headers that will be added to request. /// @@ -85,24 +76,8 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, DedicatedHostGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (hostGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -115,18 +90,13 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("hostGroupName", hostGroupName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", 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/hostGroups/{hostGroupName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/hostGroups").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -140,7 +110,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -171,12 +141,6 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -197,7 +161,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -232,7 +196,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -245,25 +209,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -283,16 +229,12 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) } /// - /// Update an dedicated host group. + /// Lists all of the dedicated host groups in the specified resource group. Use + /// the nextLink property in the response to get the next page of dedicated + /// host groups. /// /// - /// The name of the resource group. - /// - /// - /// The name of the dedicated host group. - /// - /// - /// Parameters supplied to the Update Dedicated Host Group operation. + /// The name of the resource group. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -315,23 +257,26 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, DedicatedHostGroupUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (hostGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (parameters == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } string apiVersion = "2024-11-01"; // Tracing @@ -341,19 +286,16 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("hostGroupName", hostGroupName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", 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/hostGroups/{hostGroupName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -366,7 +308,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -397,12 +339,6 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -458,7 +394,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -471,7 +407,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -491,14 +427,20 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) } /// - /// Delete a dedicated host group. + /// Retrieves information about a dedicated host group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// + /// + /// The expand expression to apply on the operation. 'InstanceView' will + /// retrieve the list of instance views of the dedicated hosts under the + /// dedicated host group. 'UserData' is not supported for dedicated host group. + /// Possible values include: 'instanceView', 'userData', 'resiliencyView' + /// /// /// Headers that will be added to request. /// @@ -508,6 +450,9 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -517,19 +462,30 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (hostGroupName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (hostGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); } string apiVersion = "2024-11-01"; // Tracing @@ -539,23 +495,28 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("hostGroupName", hostGroupName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/hostGroups/{hostGroupName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); - _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 (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -563,7 +524,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -614,7 +575,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -649,13 +610,31 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -664,19 +643,18 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) } /// - /// Retrieves information about a dedicated host group. + /// Create or update a dedicated host group. For details of Dedicated Host and + /// Dedicated Host Groups please see [Dedicated Host Documentation] + /// (https://go.microsoft.com/fwlink/?linkid=2082596) /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' will - /// retrieve the list of instance views of the dedicated hosts under the - /// dedicated host group. 'UserData' is not supported for dedicated host group. - /// Possible values include: 'instanceView', 'userData' + /// + /// Parameters supplied to the Create Dedicated Host Group. /// /// /// Headers that will be added to request. @@ -699,19 +677,38 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, DedicatedHostGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (hostGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); } - if (Client.SubscriptionId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2024-11-01"; // Tracing @@ -721,24 +718,20 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("hostGroupName", hostGroupName); - tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", 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/hostGroups/{hostGroupName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -750,7 +743,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -781,6 +774,12 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -801,7 +800,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -861,6 +860,24 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -869,12 +886,16 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) } /// - /// Lists all of the dedicated host groups in the specified resource group. Use - /// the nextLink property in the response to get the next page of dedicated - /// host groups. + /// Update an dedicated host group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// Parameters supplied to the Update Dedicated Host Group operation. /// /// /// Headers that will be added to request. @@ -897,15 +918,34 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, DedicatedHostGroupUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (hostGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } string apiVersion = "2024-11-01"; // Tracing @@ -915,16 +955,19 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("hostGroupName", hostGroupName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Update", 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/hostGroups").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -937,7 +980,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -968,6 +1011,12 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -1023,7 +1072,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1036,7 +1085,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1056,10 +1105,14 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) } /// - /// Lists all of the dedicated host groups in the subscription. Use the - /// nextLink property in the response to get the next page of dedicated host - /// groups. + /// Delete a dedicated host group. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the dedicated host group. + /// /// /// Headers that will be added to request. /// @@ -1069,9 +1122,6 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1081,12 +1131,31 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (hostGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1096,13 +1165,17 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("hostGroupName", hostGroupName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/hostGroups").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1115,7 +1188,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1166,7 +1239,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1201,31 +1274,13 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1234,9 +1289,9 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) } /// - /// Lists all of the dedicated host groups in the specified resource group. Use - /// the nextLink property in the response to get the next page of dedicated - /// host groups. + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated host + /// groups. /// /// /// The NextLink from the previous successful call to List operation. @@ -1262,7 +1317,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1277,7 +1332,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -1409,9 +1464,9 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) } /// - /// Lists all of the dedicated host groups in the subscription. Use the - /// nextLink property in the response to get the next page of dedicated host - /// groups. + /// Lists all of the dedicated host groups in the specified resource group. Use + /// the nextLink property in the response to get the next page of dedicated + /// host groups. /// /// /// The NextLink from the previous successful call to List operation. @@ -1437,7 +1492,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1452,7 +1507,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostGroupsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostGroupsOperationsExtensions.cs index 1680f78d1880..f218e1c1b8bd 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostGroupsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostGroupsOperationsExtensions.cs @@ -22,226 +22,258 @@ namespace Microsoft.Azure.Management.Compute public static partial class DedicatedHostGroupsOperationsExtensions { /// - /// Create or update a dedicated host group. For details of Dedicated Host and - /// Dedicated Host Groups please see [Dedicated Host Documentation] - /// (https://go.microsoft.com/fwlink/?linkid=2082596) + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated host + /// groups. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the dedicated host group. + public static IPage ListBySubscription(this IDedicatedHostGroupsOperations operations) + { + return operations.ListBySubscriptionAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated host + /// groups. + /// + /// + /// The operations group for this extension method. /// - /// - /// Parameters supplied to the Create Dedicated Host Group. + /// + /// The cancellation token. /// - public static DedicatedHostGroup CreateOrUpdate(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, DedicatedHostGroup parameters) + public static async Task> ListBySubscriptionAsync(this IDedicatedHostGroupsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - return operations.CreateOrUpdateAsync(resourceGroupName, hostGroupName, parameters).GetAwaiter().GetResult(); + using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Create or update a dedicated host group. For details of Dedicated Host and - /// Dedicated Host Groups please see [Dedicated Host Documentation] - /// (https://go.microsoft.com/fwlink/?linkid=2082596) + /// Lists all of the dedicated host groups in the specified resource group. Use + /// the nextLink property in the response to get the next page of dedicated + /// host groups. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The name of the dedicated host group. + public static IPage ListByResourceGroup(this IDedicatedHostGroupsOperations operations, string resourceGroupName) + { + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the dedicated host groups in the specified resource group. Use + /// the nextLink property in the response to get the next page of dedicated + /// host groups. + /// + /// + /// The operations group for this extension method. /// - /// - /// Parameters supplied to the Create Dedicated Host Group. + /// + /// The name of the resource group. The name is case insensitive. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, DedicatedHostGroup parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Update an dedicated host group. + /// Retrieves information about a dedicated host group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// - /// - /// Parameters supplied to the Update Dedicated Host Group operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' will + /// retrieve the list of instance views of the dedicated hosts under the + /// dedicated host group. 'UserData' is not supported for dedicated host group. + /// Possible values include: 'instanceView', 'userData', 'resiliencyView' /// - public static DedicatedHostGroup Update(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, DedicatedHostGroupUpdate parameters) + public static DedicatedHostGroup Get(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, InstanceViewTypes? expand = default(InstanceViewTypes?)) { - return operations.UpdateAsync(resourceGroupName, hostGroupName, parameters).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, hostGroupName, expand).GetAwaiter().GetResult(); } /// - /// Update an dedicated host group. + /// Retrieves information about a dedicated host group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// - /// - /// Parameters supplied to the Update Dedicated Host Group operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' will + /// retrieve the list of instance views of the dedicated hosts under the + /// dedicated host group. 'UserData' is not supported for dedicated host group. + /// Possible values include: 'instanceView', 'userData', 'resiliencyView' /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, DedicatedHostGroupUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, hostGroupName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Delete a dedicated host group. + /// Create or update a dedicated host group. For details of Dedicated Host and + /// Dedicated Host Groups please see [Dedicated Host Documentation] + /// (https://go.microsoft.com/fwlink/?linkid=2082596) /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// - public static void Delete(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName) + /// + /// Parameters supplied to the Create Dedicated Host Group. + /// + public static DedicatedHostGroup CreateOrUpdate(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, DedicatedHostGroup parameters) { - operations.DeleteAsync(resourceGroupName, hostGroupName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, hostGroupName, parameters).GetAwaiter().GetResult(); } /// - /// Delete a dedicated host group. + /// Create or update a dedicated host group. For details of Dedicated Host and + /// Dedicated Host Groups please see [Dedicated Host Documentation] + /// (https://go.microsoft.com/fwlink/?linkid=2082596) /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// + /// + /// Parameters supplied to the Create Dedicated Host Group. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, DedicatedHostGroup parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, hostGroupName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Retrieves information about a dedicated host group. + /// Update an dedicated host group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' will - /// retrieve the list of instance views of the dedicated hosts under the - /// dedicated host group. 'UserData' is not supported for dedicated host group. - /// Possible values include: 'instanceView', 'userData' + /// + /// Parameters supplied to the Update Dedicated Host Group operation. /// - public static DedicatedHostGroup Get(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, InstanceViewTypes? expand = default(InstanceViewTypes?)) + public static DedicatedHostGroup Update(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, DedicatedHostGroupUpdate parameters) { - return operations.GetAsync(resourceGroupName, hostGroupName, expand).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, hostGroupName, parameters).GetAwaiter().GetResult(); } /// - /// Retrieves information about a dedicated host group. + /// Update an dedicated host group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' will - /// retrieve the list of instance views of the dedicated hosts under the - /// dedicated host group. 'UserData' is not supported for dedicated host group. - /// Possible values include: 'instanceView', 'userData' + /// + /// Parameters supplied to the Update Dedicated Host Group operation. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, DedicatedHostGroupUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, hostGroupName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all of the dedicated host groups in the specified resource group. Use - /// the nextLink property in the response to get the next page of dedicated - /// host groups. + /// Delete a dedicated host group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - public static IPage ListByResourceGroup(this IDedicatedHostGroupsOperations operations, string resourceGroupName) + /// + /// The name of the dedicated host group. + /// + public static void Delete(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName) { - return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, hostGroupName).GetAwaiter().GetResult(); } /// - /// Lists all of the dedicated host groups in the specified resource group. Use - /// the nextLink property in the response to get the next page of dedicated - /// host groups. + /// Delete a dedicated host group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the dedicated host group. /// /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, hostGroupName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -252,9 +284,12 @@ public static IPage ListByResourceGroup(this IDedicatedHostG /// /// The operations group for this extension method. /// - public static IPage ListBySubscription(this IDedicatedHostGroupsOperations operations) + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListBySubscriptionNext(this IDedicatedHostGroupsOperations operations, string nextPageLink) { - return operations.ListBySubscriptionAsync().GetAwaiter().GetResult(); + return operations.ListBySubscriptionNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -265,12 +300,15 @@ public static IPage ListBySubscription(this IDedicatedHostGr /// /// The operations group for this extension method. /// + /// + /// The NextLink from the previous successful call to List operation. + /// /// /// The cancellation token. /// - public static async Task> ListBySubscriptionAsync(this IDedicatedHostGroupsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListBySubscriptionNextAsync(this IDedicatedHostGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListBySubscriptionNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -314,43 +352,5 @@ public static IPage ListByResourceGroupNext(this IDedicatedH } } - /// - /// Lists all of the dedicated host groups in the subscription. Use the - /// nextLink property in the response to get the next page of dedicated host - /// groups. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListBySubscriptionNext(this IDedicatedHostGroupsOperations operations, string nextPageLink) - { - return operations.ListBySubscriptionNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Lists all of the dedicated host groups in the subscription. Use the - /// nextLink property in the response to get the next page of dedicated host - /// groups. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListBySubscriptionNextAsync(this IDedicatedHostGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListBySubscriptionNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostsOperations.cs index 28b43518cce5..43020efeb9aa 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostsOperations.cs @@ -51,104 +51,16 @@ internal DedicatedHostsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update a dedicated host . - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the dedicated host group. - /// - /// - /// The name of the dedicated host . - /// - /// - /// Parameters supplied to the Create Dedicated Host. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Update a dedicated host . - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the dedicated host group. - /// - /// - /// The name of the dedicated host . - /// - /// - /// Parameters supplied to the Update Dedicated Host operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Delete a dedicated host. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the dedicated host group. - /// - /// - /// The name of the dedicated host. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Retrieves information about a dedicated host. + /// Lists all of the dedicated hosts in the specified dedicated host group. Use + /// the nextLink property in the response to get the next page of dedicated + /// hosts. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// - /// - /// The name of the dedicated host. - /// - /// - /// The expand expression to apply on the operation. 'InstanceView' will - /// retrieve the list of instance views of the dedicated host. 'UserData' is - /// not supported for dedicated host. Possible values include: 'instanceView', - /// 'userData' - /// /// /// Headers that will be added to request. /// @@ -170,23 +82,30 @@ internal DedicatedHostsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByHostGroupWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (hostGroupName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (hostName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "hostName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (hostGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); } string apiVersion = "2024-11-01"; // Tracing @@ -196,26 +115,19 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("hostGroupName", hostGroupName); - tracingParameters.Add("hostName", hostName); - tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByHostGroup", 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/hostGroups/{hostGroupName}/hosts/{hostName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); - _url = _url.Replace("{hostName}", System.Uri.EscapeDataString(hostName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -313,7 +225,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -326,7 +238,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -346,16 +258,23 @@ internal DedicatedHostsOperations(ComputeManagementClient client) } /// - /// Lists all of the dedicated hosts in the specified dedicated host group. Use - /// the nextLink property in the response to get the next page of dedicated - /// hosts. + /// Retrieves information about a dedicated host. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// + /// + /// The name of the dedicated host. + /// + /// + /// The expand expression to apply on the operation. 'InstanceView' will + /// retrieve the list of instance views of the dedicated host. 'UserData' is + /// not supported for dedicated host. Possible values include: 'instanceView', + /// 'userData', 'resiliencyView' + /// /// /// Headers that will be added to request. /// @@ -377,19 +296,34 @@ internal DedicatedHostsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByHostGroupWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (hostGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); } - if (Client.SubscriptionId == null) + if (hostName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "hostName"); } string apiVersion = "2024-11-01"; // Tracing @@ -399,23 +333,30 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("hostGroupName", hostGroupName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("hostName", hostName); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByHostGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/hostGroups/{hostGroupName}/hosts").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts/{hostName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{hostName}", System.Uri.EscapeDataString(hostName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -509,7 +450,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -522,7 +463,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -542,15 +483,10 @@ internal DedicatedHostsOperations(ComputeManagementClient client) } /// - /// Restart the dedicated host. The operation will complete successfully once - /// the dedicated host has restarted and is running. To determine the health of - /// VMs deployed on the dedicated host after the restart check the Resource - /// Health Center in the Azure Portal. Please refer to - /// https://docs.microsoft.com/azure/service-health/resource-health-overview - /// for more details. + /// Create or update a dedicated host . /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -558,29 +494,27 @@ internal DedicatedHostsOperations(ComputeManagementClient client) /// /// The name of the dedicated host. /// + /// + /// Parameters supplied to the Create Dedicated Host. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task RestartWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - // Send request - AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Redeploy the dedicated host. The operation will complete successfully once - /// the dedicated host has migrated to a new node and is running. To determine - /// the health of VMs deployed on the dedicated host after the redeploy check - /// the Resource Health Center in the Azure Portal. Please refer to - /// https://docs.microsoft.com/azure/service-health/resource-health-overview - /// for more details. + /// Update a dedicated host . /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -588,16 +522,44 @@ internal DedicatedHostsOperations(ComputeManagementClient client) /// /// The name of the dedicated host. /// + /// + /// Parameters supplied to the Update Dedicated Host operation. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task> RedeployWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete a dedicated host. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationHeaderResponse _response = await BeginRedeployWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -607,7 +569,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) /// only scale up the existing dedicated host. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -638,35 +600,32 @@ internal DedicatedHostsOperations(ComputeManagementClient client) /// public async Task>> ListAvailableSizesWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (hostGroupName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (hostGroupName != null) + if (resourceGroupName != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(hostGroupName, "^[-\\w\\._]+$")) + if (resourceGroupName.Length > 90) { - throw new ValidationException(ValidationRules.Pattern, "hostGroupName", "^[-\\w\\._]+$"); + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); } - } - if (hostName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "hostName"); - } - if (hostName != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(hostName, "^[-\\w\\._]+$")) + if (resourceGroupName.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "hostName", "^[-\\w\\._]+$"); + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); } } - if (Client.SubscriptionId == null) + if (hostGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } + if (hostName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostName"); } string apiVersion = "2024-11-01"; // Tracing @@ -676,20 +635,20 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("hostGroupName", hostGroupName); tracingParameters.Add("hostName", hostName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListAvailableSizes", 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/hostGroups/{hostGroupName}/hosts/{hostName}/hostSizes").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); _url = _url.Replace("{hostName}", System.Uri.EscapeDataString(hostName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -820,17 +779,77 @@ internal DedicatedHostsOperations(ComputeManagementClient client) return _result; } + /// + /// Redeploy the dedicated host. The operation will complete successfully once + /// the dedicated host has migrated to a new node and is running. To determine + /// the health of VMs deployed on the dedicated host after the redeploy check + /// the Resource Health Center in the Azure Portal. Please refer to + /// https://docs.microsoft.com/azure/service-health/resource-health-overview + /// for more details. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> RedeployWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationHeaderResponse _response = await BeginRedeployWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Restart the dedicated host. The operation will complete successfully once + /// the dedicated host has restarted and is running. To determine the health of + /// VMs deployed on the dedicated host after the restart check the Resource + /// Health Center in the Azure Portal. Please refer to + /// https://docs.microsoft.com/azure/service-health/resource-health-overview + /// for more details. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> RestartWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationHeaderResponse _response = await BeginRestartWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Create or update a dedicated host . /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// /// - /// The name of the dedicated host . + /// The name of the dedicated host. /// /// /// Parameters supplied to the Create Dedicated Host. @@ -856,12 +875,27 @@ internal DedicatedHostsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (hostGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); @@ -878,10 +912,6 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { parameters.Validate(); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -890,21 +920,21 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("hostGroupName", hostGroupName); tracingParameters.Add("hostName", hostName); tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", 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/hostGroups/{hostGroupName}/hosts/{hostName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); _url = _url.Replace("{hostName}", System.Uri.EscapeDataString(hostName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1009,7 +1039,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1052,6 +1082,19 @@ internal DedicatedHostsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1063,13 +1106,13 @@ internal DedicatedHostsOperations(ComputeManagementClient client) /// Update a dedicated host . /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// /// - /// The name of the dedicated host . + /// The name of the dedicated host. /// /// /// Parameters supplied to the Update Dedicated Host operation. @@ -1095,12 +1138,27 @@ internal DedicatedHostsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (hostGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); @@ -1113,10 +1171,6 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1125,21 +1179,21 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("hostGroupName", hostGroupName); tracingParameters.Add("hostName", hostName); tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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/hostGroups/{hostGroupName}/hosts/{hostName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); _url = _url.Replace("{hostName}", System.Uri.EscapeDataString(hostName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1244,7 +1298,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1269,6 +1323,19 @@ internal DedicatedHostsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1280,7 +1347,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) /// Delete a dedicated host. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -1308,10 +1375,25 @@ internal DedicatedHostsOperations(ComputeManagementClient client) /// public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (hostGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); @@ -1320,10 +1402,6 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "hostName"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1332,20 +1410,20 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("hostGroupName", hostGroupName); tracingParameters.Add("hostName", hostName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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/hostGroups/{hostGroupName}/hosts/{hostName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); _url = _url.Replace("{hostName}", System.Uri.EscapeDataString(hostName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1459,15 +1537,15 @@ internal DedicatedHostsOperations(ComputeManagementClient client) } /// - /// Restart the dedicated host. The operation will complete successfully once - /// the dedicated host has restarted and is running. To determine the health of - /// VMs deployed on the dedicated host after the restart check the Resource - /// Health Center in the Azure Portal. Please refer to + /// Redeploy the dedicated host. The operation will complete successfully once + /// the dedicated host has migrated to a new node and is running. To determine + /// the health of VMs deployed on the dedicated host after the redeploy check + /// the Resource Health Center in the Azure Portal. Please refer to /// https://docs.microsoft.com/azure/service-health/resource-health-overview /// for more details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -1493,12 +1571,27 @@ internal DedicatedHostsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (hostGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); @@ -1507,10 +1600,6 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "hostName"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1519,20 +1608,20 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("hostGroupName", hostGroupName); tracingParameters.Add("hostName", hostName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginRedeploy", 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/hostGroups/{hostGroupName}/hosts/{hostName}/restart").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts/{hostName}/redeploy").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); _url = _url.Replace("{hostName}", System.Uri.EscapeDataString(hostName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1596,7 +1685,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1631,13 +1720,26 @@ internal DedicatedHostsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + 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); @@ -1646,15 +1748,15 @@ internal DedicatedHostsOperations(ComputeManagementClient client) } /// - /// Redeploy the dedicated host. The operation will complete successfully once - /// the dedicated host has migrated to a new node and is running. To determine - /// the health of VMs deployed on the dedicated host after the redeploy check - /// the Resource Health Center in the Azure Portal. Please refer to + /// Restart the dedicated host. The operation will complete successfully once + /// the dedicated host has restarted and is running. To determine the health of + /// VMs deployed on the dedicated host after the restart check the Resource + /// Health Center in the Azure Portal. Please refer to /// https://docs.microsoft.com/azure/service-health/resource-health-overview /// for more details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -1680,37 +1782,34 @@ internal DedicatedHostsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginRestartWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (hostGroupName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (hostGroupName != null) + if (resourceGroupName != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(hostGroupName, "^[-\\w\\._]+$")) + if (resourceGroupName.Length > 90) { - throw new ValidationException(ValidationRules.Pattern, "hostGroupName", "^[-\\w\\._]+$"); + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); } - } - if (hostName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "hostName"); - } - if (hostName != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(hostName, "^[-\\w\\._]+$")) + if (resourceGroupName.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "hostName", "^[-\\w\\._]+$"); + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); } } - if (Client.SubscriptionId == null) + if (hostGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } + if (hostName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostName"); } string apiVersion = "2024-11-01"; // Tracing @@ -1720,20 +1819,20 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("hostGroupName", hostGroupName); tracingParameters.Add("hostName", hostName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRedeploy", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", 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/hostGroups/{hostGroupName}/hosts/{hostName}/redeploy").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts/{hostName}/restart").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); _url = _url.Replace("{hostName}", System.Uri.EscapeDataString(hostName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1797,7 +1896,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1832,7 +1931,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationHeaderResponse(); + var _result = new AzureOperationHeaderResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1841,7 +1940,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) } try { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); } catch (JsonException ex) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostsOperationsExtensions.cs index 74352144570a..132ede4ed834 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/DedicatedHostsOperationsExtensions.cs @@ -24,117 +24,115 @@ namespace Microsoft.Azure.Management.Compute public static partial class DedicatedHostsOperationsExtensions { /// - /// Create or update a dedicated host . + /// Lists all of the dedicated hosts in the specified dedicated host group. Use + /// the nextLink property in the response to get the next page of dedicated + /// hosts. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// - /// - /// The name of the dedicated host . - /// - /// - /// Parameters supplied to the Create Dedicated Host. - /// - public static DedicatedHost CreateOrUpdate(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters) + public static IPage ListByHostGroup(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName) { - return operations.CreateOrUpdateAsync(resourceGroupName, hostGroupName, hostName, parameters).GetAwaiter().GetResult(); + return operations.ListByHostGroupAsync(resourceGroupName, hostGroupName).GetAwaiter().GetResult(); } /// - /// Create or update a dedicated host . + /// Lists all of the dedicated hosts in the specified dedicated host group. Use + /// the nextLink property in the response to get the next page of dedicated + /// hosts. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// - /// - /// The name of the dedicated host . - /// - /// - /// Parameters supplied to the Create Dedicated Host. - /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByHostGroupAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByHostGroupWithHttpMessagesAsync(resourceGroupName, hostGroupName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Update a dedicated host . + /// Retrieves information about a dedicated host. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// /// - /// The name of the dedicated host . + /// The name of the dedicated host. /// - /// - /// Parameters supplied to the Update Dedicated Host operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' will + /// retrieve the list of instance views of the dedicated host. 'UserData' is + /// not supported for dedicated host. Possible values include: 'instanceView', + /// 'userData', 'resiliencyView' /// - public static DedicatedHost Update(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters) + public static DedicatedHost Get(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, InstanceViewTypes? expand = default(InstanceViewTypes?)) { - return operations.UpdateAsync(resourceGroupName, hostGroupName, hostName, parameters).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, hostGroupName, hostName, expand).GetAwaiter().GetResult(); } /// - /// Update a dedicated host . + /// Retrieves information about a dedicated host. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// /// - /// The name of the dedicated host . + /// The name of the dedicated host. /// - /// - /// Parameters supplied to the Update Dedicated Host operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' will + /// retrieve the list of instance views of the dedicated host. 'UserData' is + /// not supported for dedicated host. Possible values include: 'instanceView', + /// 'userData', 'resiliencyView' /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Delete a dedicated host. + /// Create or update a dedicated host . /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -142,19 +140,22 @@ public static DedicatedHost Update(this IDedicatedHostsOperations operations, st /// /// The name of the dedicated host. /// - public static void Delete(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) + /// + /// Parameters supplied to the Create Dedicated Host. + /// + public static DedicatedHost CreateOrUpdate(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters) { - operations.DeleteAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, hostGroupName, hostName, parameters).GetAwaiter().GetResult(); } /// - /// Delete a dedicated host. + /// Create or update a dedicated host . /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -162,22 +163,28 @@ public static void Delete(this IDedicatedHostsOperations operations, string reso /// /// The name of the dedicated host. /// + /// + /// Parameters supplied to the Create Dedicated Host. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Retrieves information about a dedicated host. + /// Update a dedicated host . /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -185,25 +192,22 @@ public static void Delete(this IDedicatedHostsOperations operations, string reso /// /// The name of the dedicated host. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' will - /// retrieve the list of instance views of the dedicated host. 'UserData' is - /// not supported for dedicated host. Possible values include: 'instanceView', - /// 'userData' + /// + /// Parameters supplied to the Update Dedicated Host operation. /// - public static DedicatedHost Get(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, InstanceViewTypes? expand = default(InstanceViewTypes?)) + public static DedicatedHost Update(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters) { - return operations.GetAsync(resourceGroupName, hostGroupName, hostName, expand).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, hostGroupName, hostName, parameters).GetAwaiter().GetResult(); } /// - /// Retrieves information about a dedicated host. + /// Update a dedicated host . /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -211,80 +215,73 @@ public static void Delete(this IDedicatedHostsOperations operations, string reso /// /// The name of the dedicated host. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' will - /// retrieve the list of instance views of the dedicated host. 'UserData' is - /// not supported for dedicated host. Possible values include: 'instanceView', - /// 'userData' + /// + /// Parameters supplied to the Update Dedicated Host operation. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all of the dedicated hosts in the specified dedicated host group. Use - /// the nextLink property in the response to get the next page of dedicated - /// hosts. + /// Delete a dedicated host. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// - public static IPage ListByHostGroup(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName) + /// + /// The name of the dedicated host. + /// + public static void Delete(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) { - return operations.ListByHostGroupAsync(resourceGroupName, hostGroupName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); } /// - /// Lists all of the dedicated hosts in the specified dedicated host group. Use - /// the nextLink property in the response to get the next page of dedicated - /// hosts. + /// Delete a dedicated host. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// + /// + /// The name of the dedicated host. + /// /// /// The cancellation token. /// - public static async Task> ListByHostGroupAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByHostGroupWithHttpMessagesAsync(resourceGroupName, hostGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Restart the dedicated host. The operation will complete successfully once - /// the dedicated host has restarted and is running. To determine the health of - /// VMs deployed on the dedicated host after the restart check the Resource - /// Health Center in the Azure Portal. Please refer to - /// https://docs.microsoft.com/azure/service-health/resource-health-overview - /// for more details. + /// Lists all available dedicated host sizes to which the specified dedicated + /// host can be resized. NOTE: The dedicated host sizes provided can be used to + /// only scale up the existing dedicated host. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -292,24 +289,21 @@ public static IPage ListByHostGroup(this IDedicatedHostsOperation /// /// The name of the dedicated host. /// - public static void Restart(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) + public static IEnumerable ListAvailableSizes(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) { - operations.RestartAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); + return operations.ListAvailableSizesAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); } /// - /// Restart the dedicated host. The operation will complete successfully once - /// the dedicated host has restarted and is running. To determine the health of - /// VMs deployed on the dedicated host after the restart check the Resource - /// Health Center in the Azure Portal. Please refer to - /// https://docs.microsoft.com/azure/service-health/resource-health-overview - /// for more details. + /// Lists all available dedicated host sizes to which the specified dedicated + /// host can be resized. NOTE: The dedicated host sizes provided can be used to + /// only scale up the existing dedicated host. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -320,9 +314,12 @@ public static void Restart(this IDedicatedHostsOperations operations, string res /// /// The cancellation token. /// - public static async Task RestartAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAvailableSizesAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.RestartWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.ListAvailableSizesWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// @@ -337,7 +334,7 @@ public static void Restart(this IDedicatedHostsOperations operations, string res /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -362,7 +359,7 @@ public static DedicatedHostsRedeployHeaders Redeploy(this IDedicatedHostsOperati /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -382,15 +379,18 @@ public static DedicatedHostsRedeployHeaders Redeploy(this IDedicatedHostsOperati } /// - /// Lists all available dedicated host sizes to which the specified dedicated - /// host can be resized. NOTE: The dedicated host sizes provided can be used to - /// only scale up the existing dedicated host. + /// Restart the dedicated host. The operation will complete successfully once + /// the dedicated host has restarted and is running. To determine the health of + /// VMs deployed on the dedicated host after the restart check the Resource + /// Health Center in the Azure Portal. Please refer to + /// https://docs.microsoft.com/azure/service-health/resource-health-overview + /// for more details. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -398,21 +398,24 @@ public static DedicatedHostsRedeployHeaders Redeploy(this IDedicatedHostsOperati /// /// The name of the dedicated host. /// - public static IEnumerable ListAvailableSizes(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) + public static DedicatedHostsRestartHeaders Restart(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) { - return operations.ListAvailableSizesAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); + return operations.RestartAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); } /// - /// Lists all available dedicated host sizes to which the specified dedicated - /// host can be resized. NOTE: The dedicated host sizes provided can be used to - /// only scale up the existing dedicated host. + /// Restart the dedicated host. The operation will complete successfully once + /// the dedicated host has restarted and is running. To determine the health of + /// VMs deployed on the dedicated host after the restart check the Resource + /// Health Center in the Azure Portal. Please refer to + /// https://docs.microsoft.com/azure/service-health/resource-health-overview + /// for more details. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -423,11 +426,11 @@ public static IEnumerable ListAvailableSizes(this IDedicatedHostsOperati /// /// The cancellation token. /// - public static async Task> ListAvailableSizesAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RestartAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListAvailableSizesWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.RestartWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)) { - return _result.Body; + return _result.Headers; } } @@ -438,13 +441,13 @@ public static IEnumerable ListAvailableSizes(this IDedicatedHostsOperati /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// /// - /// The name of the dedicated host . + /// The name of the dedicated host. /// /// /// Parameters supplied to the Create Dedicated Host. @@ -461,13 +464,13 @@ public static DedicatedHost BeginCreateOrUpdate(this IDedicatedHostsOperations o /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// /// - /// The name of the dedicated host . + /// The name of the dedicated host. /// /// /// Parameters supplied to the Create Dedicated Host. @@ -490,13 +493,13 @@ public static DedicatedHost BeginCreateOrUpdate(this IDedicatedHostsOperations o /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// /// - /// The name of the dedicated host . + /// The name of the dedicated host. /// /// /// Parameters supplied to the Update Dedicated Host operation. @@ -513,13 +516,13 @@ public static DedicatedHost BeginUpdate(this IDedicatedHostsOperations operation /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// /// - /// The name of the dedicated host . + /// The name of the dedicated host. /// /// /// Parameters supplied to the Update Dedicated Host operation. @@ -542,7 +545,7 @@ public static DedicatedHost BeginUpdate(this IDedicatedHostsOperations operation /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -562,7 +565,7 @@ public static void BeginDelete(this IDedicatedHostsOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -579,10 +582,10 @@ public static void BeginDelete(this IDedicatedHostsOperations operations, string } /// - /// Restart the dedicated host. The operation will complete successfully once - /// the dedicated host has restarted and is running. To determine the health of - /// VMs deployed on the dedicated host after the restart check the Resource - /// Health Center in the Azure Portal. Please refer to + /// Redeploy the dedicated host. The operation will complete successfully once + /// the dedicated host has migrated to a new node and is running. To determine + /// the health of VMs deployed on the dedicated host after the redeploy check + /// the Resource Health Center in the Azure Portal. Please refer to /// https://docs.microsoft.com/azure/service-health/resource-health-overview /// for more details. /// @@ -590,7 +593,7 @@ public static void BeginDelete(this IDedicatedHostsOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -598,16 +601,16 @@ public static void BeginDelete(this IDedicatedHostsOperations operations, string /// /// The name of the dedicated host. /// - public static void BeginRestart(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) + public static DedicatedHostsRedeployHeaders BeginRedeploy(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) { - operations.BeginRestartAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); + return operations.BeginRedeployAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); } /// - /// Restart the dedicated host. The operation will complete successfully once - /// the dedicated host has restarted and is running. To determine the health of - /// VMs deployed on the dedicated host after the restart check the Resource - /// Health Center in the Azure Portal. Please refer to + /// Redeploy the dedicated host. The operation will complete successfully once + /// the dedicated host has migrated to a new node and is running. To determine + /// the health of VMs deployed on the dedicated host after the redeploy check + /// the Resource Health Center in the Azure Portal. Please refer to /// https://docs.microsoft.com/azure/service-health/resource-health-overview /// for more details. /// @@ -615,7 +618,7 @@ public static void BeginRestart(this IDedicatedHostsOperations operations, strin /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -626,16 +629,19 @@ public static void BeginRestart(this IDedicatedHostsOperations operations, strin /// /// The cancellation token. /// - public static async Task BeginRestartAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginRedeployAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.BeginRedeployWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Headers; + } } /// - /// Redeploy the dedicated host. The operation will complete successfully once - /// the dedicated host has migrated to a new node and is running. To determine - /// the health of VMs deployed on the dedicated host after the redeploy check - /// the Resource Health Center in the Azure Portal. Please refer to + /// Restart the dedicated host. The operation will complete successfully once + /// the dedicated host has restarted and is running. To determine the health of + /// VMs deployed on the dedicated host after the restart check the Resource + /// Health Center in the Azure Portal. Please refer to /// https://docs.microsoft.com/azure/service-health/resource-health-overview /// for more details. /// @@ -643,7 +649,7 @@ public static void BeginRestart(this IDedicatedHostsOperations operations, strin /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -651,16 +657,16 @@ public static void BeginRestart(this IDedicatedHostsOperations operations, strin /// /// The name of the dedicated host. /// - public static DedicatedHostsRedeployHeaders BeginRedeploy(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) + public static DedicatedHostsRestartHeaders BeginRestart(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) { - return operations.BeginRedeployAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); + return operations.BeginRestartAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); } /// - /// Redeploy the dedicated host. The operation will complete successfully once - /// the dedicated host has migrated to a new node and is running. To determine - /// the health of VMs deployed on the dedicated host after the redeploy check - /// the Resource Health Center in the Azure Portal. Please refer to + /// Restart the dedicated host. The operation will complete successfully once + /// the dedicated host has restarted and is running. To determine the health of + /// VMs deployed on the dedicated host after the restart check the Resource + /// Health Center in the Azure Portal. Please refer to /// https://docs.microsoft.com/azure/service-health/resource-health-overview /// for more details. /// @@ -668,7 +674,7 @@ public static DedicatedHostsRedeployHeaders BeginRedeploy(this IDedicatedHostsOp /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -679,9 +685,9 @@ public static DedicatedHostsRedeployHeaders BeginRedeploy(this IDedicatedHostsOp /// /// The cancellation token. /// - public static async Task BeginRedeployAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginRestartAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginRedeployWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)) { return _result.Headers; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/DiskAccessesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/DiskAccessesOperations.cs index a884a9c05192..59bed8ba735c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/DiskAccessesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/DiskAccessesOperations.cs @@ -51,73 +51,8 @@ internal DiskAccessesOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Creates or updates a disk access resource - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk access resource that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// disk access object supplied in the body of the Put disk access operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, DiskAccess diskAccess, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, diskAccessName, diskAccess, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Updates (patches) a disk access resource. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk access resource that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// Resource tags - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, diskAccessName, tags, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets information about a disk access resource. + /// Lists all the disk access resources under a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk access resource that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// /// /// Headers that will be added to request. /// @@ -139,21 +74,13 @@ internal DiskAccessesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (diskAccessName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "diskAccessName"); - } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -161,18 +88,14 @@ internal DiskAccessesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("diskAccessName", diskAccessName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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/diskAccesses/{diskAccessName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/diskAccesses").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{diskAccessName}", System.Uri.EscapeDataString(diskAccessName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -271,7 +194,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -284,7 +207,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -303,36 +226,11 @@ internal DiskAccessesOperations(ComputeManagementClient client) return _result; } - /// - /// Deletes a disk access resource. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk access resource that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, diskAccessName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// Lists all the disk access resources under a resource group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -365,7 +263,18 @@ internal DiskAccessesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - string apiVersion = "2024-03-02"; + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -373,8 +282,8 @@ internal DiskAccessesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } @@ -514,8 +423,17 @@ internal DiskAccessesOperations(ComputeManagementClient client) } /// - /// Lists all the disk access resources under a subscription. + /// Gets information about a disk access resource. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk access resource that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// /// /// Headers that will be added to request. /// @@ -537,13 +455,32 @@ internal DiskAccessesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2024-03-02"; + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (diskAccessName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "diskAccessName"); + } + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -552,13 +489,17 @@ internal DiskAccessesOperations(ComputeManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("diskAccessName", diskAccessName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/diskAccesses").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskAccesses/{diskAccessName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{diskAccessName}", System.Uri.EscapeDataString(diskAccessName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -657,7 +598,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -670,7 +611,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -690,10 +631,92 @@ internal DiskAccessesOperations(ComputeManagementClient client) } /// - /// Gets the private link resources possible under disk access resource + /// Creates or updates a disk access resource + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk access resource that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + /// + /// disk access object supplied in the body of the Put disk access operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, DiskAccess diskAccess, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, diskAccessName, diskAccess, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Updates (patches) a disk access resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk access resource that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + /// + /// Resource tags + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, diskAccessName, tags, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a disk access resource. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk access resource that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, diskAccessName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// List information about private endpoint connections under a disk access + /// resource + /// + /// + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -722,7 +745,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetPrivateLinkResourcesWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListPrivateEndpointConnectionsWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -732,11 +755,22 @@ internal DiskAccessesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskAccessName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskAccessName"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -744,15 +778,15 @@ internal DiskAccessesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskAccessName", diskAccessName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetPrivateLinkResources", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListPrivateEndpointConnections", 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/diskAccesses/{diskAccessName}/privateLinkResources").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskAccesses/{diskAccessName}/privateEndpointConnections").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{diskAccessName}", System.Uri.EscapeDataString(diskAccessName)); @@ -854,7 +888,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -867,7 +901,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -886,45 +920,12 @@ internal DiskAccessesOperations(ComputeManagementClient client) return _result; } - /// - /// Approve or reject a private endpoint connection under disk access resource, - /// this can't be used to create a new private endpoint connection. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk access resource that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// The name of the private endpoint connection. - /// - /// - /// private endpoint connection object supplied in the body of the Put private - /// endpoint connection operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateAPrivateEndpointConnectionWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateEndpointConnection privateEndpointConnection, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateAPrivateEndpointConnectionWithHttpMessagesAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName, privateEndpointConnection, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// Gets information about a private endpoint connection under a disk access /// resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -966,6 +967,17 @@ internal DiskAccessesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskAccessName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskAccessName"); @@ -974,7 +986,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "privateEndpointConnectionName"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -982,10 +994,10 @@ internal DiskAccessesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskAccessName", diskAccessName); tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GetAPrivateEndpointConnection", tracingParameters); } @@ -1126,11 +1138,44 @@ internal DiskAccessesOperations(ComputeManagementClient client) return _result; } + /// + /// Approve or reject a private endpoint connection under disk access resource, + /// this can't be used to create a new private endpoint connection. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk access resource that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// A collection of information about the state of the connection between + /// DiskAccess and Virtual Network. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateAPrivateEndpointConnectionWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateAPrivateEndpointConnectionWithHttpMessagesAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName, privateLinkServiceConnectionState, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Deletes a private endpoint connection under a disk access resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -1155,11 +1200,10 @@ internal DiskAccessesOperations(ComputeManagementClient client) } /// - /// List information about private endpoint connections under a disk access - /// resource + /// Gets the private link resources possible under disk access resource /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -1188,7 +1232,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListPrivateEndpointConnectionsWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetPrivateLinkResourcesWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -1198,11 +1242,22 @@ internal DiskAccessesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskAccessName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskAccessName"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1210,15 +1265,15 @@ internal DiskAccessesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskAccessName", diskAccessName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListPrivateEndpointConnections", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetPrivateLinkResources", 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/diskAccesses/{diskAccessName}/privateEndpointConnections").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskAccesses/{diskAccessName}/privatelinkresources").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{diskAccessName}", System.Uri.EscapeDataString(diskAccessName)); @@ -1320,7 +1375,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1333,7 +1388,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1356,7 +1411,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) /// Creates or updates a disk access resource /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -1398,6 +1453,17 @@ internal DiskAccessesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskAccessName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskAccessName"); @@ -1410,7 +1476,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) { diskAccess.Validate(); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1418,9 +1484,9 @@ internal DiskAccessesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskAccessName", diskAccessName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("diskAccess", diskAccess); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); @@ -1560,24 +1626,6 @@ internal DiskAccessesOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1589,7 +1637,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) /// Updates (patches) a disk access resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -1631,11 +1679,22 @@ internal DiskAccessesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskAccessName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskAccessName"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; DiskAccessUpdate diskAccess = new DiskAccessUpdate(); if (tags != null) { @@ -1648,9 +1707,9 @@ internal DiskAccessesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskAccessName", diskAccessName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("diskAccess", diskAccess); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); @@ -1790,24 +1849,6 @@ internal DiskAccessesOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1819,7 +1860,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) /// Deletes a disk access resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -1855,11 +1896,22 @@ internal DiskAccessesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskAccessName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskAccessName"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1867,9 +1919,9 @@ internal DiskAccessesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskAccessName", diskAccessName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } @@ -1996,7 +2048,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) /// this can't be used to create a new private endpoint connection. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -2007,9 +2059,9 @@ internal DiskAccessesOperations(ComputeManagementClient client) /// /// The name of the private endpoint connection. /// - /// - /// private endpoint connection object supplied in the body of the Put private - /// endpoint connection operation. + /// + /// A collection of information about the state of the connection between + /// DiskAccess and Virtual Network. /// /// /// Headers that will be added to request. @@ -2032,7 +2084,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateAPrivateEndpointConnectionWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateEndpointConnection privateEndpointConnection, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateAPrivateEndpointConnectionWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -2042,6 +2094,17 @@ internal DiskAccessesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskAccessName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskAccessName"); @@ -2050,15 +2113,16 @@ internal DiskAccessesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "privateEndpointConnectionName"); } - if (privateEndpointConnection == null) + if (privateLinkServiceConnectionState == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "privateEndpointConnection"); + throw new ValidationException(ValidationRules.CannotBeNull, "privateLinkServiceConnectionState"); } - if (privateEndpointConnection != null) + string apiVersion = "2025-01-02"; + PrivateEndpointConnection privateEndpointConnection = new PrivateEndpointConnection(); + if (privateLinkServiceConnectionState != null) { - privateEndpointConnection.Validate(); + privateEndpointConnection.PrivateLinkServiceConnectionState = privateLinkServiceConnectionState; } - string apiVersion = "2024-03-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2066,10 +2130,10 @@ internal DiskAccessesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskAccessName", diskAccessName); tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("privateEndpointConnection", privateEndpointConnection); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdateAPrivateEndpointConnection", tracingParameters); @@ -2210,24 +2274,6 @@ internal DiskAccessesOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -2239,7 +2285,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) /// Deletes a private endpoint connection under a disk access resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -2278,6 +2324,17 @@ internal DiskAccessesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskAccessName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskAccessName"); @@ -2286,7 +2343,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "privateEndpointConnectionName"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2294,10 +2351,10 @@ internal DiskAccessesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskAccessName", diskAccessName); tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteAPrivateEndpointConnection", tracingParameters); } @@ -2421,7 +2478,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) } /// - /// Lists all the disk access resources under a resource group. + /// Lists all the disk access resources under a subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -2447,7 +2504,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -2462,7 +2519,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -2594,7 +2651,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) } /// - /// Lists all the disk access resources under a subscription. + /// Lists all the disk access resources under a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -2620,7 +2677,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -2635,7 +2692,7 @@ internal DiskAccessesOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/Compute/Compute.Management.Sdk/Generated/DiskAccessesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/DiskAccessesOperationsExtensions.cs index 6dc3053e26ef..5b1f582c4a9c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/DiskAccessesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/DiskAccessesOperationsExtensions.cs @@ -24,104 +24,62 @@ namespace Microsoft.Azure.Management.Compute public static partial class DiskAccessesOperationsExtensions { /// - /// Creates or updates a disk access resource + /// Lists all the disk access resources under a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk access resource that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// disk access object supplied in the body of the Put disk access operation. - /// - public static DiskAccess CreateOrUpdate(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, DiskAccess diskAccess) + public static IPage List(this IDiskAccessesOperations operations) { - return operations.CreateOrUpdateAsync(resourceGroupName, diskAccessName, diskAccess).GetAwaiter().GetResult(); + return operations.ListAsync().GetAwaiter().GetResult(); } /// - /// Creates or updates a disk access resource + /// Lists all the disk access resources under a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk access resource that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// disk access object supplied in the body of the Put disk access operation. - /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, DiskAccess diskAccess, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IDiskAccessesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, diskAccessName, diskAccess, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Updates (patches) a disk access resource. + /// Lists all the disk access resources under a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the disk access resource that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// Resource tags + /// The name of the resource group. The name is case insensitive. /// - public static DiskAccess Update(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, IDictionary tags = default(IDictionary)) + public static IPage ListByResourceGroup(this IDiskAccessesOperations operations, string resourceGroupName) { - return operations.UpdateAsync(resourceGroupName, diskAccessName, tags).GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); } /// - /// Updates (patches) a disk access resource. + /// Lists all the disk access resources under a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the disk access resource that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// Resource tags + /// The name of the resource group. The name is case insensitive. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IDiskAccessesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, diskAccessName, tags, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -134,7 +92,7 @@ public static DiskAccess CreateOrUpdate(this IDiskAccessesOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -154,7 +112,7 @@ public static DiskAccess Get(this IDiskAccessesOperations operations, string res /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -174,13 +132,13 @@ public static DiskAccess Get(this IDiskAccessesOperations operations, string res } /// - /// Deletes a disk access resource. + /// Creates or updates a disk access resource /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -188,19 +146,22 @@ public static DiskAccess Get(this IDiskAccessesOperations operations, string res /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 /// characters. /// - public static void Delete(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName) + /// + /// disk access object supplied in the body of the Put disk access operation. + /// + public static DiskAccess CreateOrUpdate(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, DiskAccess diskAccess) { - operations.DeleteAsync(resourceGroupName, diskAccessName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, diskAccessName, diskAccess).GetAwaiter().GetResult(); } /// - /// Deletes a disk access resource. + /// Creates or updates a disk access resource /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -208,84 +169,124 @@ public static void Delete(this IDiskAccessesOperations operations, string resour /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 /// characters. /// + /// + /// disk access object supplied in the body of the Put disk access operation. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, DiskAccess diskAccess, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, diskAccessName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, diskAccessName, diskAccess, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Lists all the disk access resources under a resource group. + /// Updates (patches) a disk access resource. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - public static IPage ListByResourceGroup(this IDiskAccessesOperations operations, string resourceGroupName) + /// + /// The name of the disk access resource that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + /// + /// Resource tags + /// + public static DiskAccess Update(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, IDictionary tags = default(IDictionary)) { - return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, diskAccessName, tags).GetAwaiter().GetResult(); } /// - /// Lists all the disk access resources under a resource group. + /// Updates (patches) a disk access resource. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk access resource that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + /// + /// Resource tags /// /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IDiskAccessesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, diskAccessName, tags, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all the disk access resources under a subscription. + /// Deletes a disk access resource. /// /// /// The operations group for this extension method. /// - public static IPage List(this IDiskAccessesOperations operations) + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk access resource that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + public static void Delete(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName) { - return operations.ListAsync().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, diskAccessName).GetAwaiter().GetResult(); } /// - /// Lists all the disk access resources under a subscription. + /// Deletes a disk access resource. /// /// /// The operations group for this extension method. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk access resource that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IDiskAccessesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, diskAccessName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Gets the private link resources possible under disk access resource + /// List information about private endpoint connections under a disk access + /// resource /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -293,19 +294,20 @@ public static IPage List(this IDiskAccessesOperations operations) /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 /// characters. /// - public static PrivateLinkResourceListResult GetPrivateLinkResources(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName) + public static IPage ListPrivateEndpointConnections(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName) { - return operations.GetPrivateLinkResourcesAsync(resourceGroupName, diskAccessName).GetAwaiter().GetResult(); + return operations.ListPrivateEndpointConnectionsAsync(resourceGroupName, diskAccessName).GetAwaiter().GetResult(); } /// - /// Gets the private link resources possible under disk access resource + /// List information about private endpoint connections under a disk access + /// resource /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -316,23 +318,23 @@ public static PrivateLinkResourceListResult GetPrivateLinkResources(this IDiskAc /// /// The cancellation token. /// - public static async Task GetPrivateLinkResourcesAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListPrivateEndpointConnectionsAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetPrivateLinkResourcesWithHttpMessagesAsync(resourceGroupName, diskAccessName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListPrivateEndpointConnectionsWithHttpMessagesAsync(resourceGroupName, diskAccessName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Approve or reject a private endpoint connection under disk access resource, - /// this can't be used to create a new private endpoint connection. + /// Gets information about a private endpoint connection under a disk access + /// resource. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -343,24 +345,20 @@ public static PrivateLinkResourceListResult GetPrivateLinkResources(this IDiskAc /// /// The name of the private endpoint connection. /// - /// - /// private endpoint connection object supplied in the body of the Put private - /// endpoint connection operation. - /// - public static PrivateEndpointConnection UpdateAPrivateEndpointConnection(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateEndpointConnection privateEndpointConnection) + public static PrivateEndpointConnection GetAPrivateEndpointConnection(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, string privateEndpointConnectionName) { - return operations.UpdateAPrivateEndpointConnectionAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName, privateEndpointConnection).GetAwaiter().GetResult(); + return operations.GetAPrivateEndpointConnectionAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName).GetAwaiter().GetResult(); } /// - /// Approve or reject a private endpoint connection under disk access resource, - /// this can't be used to create a new private endpoint connection. + /// Gets information about a private endpoint connection under a disk access + /// resource. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -371,30 +369,26 @@ public static PrivateEndpointConnection UpdateAPrivateEndpointConnection(this ID /// /// The name of the private endpoint connection. /// - /// - /// private endpoint connection object supplied in the body of the Put private - /// endpoint connection operation. - /// /// /// The cancellation token. /// - public static async Task UpdateAPrivateEndpointConnectionAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateEndpointConnection privateEndpointConnection, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPrivateEndpointConnectionAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateAPrivateEndpointConnectionWithHttpMessagesAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName, privateEndpointConnection, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPrivateEndpointConnectionWithHttpMessagesAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets information about a private endpoint connection under a disk access - /// resource. + /// Approve or reject a private endpoint connection under disk access resource, + /// this can't be used to create a new private endpoint connection. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -405,20 +399,24 @@ public static PrivateEndpointConnection UpdateAPrivateEndpointConnection(this ID /// /// The name of the private endpoint connection. /// - public static PrivateEndpointConnection GetAPrivateEndpointConnection(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, string privateEndpointConnectionName) + /// + /// A collection of information about the state of the connection between + /// DiskAccess and Virtual Network. + /// + public static PrivateEndpointConnection UpdateAPrivateEndpointConnection(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState) { - return operations.GetAPrivateEndpointConnectionAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName).GetAwaiter().GetResult(); + return operations.UpdateAPrivateEndpointConnectionAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName, privateLinkServiceConnectionState).GetAwaiter().GetResult(); } /// - /// Gets information about a private endpoint connection under a disk access - /// resource. + /// Approve or reject a private endpoint connection under disk access resource, + /// this can't be used to create a new private endpoint connection. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -429,12 +427,16 @@ public static PrivateEndpointConnection GetAPrivateEndpointConnection(this IDisk /// /// The name of the private endpoint connection. /// + /// + /// A collection of information about the state of the connection between + /// DiskAccess and Virtual Network. + /// /// /// The cancellation token. /// - public static async Task GetAPrivateEndpointConnectionAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAPrivateEndpointConnectionAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPrivateEndpointConnectionWithHttpMessagesAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateAPrivateEndpointConnectionWithHttpMessagesAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName, privateLinkServiceConnectionState, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -447,7 +449,7 @@ public static PrivateEndpointConnection GetAPrivateEndpointConnection(this IDisk /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -470,7 +472,7 @@ public static void DeleteAPrivateEndpointConnection(this IDiskAccessesOperations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -490,14 +492,13 @@ public static void DeleteAPrivateEndpointConnection(this IDiskAccessesOperations } /// - /// List information about private endpoint connections under a disk access - /// resource + /// Gets the private link resources possible under disk access resource /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -505,20 +506,19 @@ public static void DeleteAPrivateEndpointConnection(this IDiskAccessesOperations /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 /// characters. /// - public static IPage ListPrivateEndpointConnections(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName) + public static PrivateLinkResourceListResult GetPrivateLinkResources(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName) { - return operations.ListPrivateEndpointConnectionsAsync(resourceGroupName, diskAccessName).GetAwaiter().GetResult(); + return operations.GetPrivateLinkResourcesAsync(resourceGroupName, diskAccessName).GetAwaiter().GetResult(); } /// - /// List information about private endpoint connections under a disk access - /// resource + /// Gets the private link resources possible under disk access resource /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -529,9 +529,9 @@ public static IPage ListPrivateEndpointConnections(th /// /// The cancellation token. /// - public static async Task> ListPrivateEndpointConnectionsAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetPrivateLinkResourcesAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListPrivateEndpointConnectionsWithHttpMessagesAsync(resourceGroupName, diskAccessName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetPrivateLinkResourcesWithHttpMessagesAsync(resourceGroupName, diskAccessName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -544,7 +544,7 @@ public static IPage ListPrivateEndpointConnections(th /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -567,7 +567,7 @@ public static DiskAccess BeginCreateOrUpdate(this IDiskAccessesOperations operat /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -596,7 +596,7 @@ public static DiskAccess BeginCreateOrUpdate(this IDiskAccessesOperations operat /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -619,7 +619,7 @@ public static DiskAccess BeginCreateOrUpdate(this IDiskAccessesOperations operat /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -648,7 +648,7 @@ public static DiskAccess BeginCreateOrUpdate(this IDiskAccessesOperations operat /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -668,7 +668,7 @@ public static void BeginDelete(this IDiskAccessesOperations operations, string r /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -692,7 +692,7 @@ public static void BeginDelete(this IDiskAccessesOperations operations, string r /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -703,13 +703,13 @@ public static void BeginDelete(this IDiskAccessesOperations operations, string r /// /// The name of the private endpoint connection. /// - /// - /// private endpoint connection object supplied in the body of the Put private - /// endpoint connection operation. + /// + /// A collection of information about the state of the connection between + /// DiskAccess and Virtual Network. /// - public static PrivateEndpointConnection BeginUpdateAPrivateEndpointConnection(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateEndpointConnection privateEndpointConnection) + public static PrivateEndpointConnection BeginUpdateAPrivateEndpointConnection(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState) { - return operations.BeginUpdateAPrivateEndpointConnectionAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName, privateEndpointConnection).GetAwaiter().GetResult(); + return operations.BeginUpdateAPrivateEndpointConnectionAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName, privateLinkServiceConnectionState).GetAwaiter().GetResult(); } /// @@ -720,7 +720,7 @@ public static PrivateEndpointConnection BeginUpdateAPrivateEndpointConnection(th /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -731,16 +731,16 @@ public static PrivateEndpointConnection BeginUpdateAPrivateEndpointConnection(th /// /// The name of the private endpoint connection. /// - /// - /// private endpoint connection object supplied in the body of the Put private - /// endpoint connection operation. + /// + /// A collection of information about the state of the connection between + /// DiskAccess and Virtual Network. /// /// /// The cancellation token. /// - public static async Task BeginUpdateAPrivateEndpointConnectionAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateEndpointConnection privateEndpointConnection, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginUpdateAPrivateEndpointConnectionAsync(this IDiskAccessesOperations operations, string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginUpdateAPrivateEndpointConnectionWithHttpMessagesAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName, privateEndpointConnection, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginUpdateAPrivateEndpointConnectionWithHttpMessagesAsync(resourceGroupName, diskAccessName, privateEndpointConnectionName, privateLinkServiceConnectionState, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -753,7 +753,7 @@ public static PrivateEndpointConnection BeginUpdateAPrivateEndpointConnection(th /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -776,7 +776,7 @@ public static void BeginDeleteAPrivateEndpointConnection(this IDiskAccessesOpera /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The name can't @@ -796,7 +796,7 @@ public static void BeginDeleteAPrivateEndpointConnection(this IDiskAccessesOpera } /// - /// Lists all the disk access resources under a resource group. + /// Lists all the disk access resources under a subscription. /// /// /// The operations group for this extension method. @@ -804,13 +804,13 @@ public static void BeginDeleteAPrivateEndpointConnection(this IDiskAccessesOpera /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByResourceGroupNext(this IDiskAccessesOperations operations, string nextPageLink) + public static IPage ListNext(this IDiskAccessesOperations operations, string nextPageLink) { - return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all the disk access resources under a resource group. + /// Lists all the disk access resources under a subscription. /// /// /// The operations group for this extension method. @@ -821,16 +821,16 @@ public static IPage ListByResourceGroupNext(this IDiskAccessesOperat /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this IDiskAccessesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this IDiskAccessesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all the disk access resources under a subscription. + /// Lists all the disk access resources under a resource group. /// /// /// The operations group for this extension method. @@ -838,13 +838,13 @@ public static IPage ListByResourceGroupNext(this IDiskAccessesOperat /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IDiskAccessesOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this IDiskAccessesOperations operations, string nextPageLink) { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all the disk access resources under a subscription. + /// Lists all the disk access resources under a resource group. /// /// /// The operations group for this extension method. @@ -855,9 +855,9 @@ public static IPage ListNext(this IDiskAccessesOperations operations /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IDiskAccessesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this IDiskAccessesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/DiskEncryptionSetsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/DiskEncryptionSetsOperations.cs index 3a5a4d56ba42..17af45f521e0 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/DiskEncryptionSetsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/DiskEncryptionSetsOperations.cs @@ -51,75 +51,8 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Creates or updates a disk encryption set - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk encryption set that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// disk encryption set object supplied in the body of the Put disk encryption - /// set operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSet diskEncryptionSet, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Updates (patches) a disk encryption set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk encryption set that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// disk encryption set object supplied in the body of the Patch disk - /// encryption set operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets information about a disk encryption set. + /// Lists all the disk encryption sets under a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk encryption set that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// /// /// Headers that will be added to request. /// @@ -141,21 +74,13 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (diskEncryptionSetName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "diskEncryptionSetName"); - } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -163,18 +88,14 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("diskEncryptionSetName", diskEncryptionSetName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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/diskEncryptionSets/{diskEncryptionSetName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/diskEncryptionSets").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{diskEncryptionSetName}", System.Uri.EscapeDataString(diskEncryptionSetName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -273,7 +194,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -286,7 +207,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -305,36 +226,11 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) return _result; } - /// - /// Deletes a disk encryption set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk encryption set that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, diskEncryptionSetName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// Lists all the disk encryption sets under a resource group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -367,7 +263,18 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - string apiVersion = "2024-03-02"; + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -375,8 +282,8 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } @@ -516,8 +423,17 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) } /// - /// Lists all the disk encryption sets under a subscription. + /// Gets information about a disk encryption set. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk encryption set that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// /// /// Headers that will be added to request. /// @@ -539,13 +455,32 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2024-03-02"; + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (diskEncryptionSetName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "diskEncryptionSetName"); + } + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -554,13 +489,17 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("diskEncryptionSetName", diskEncryptionSetName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/diskEncryptionSets").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{diskEncryptionSetName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{diskEncryptionSetName}", System.Uri.EscapeDataString(diskEncryptionSetName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -659,7 +598,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -672,7 +611,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -691,11 +630,94 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) return _result; } + /// + /// Creates or updates a disk encryption set + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk encryption set that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + /// + /// disk encryption set object supplied in the body of the Put disk encryption + /// set operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSet diskEncryptionSet, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Updates (patches) a disk encryption set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk encryption set that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + /// + /// disk encryption set object supplied in the body of the Patch disk + /// encryption set operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a disk encryption set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk encryption set that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, diskEncryptionSetName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Lists all resources that are encrypted with this disk encryption set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -734,11 +756,22 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskEncryptionSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskEncryptionSetName"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -746,9 +779,9 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskEncryptionSetName", diskEncryptionSetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListAssociatedResources", tracingParameters); } @@ -892,7 +925,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) /// Creates or updates a disk encryption set /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -935,6 +968,17 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskEncryptionSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskEncryptionSetName"); @@ -947,7 +991,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) { diskEncryptionSet.Validate(); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -955,9 +999,9 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskEncryptionSetName", diskEncryptionSetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("diskEncryptionSet", diskEncryptionSet); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); @@ -1097,24 +1141,6 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1126,7 +1152,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) /// Updates (patches) a disk encryption set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -1169,6 +1195,17 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskEncryptionSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskEncryptionSetName"); @@ -1177,7 +1214,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "diskEncryptionSet"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1185,9 +1222,9 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskEncryptionSetName", diskEncryptionSetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("diskEncryptionSet", diskEncryptionSet); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); @@ -1327,24 +1364,6 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1356,7 +1375,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) /// Deletes a disk encryption set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -1392,11 +1411,22 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskEncryptionSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskEncryptionSetName"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1404,9 +1434,9 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskEncryptionSetName", diskEncryptionSetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } @@ -1529,7 +1559,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) } /// - /// Lists all the disk encryption sets under a resource group. + /// Lists all the disk encryption sets under a subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -1555,7 +1585,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1570,7 +1600,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -1702,7 +1732,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) } /// - /// Lists all the disk encryption sets under a subscription. + /// Lists all the disk encryption sets under a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -1728,7 +1758,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1743,7 +1773,7 @@ internal DiskEncryptionSetsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/Compute/Compute.Management.Sdk/Generated/DiskEncryptionSetsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/DiskEncryptionSetsOperationsExtensions.cs index 59436941d6f8..c826890bf87c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/DiskEncryptionSetsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/DiskEncryptionSetsOperationsExtensions.cs @@ -22,108 +22,62 @@ namespace Microsoft.Azure.Management.Compute public static partial class DiskEncryptionSetsOperationsExtensions { /// - /// Creates or updates a disk encryption set + /// Lists all the disk encryption sets under a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk encryption set that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// disk encryption set object supplied in the body of the Put disk encryption - /// set operation. - /// - public static DiskEncryptionSet CreateOrUpdate(this IDiskEncryptionSetsOperations operations, string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSet diskEncryptionSet) + public static IPage List(this IDiskEncryptionSetsOperations operations) { - return operations.CreateOrUpdateAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet).GetAwaiter().GetResult(); + return operations.ListAsync().GetAwaiter().GetResult(); } /// - /// Creates or updates a disk encryption set + /// Lists all the disk encryption sets under a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk encryption set that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// disk encryption set object supplied in the body of the Put disk encryption - /// set operation. - /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IDiskEncryptionSetsOperations operations, string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSet diskEncryptionSet, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IDiskEncryptionSetsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Updates (patches) a disk encryption set. + /// Lists all the disk encryption sets under a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The name of the disk encryption set that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// disk encryption set object supplied in the body of the Patch disk - /// encryption set operation. - /// - public static DiskEncryptionSet Update(this IDiskEncryptionSetsOperations operations, string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet) + public static IPage ListByResourceGroup(this IDiskEncryptionSetsOperations operations, string resourceGroupName) { - return operations.UpdateAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet).GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); } /// - /// Updates (patches) a disk encryption set. + /// Lists all the disk encryption sets under a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the disk encryption set that is being created. The name can't - /// be changed after the disk encryption set is created. Supported characters - /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// disk encryption set object supplied in the body of the Patch disk - /// encryption set operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IDiskEncryptionSetsOperations operations, string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IDiskEncryptionSetsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -136,7 +90,7 @@ public static DiskEncryptionSet Update(this IDiskEncryptionSetsOperations operat /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -156,7 +110,7 @@ public static DiskEncryptionSet Get(this IDiskEncryptionSetsOperations operation /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -176,13 +130,13 @@ public static DiskEncryptionSet Get(this IDiskEncryptionSetsOperations operation } /// - /// Deletes a disk encryption set. + /// Creates or updates a disk encryption set /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -190,19 +144,23 @@ public static DiskEncryptionSet Get(this IDiskEncryptionSetsOperations operation /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 /// characters. /// - public static void Delete(this IDiskEncryptionSetsOperations operations, string resourceGroupName, string diskEncryptionSetName) + /// + /// disk encryption set object supplied in the body of the Put disk encryption + /// set operation. + /// + public static DiskEncryptionSet CreateOrUpdate(this IDiskEncryptionSetsOperations operations, string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSet diskEncryptionSet) { - operations.DeleteAsync(resourceGroupName, diskEncryptionSetName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet).GetAwaiter().GetResult(); } /// - /// Deletes a disk encryption set. + /// Creates or updates a disk encryption set /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -210,74 +168,116 @@ public static void Delete(this IDiskEncryptionSetsOperations operations, string /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 /// characters. /// + /// + /// disk encryption set object supplied in the body of the Put disk encryption + /// set operation. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IDiskEncryptionSetsOperations operations, string resourceGroupName, string diskEncryptionSetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IDiskEncryptionSetsOperations operations, string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSet diskEncryptionSet, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, diskEncryptionSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Lists all the disk encryption sets under a resource group. + /// Updates (patches) a disk encryption set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - public static IPage ListByResourceGroup(this IDiskEncryptionSetsOperations operations, string resourceGroupName) + /// + /// The name of the disk encryption set that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + /// + /// disk encryption set object supplied in the body of the Patch disk + /// encryption set operation. + /// + public static DiskEncryptionSet Update(this IDiskEncryptionSetsOperations operations, string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet) { - return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet).GetAwaiter().GetResult(); } /// - /// Lists all the disk encryption sets under a resource group. + /// Updates (patches) a disk encryption set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk encryption set that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + /// + /// disk encryption set object supplied in the body of the Patch disk + /// encryption set operation. /// /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IDiskEncryptionSetsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IDiskEncryptionSetsOperations operations, string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, diskEncryptionSetName, diskEncryptionSet, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all the disk encryption sets under a subscription. + /// Deletes a disk encryption set. /// /// /// The operations group for this extension method. /// - public static IPage List(this IDiskEncryptionSetsOperations operations) + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk encryption set that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + public static void Delete(this IDiskEncryptionSetsOperations operations, string resourceGroupName, string diskEncryptionSetName) { - return operations.ListAsync().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, diskEncryptionSetName).GetAwaiter().GetResult(); } /// - /// Lists all the disk encryption sets under a subscription. + /// Deletes a disk encryption set. /// /// /// The operations group for this extension method. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk encryption set that is being created. The name can't + /// be changed after the disk encryption set is created. Supported characters + /// for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IDiskEncryptionSetsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IDiskEncryptionSetsOperations operations, string resourceGroupName, string diskEncryptionSetName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, diskEncryptionSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -287,7 +287,7 @@ public static IPage List(this IDiskEncryptionSetsOperations o /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -307,7 +307,7 @@ public static IPage ListAssociatedResources(this IDiskEncryptionSetsOper /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -333,7 +333,7 @@ public static IPage ListAssociatedResources(this IDiskEncryptionSetsOper /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -357,7 +357,7 @@ public static DiskEncryptionSet BeginCreateOrUpdate(this IDiskEncryptionSetsOper /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -387,7 +387,7 @@ public static DiskEncryptionSet BeginCreateOrUpdate(this IDiskEncryptionSetsOper /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -411,7 +411,7 @@ public static DiskEncryptionSet BeginUpdate(this IDiskEncryptionSetsOperations o /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -441,7 +441,7 @@ public static DiskEncryptionSet BeginUpdate(this IDiskEncryptionSetsOperations o /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -461,7 +461,7 @@ public static void BeginDelete(this IDiskEncryptionSetsOperations operations, st /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name can't @@ -478,7 +478,7 @@ public static void BeginDelete(this IDiskEncryptionSetsOperations operations, st } /// - /// Lists all the disk encryption sets under a resource group. + /// Lists all the disk encryption sets under a subscription. /// /// /// The operations group for this extension method. @@ -486,13 +486,13 @@ public static void BeginDelete(this IDiskEncryptionSetsOperations operations, st /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByResourceGroupNext(this IDiskEncryptionSetsOperations operations, string nextPageLink) + public static IPage ListNext(this IDiskEncryptionSetsOperations operations, string nextPageLink) { - return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all the disk encryption sets under a resource group. + /// Lists all the disk encryption sets under a subscription. /// /// /// The operations group for this extension method. @@ -503,16 +503,16 @@ public static IPage ListByResourceGroupNext(this IDiskEncrypt /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this IDiskEncryptionSetsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this IDiskEncryptionSetsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all the disk encryption sets under a subscription. + /// Lists all the disk encryption sets under a resource group. /// /// /// The operations group for this extension method. @@ -520,13 +520,13 @@ public static IPage ListByResourceGroupNext(this IDiskEncrypt /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IDiskEncryptionSetsOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this IDiskEncryptionSetsOperations operations, string nextPageLink) { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all the disk encryption sets under a subscription. + /// Lists all the disk encryption sets under a resource group. /// /// /// The operations group for this extension method. @@ -537,9 +537,9 @@ public static IPage ListNext(this IDiskEncryptionSetsOperatio /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IDiskEncryptionSetsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this IDiskEncryptionSetsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/DiskRestorePointOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/DiskRestorePointOperations.cs index bbc65c7eaad3..2b852fb01d3f 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/DiskRestorePointOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/DiskRestorePointOperations.cs @@ -51,10 +51,10 @@ internal DiskRestorePointOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Get disk restorePoint resource + /// Lists diskRestorePoints under a vmRestorePoint. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -63,9 +63,6 @@ internal DiskRestorePointOperations(ComputeManagementClient client) /// /// The name of the vm restore point that the disk disk restore point belongs. /// - /// - /// The name of the disk restore point created. - /// /// /// Headers that will be added to request. /// @@ -87,7 +84,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, string diskRestorePointName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByRestorePointWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -97,6 +94,17 @@ internal DiskRestorePointOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (restorePointCollectionName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "restorePointCollectionName"); @@ -105,11 +113,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "vmRestorePointName"); } - if (diskRestorePointName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "diskRestorePointName"); - } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -117,22 +121,20 @@ internal DiskRestorePointOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("restorePointCollectionName", restorePointCollectionName); tracingParameters.Add("vmRestorePointName", vmRestorePointName); - tracingParameters.Add("diskRestorePointName", diskRestorePointName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByRestorePoint", 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/restorePointCollections/{restorePointCollectionName}/restorePoints/{vmRestorePointName}/diskRestorePoints/{diskRestorePointName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/restorePointCollections/{restorePointCollectionName}/restorePoints/{vmRestorePointName}/diskRestorePoints").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{restorePointCollectionName}", System.Uri.EscapeDataString(restorePointCollectionName)); _url = _url.Replace("{vmRestorePointName}", System.Uri.EscapeDataString(vmRestorePointName)); - _url = _url.Replace("{diskRestorePointName}", System.Uri.EscapeDataString(diskRestorePointName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -231,7 +233,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -244,7 +246,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -264,10 +266,10 @@ internal DiskRestorePointOperations(ComputeManagementClient client) } /// - /// Lists diskRestorePoints under a vmRestorePoint. + /// Get disk restorePoint resource /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -276,6 +278,9 @@ internal DiskRestorePointOperations(ComputeManagementClient client) /// /// The name of the vm restore point that the disk disk restore point belongs. /// + /// + /// The name of the DiskRestorePoint + /// /// /// Headers that will be added to request. /// @@ -297,7 +302,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByRestorePointWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, string diskRestorePointName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -307,6 +312,17 @@ internal DiskRestorePointOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (restorePointCollectionName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "restorePointCollectionName"); @@ -315,7 +331,11 @@ internal DiskRestorePointOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "vmRestorePointName"); } - string apiVersion = "2024-03-02"; + if (diskRestorePointName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "diskRestorePointName"); + } + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -323,20 +343,22 @@ internal DiskRestorePointOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("restorePointCollectionName", restorePointCollectionName); tracingParameters.Add("vmRestorePointName", vmRestorePointName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("diskRestorePointName", diskRestorePointName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByRestorePoint", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/restorePointCollections/{restorePointCollectionName}/restorePoints/{vmRestorePointName}/diskRestorePoints").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/restorePointCollections/{restorePointCollectionName}/restorePoints/{vmRestorePointName}/diskRestorePoints/{diskRestorePointName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{restorePointCollectionName}", System.Uri.EscapeDataString(restorePointCollectionName)); _url = _url.Replace("{vmRestorePointName}", System.Uri.EscapeDataString(vmRestorePointName)); + _url = _url.Replace("{diskRestorePointName}", System.Uri.EscapeDataString(diskRestorePointName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -435,7 +457,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -448,7 +470,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -471,7 +493,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) /// Grants access to a diskRestorePoint. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -481,7 +503,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) /// The name of the vm restore point that the disk disk restore point belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// Access data object supplied in the body of the get disk access operation. @@ -503,7 +525,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) /// Revokes access to a diskRestorePoint. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -513,7 +535,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) /// The name of the vm restore point that the disk disk restore point belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// The headers that will be added to request. @@ -532,7 +554,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) /// Grants access to a diskRestorePoint. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -542,7 +564,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) /// The name of the vm restore point that the disk disk restore point belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// Access data object supplied in the body of the get disk access operation. @@ -578,6 +600,17 @@ internal DiskRestorePointOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (restorePointCollectionName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "restorePointCollectionName"); @@ -598,7 +631,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) { grantAccessData.Validate(); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -606,11 +639,11 @@ internal DiskRestorePointOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("restorePointCollectionName", restorePointCollectionName); tracingParameters.Add("vmRestorePointName", vmRestorePointName); tracingParameters.Add("diskRestorePointName", diskRestorePointName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("grantAccessData", grantAccessData); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginGrantAccess", tracingParameters); @@ -763,7 +796,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) /// Revokes access to a diskRestorePoint. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -773,7 +806,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) /// The name of the vm restore point that the disk disk restore point belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// Headers that will be added to request. @@ -803,6 +836,17 @@ internal DiskRestorePointOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (restorePointCollectionName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "restorePointCollectionName"); @@ -815,7 +859,7 @@ internal DiskRestorePointOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "diskRestorePointName"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -823,11 +867,11 @@ internal DiskRestorePointOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("restorePointCollectionName", restorePointCollectionName); tracingParameters.Add("vmRestorePointName", vmRestorePointName); tracingParameters.Add("diskRestorePointName", diskRestorePointName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginRevokeAccess", tracingParameters); } diff --git a/src/Compute/Compute.Management.Sdk/Generated/DiskRestorePointOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/DiskRestorePointOperationsExtensions.cs index 33a720abc7ad..30e72f894c2b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/DiskRestorePointOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/DiskRestorePointOperationsExtensions.cs @@ -22,13 +22,13 @@ namespace Microsoft.Azure.Management.Compute public static partial class DiskRestorePointOperationsExtensions { /// - /// Get disk restorePoint resource + /// Lists diskRestorePoints under a vmRestorePoint. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -37,22 +37,19 @@ public static partial class DiskRestorePointOperationsExtensions /// /// The name of the vm restore point that the disk disk restore point belongs. /// - /// - /// The name of the disk restore point created. - /// - public static DiskRestorePoint Get(this IDiskRestorePointOperations operations, string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, string diskRestorePointName) + public static IPage ListByRestorePoint(this IDiskRestorePointOperations operations, string resourceGroupName, string restorePointCollectionName, string vmRestorePointName) { - return operations.GetAsync(resourceGroupName, restorePointCollectionName, vmRestorePointName, diskRestorePointName).GetAwaiter().GetResult(); + return operations.ListByRestorePointAsync(resourceGroupName, restorePointCollectionName, vmRestorePointName).GetAwaiter().GetResult(); } /// - /// Get disk restorePoint resource + /// Lists diskRestorePoints under a vmRestorePoint. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -61,28 +58,25 @@ public static DiskRestorePoint Get(this IDiskRestorePointOperations operations, /// /// The name of the vm restore point that the disk disk restore point belongs. /// - /// - /// The name of the disk restore point created. - /// /// /// The cancellation token. /// - public static async Task GetAsync(this IDiskRestorePointOperations operations, string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, string diskRestorePointName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByRestorePointAsync(this IDiskRestorePointOperations operations, string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, vmRestorePointName, diskRestorePointName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByRestorePointWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, vmRestorePointName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists diskRestorePoints under a vmRestorePoint. + /// Get disk restorePoint resource /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -91,19 +85,22 @@ public static DiskRestorePoint Get(this IDiskRestorePointOperations operations, /// /// The name of the vm restore point that the disk disk restore point belongs. /// - public static IPage ListByRestorePoint(this IDiskRestorePointOperations operations, string resourceGroupName, string restorePointCollectionName, string vmRestorePointName) + /// + /// The name of the DiskRestorePoint + /// + public static DiskRestorePoint Get(this IDiskRestorePointOperations operations, string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, string diskRestorePointName) { - return operations.ListByRestorePointAsync(resourceGroupName, restorePointCollectionName, vmRestorePointName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, restorePointCollectionName, vmRestorePointName, diskRestorePointName).GetAwaiter().GetResult(); } /// - /// Lists diskRestorePoints under a vmRestorePoint. + /// Get disk restorePoint resource /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -112,12 +109,15 @@ public static IPage ListByRestorePoint(this IDiskRestorePointO /// /// The name of the vm restore point that the disk disk restore point belongs. /// + /// + /// The name of the DiskRestorePoint + /// /// /// The cancellation token. /// - public static async Task> ListByRestorePointAsync(this IDiskRestorePointOperations operations, string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IDiskRestorePointOperations operations, string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, string diskRestorePointName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByRestorePointWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, vmRestorePointName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, vmRestorePointName, diskRestorePointName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -130,7 +130,7 @@ public static IPage ListByRestorePoint(this IDiskRestorePointO /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -140,7 +140,7 @@ public static IPage ListByRestorePoint(this IDiskRestorePointO /// The name of the vm restore point that the disk disk restore point belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// Access data object supplied in the body of the get disk access operation. @@ -157,7 +157,7 @@ public static AccessUri GrantAccess(this IDiskRestorePointOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -167,7 +167,7 @@ public static AccessUri GrantAccess(this IDiskRestorePointOperations operations, /// The name of the vm restore point that the disk disk restore point belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// Access data object supplied in the body of the get disk access operation. @@ -190,7 +190,7 @@ public static AccessUri GrantAccess(this IDiskRestorePointOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -200,7 +200,7 @@ public static AccessUri GrantAccess(this IDiskRestorePointOperations operations, /// The name of the vm restore point that the disk disk restore point belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// public static void RevokeAccess(this IDiskRestorePointOperations operations, string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, string diskRestorePointName) { @@ -214,7 +214,7 @@ public static void RevokeAccess(this IDiskRestorePointOperations operations, str /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -224,7 +224,7 @@ public static void RevokeAccess(this IDiskRestorePointOperations operations, str /// The name of the vm restore point that the disk disk restore point belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// The cancellation token. @@ -241,7 +241,7 @@ public static void RevokeAccess(this IDiskRestorePointOperations operations, str /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -251,7 +251,7 @@ public static void RevokeAccess(this IDiskRestorePointOperations operations, str /// The name of the vm restore point that the disk disk restore point belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// Access data object supplied in the body of the get disk access operation. @@ -268,7 +268,7 @@ public static AccessUri BeginGrantAccess(this IDiskRestorePointOperations operat /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -278,7 +278,7 @@ public static AccessUri BeginGrantAccess(this IDiskRestorePointOperations operat /// The name of the vm restore point that the disk disk restore point belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// Access data object supplied in the body of the get disk access operation. @@ -301,7 +301,7 @@ public static AccessUri BeginGrantAccess(this IDiskRestorePointOperations operat /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -311,7 +311,7 @@ public static AccessUri BeginGrantAccess(this IDiskRestorePointOperations operat /// The name of the vm restore point that the disk disk restore point belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// public static void BeginRevokeAccess(this IDiskRestorePointOperations operations, string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, string diskRestorePointName) { @@ -325,7 +325,7 @@ public static void BeginRevokeAccess(this IDiskRestorePointOperations operations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore point @@ -335,7 +335,7 @@ public static void BeginRevokeAccess(this IDiskRestorePointOperations operations /// The name of the vm restore point that the disk disk restore point belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// The cancellation token. diff --git a/src/Compute/Compute.Management.Sdk/Generated/DisksOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/DisksOperations.cs index 306064422334..f4c370418cc2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/DisksOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/DisksOperations.cs @@ -51,70 +51,8 @@ internal DisksOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Creates or updates a disk. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the managed disk that is being created. The name can't be - /// changed after the disk is created. Supported characters for the name are - /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. - /// - /// - /// Disk object supplied in the body of the Put disk operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string diskName, Disk disk, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, diskName, disk, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Updates (patches) a disk. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the managed disk that is being created. The name can't be - /// changed after the disk is created. Supported characters for the name are - /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. - /// - /// - /// Disk object supplied in the body of the Patch disk operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string diskName, DiskUpdate disk, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, diskName, disk, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets information about a disk. + /// Lists all the disks under a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the managed disk that is being created. The name can't be - /// changed after the disk is created. Supported characters for the name are - /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. - /// /// /// Headers that will be added to request. /// @@ -136,21 +74,13 @@ internal DisksOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string diskName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (diskName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "diskName"); - } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -158,18 +88,14 @@ internal DisksOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("diskName", diskName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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/disks/{diskName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/disks").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{diskName}", System.Uri.EscapeDataString(diskName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -268,7 +194,7 @@ internal DisksOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -281,7 +207,7 @@ internal DisksOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -300,35 +226,11 @@ internal DisksOperations(ComputeManagementClient client) return _result; } - /// - /// Deletes a disk. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the managed disk that is being created. The name can't be - /// changed after the disk is created. Supported characters for the name are - /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string diskName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, diskName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// Lists all the disks under a resource group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -361,7 +263,18 @@ internal DisksOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - string apiVersion = "2024-03-02"; + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -369,8 +282,8 @@ internal DisksOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } @@ -510,8 +423,16 @@ internal DisksOperations(ComputeManagementClient client) } /// - /// Lists all the disks under a subscription. + /// Gets information about a disk. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the managed disk that is being created. The name can't be + /// changed after the disk is created. Supported characters for the name are + /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. + /// /// /// Headers that will be added to request. /// @@ -533,13 +454,32 @@ internal DisksOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string diskName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2024-03-02"; + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (diskName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "diskName"); + } + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -548,13 +488,17 @@ internal DisksOperations(ComputeManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("diskName", diskName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/disks").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks/{diskName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{diskName}", System.Uri.EscapeDataString(diskName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -653,7 +597,7 @@ internal DisksOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -666,7 +610,7 @@ internal DisksOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -685,11 +629,89 @@ internal DisksOperations(ComputeManagementClient client) return _result; } + /// + /// Creates or updates a disk. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the managed disk that is being created. The name can't be + /// changed after the disk is created. Supported characters for the name are + /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. + /// + /// + /// Disk object supplied in the body of the Put disk operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string diskName, Disk disk, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, diskName, disk, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Updates (patches) a disk. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the managed disk that is being created. The name can't be + /// changed after the disk is created. Supported characters for the name are + /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. + /// + /// + /// Disk object supplied in the body of the Patch disk operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string diskName, DiskUpdate disk, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, diskName, disk, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a disk. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the managed disk that is being created. The name can't be + /// changed after the disk is created. Supported characters for the name are + /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string diskName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, diskName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Grants access to a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -716,7 +738,7 @@ internal DisksOperations(ComputeManagementClient client) /// Revokes access to a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -740,7 +762,7 @@ internal DisksOperations(ComputeManagementClient client) /// Creates or updates a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -781,6 +803,17 @@ internal DisksOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskName"); @@ -793,7 +826,7 @@ internal DisksOperations(ComputeManagementClient client) { disk.Validate(); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -801,9 +834,9 @@ internal DisksOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskName", diskName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("disk", disk); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); @@ -943,24 +976,6 @@ internal DisksOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -972,7 +987,7 @@ internal DisksOperations(ComputeManagementClient client) /// Updates (patches) a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -1013,6 +1028,17 @@ internal DisksOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskName"); @@ -1021,7 +1047,7 @@ internal DisksOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "disk"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1029,9 +1055,9 @@ internal DisksOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskName", diskName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("disk", disk); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); @@ -1171,24 +1197,6 @@ internal DisksOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1200,7 +1208,7 @@ internal DisksOperations(ComputeManagementClient client) /// Deletes a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -1235,11 +1243,22 @@ internal DisksOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskName"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1247,9 +1266,9 @@ internal DisksOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskName", diskName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } @@ -1375,7 +1394,7 @@ internal DisksOperations(ComputeManagementClient client) /// Grants access to a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -1416,6 +1435,17 @@ internal DisksOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskName"); @@ -1428,7 +1458,7 @@ internal DisksOperations(ComputeManagementClient client) { grantAccessData.Validate(); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1436,9 +1466,9 @@ internal DisksOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskName", diskName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("grantAccessData", grantAccessData); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginGrantAccess", tracingParameters); @@ -1589,7 +1619,7 @@ internal DisksOperations(ComputeManagementClient client) /// Revokes access to a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -1624,11 +1654,22 @@ internal DisksOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (diskName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "diskName"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1636,9 +1677,9 @@ internal DisksOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("diskName", diskName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginRevokeAccess", tracingParameters); } @@ -1761,7 +1802,7 @@ internal DisksOperations(ComputeManagementClient client) } /// - /// Lists all the disks under a resource group. + /// Lists all the disks under a subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -1787,7 +1828,7 @@ internal DisksOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1802,7 +1843,7 @@ internal DisksOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -1934,7 +1975,7 @@ internal DisksOperations(ComputeManagementClient client) } /// - /// Lists all the disks under a subscription. + /// Lists all the disks under a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -1960,7 +2001,7 @@ internal DisksOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1975,7 +2016,7 @@ internal DisksOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/Compute/Compute.Management.Sdk/Generated/DisksOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/DisksOperationsExtensions.cs index 690e7af288f3..3b8b724cf251 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/DisksOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/DisksOperationsExtensions.cs @@ -22,100 +22,62 @@ namespace Microsoft.Azure.Management.Compute public static partial class DisksOperationsExtensions { /// - /// Creates or updates a disk. + /// Lists all the disks under a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the managed disk that is being created. The name can't be - /// changed after the disk is created. Supported characters for the name are - /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. - /// - /// - /// Disk object supplied in the body of the Put disk operation. - /// - public static Disk CreateOrUpdate(this IDisksOperations operations, string resourceGroupName, string diskName, Disk disk) + public static IPage List(this IDisksOperations operations) { - return operations.CreateOrUpdateAsync(resourceGroupName, diskName, disk).GetAwaiter().GetResult(); + return operations.ListAsync().GetAwaiter().GetResult(); } /// - /// Creates or updates a disk. + /// Lists all the disks under a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the managed disk that is being created. The name can't be - /// changed after the disk is created. Supported characters for the name are - /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. - /// - /// - /// Disk object supplied in the body of the Put disk operation. - /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IDisksOperations operations, string resourceGroupName, string diskName, Disk disk, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IDisksOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, diskName, disk, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Updates (patches) a disk. + /// Lists all the disks under a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the managed disk that is being created. The name can't be - /// changed after the disk is created. Supported characters for the name are - /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. + /// The name of the resource group. The name is case insensitive. /// - /// - /// Disk object supplied in the body of the Patch disk operation. - /// - public static Disk Update(this IDisksOperations operations, string resourceGroupName, string diskName, DiskUpdate disk) + public static IPage ListByResourceGroup(this IDisksOperations operations, string resourceGroupName) { - return operations.UpdateAsync(resourceGroupName, diskName, disk).GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); } /// - /// Updates (patches) a disk. + /// Lists all the disks under a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the managed disk that is being created. The name can't be - /// changed after the disk is created. Supported characters for the name are - /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. - /// - /// - /// Disk object supplied in the body of the Patch disk operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IDisksOperations operations, string resourceGroupName, string diskName, DiskUpdate disk, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IDisksOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, diskName, disk, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -128,7 +90,7 @@ public static Disk Update(this IDisksOperations operations, string resourceGroup /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -147,7 +109,7 @@ public static Disk Get(this IDisksOperations operations, string resourceGroupNam /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -166,106 +128,144 @@ public static Disk Get(this IDisksOperations operations, string resourceGroupNam } /// - /// Deletes a disk. + /// Creates or updates a disk. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be /// changed after the disk is created. Supported characters for the name are /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. /// - public static void Delete(this IDisksOperations operations, string resourceGroupName, string diskName) + /// + /// Disk object supplied in the body of the Put disk operation. + /// + public static Disk CreateOrUpdate(this IDisksOperations operations, string resourceGroupName, string diskName, Disk disk) { - operations.DeleteAsync(resourceGroupName, diskName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, diskName, disk).GetAwaiter().GetResult(); } /// - /// Deletes a disk. + /// Creates or updates a disk. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be /// changed after the disk is created. Supported characters for the name are /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. /// + /// + /// Disk object supplied in the body of the Put disk operation. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IDisksOperations operations, string resourceGroupName, string diskName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IDisksOperations operations, string resourceGroupName, string diskName, Disk disk, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, diskName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, diskName, disk, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Lists all the disks under a resource group. + /// Updates (patches) a disk. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - public static IPage ListByResourceGroup(this IDisksOperations operations, string resourceGroupName) + /// + /// The name of the managed disk that is being created. The name can't be + /// changed after the disk is created. Supported characters for the name are + /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. + /// + /// + /// Disk object supplied in the body of the Patch disk operation. + /// + public static Disk Update(this IDisksOperations operations, string resourceGroupName, string diskName, DiskUpdate disk) { - return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, diskName, disk).GetAwaiter().GetResult(); } /// - /// Lists all the disks under a resource group. + /// Updates (patches) a disk. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the managed disk that is being created. The name can't be + /// changed after the disk is created. Supported characters for the name are + /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. + /// + /// + /// Disk object supplied in the body of the Patch disk operation. /// /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IDisksOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IDisksOperations operations, string resourceGroupName, string diskName, DiskUpdate disk, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, diskName, disk, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all the disks under a subscription. + /// Deletes a disk. /// /// /// The operations group for this extension method. /// - public static IPage List(this IDisksOperations operations) + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the managed disk that is being created. The name can't be + /// changed after the disk is created. Supported characters for the name are + /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. + /// + public static void Delete(this IDisksOperations operations, string resourceGroupName, string diskName) { - return operations.ListAsync().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, diskName).GetAwaiter().GetResult(); } /// - /// Lists all the disks under a subscription. + /// Deletes a disk. /// /// /// The operations group for this extension method. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the managed disk that is being created. The name can't be + /// changed after the disk is created. Supported characters for the name are + /// a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. + /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IDisksOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IDisksOperations operations, string resourceGroupName, string diskName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, diskName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -275,7 +275,7 @@ public static IPage List(this IDisksOperations operations) /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -297,7 +297,7 @@ public static AccessUri GrantAccess(this IDisksOperations operations, string res /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -325,7 +325,7 @@ public static AccessUri GrantAccess(this IDisksOperations operations, string res /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -344,7 +344,7 @@ public static void RevokeAccess(this IDisksOperations operations, string resourc /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -366,7 +366,7 @@ public static void RevokeAccess(this IDisksOperations operations, string resourc /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -388,7 +388,7 @@ public static Disk BeginCreateOrUpdate(this IDisksOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -416,7 +416,7 @@ public static Disk BeginCreateOrUpdate(this IDisksOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -438,7 +438,7 @@ public static Disk BeginUpdate(this IDisksOperations operations, string resource /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -466,7 +466,7 @@ public static Disk BeginUpdate(this IDisksOperations operations, string resource /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -485,7 +485,7 @@ public static void BeginDelete(this IDisksOperations operations, string resource /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -507,7 +507,7 @@ public static void BeginDelete(this IDisksOperations operations, string resource /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -529,7 +529,7 @@ public static AccessUri BeginGrantAccess(this IDisksOperations operations, strin /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -557,7 +557,7 @@ public static AccessUri BeginGrantAccess(this IDisksOperations operations, strin /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -576,7 +576,7 @@ public static void BeginRevokeAccess(this IDisksOperations operations, string re /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't be @@ -592,7 +592,7 @@ public static void BeginRevokeAccess(this IDisksOperations operations, string re } /// - /// Lists all the disks under a resource group. + /// Lists all the disks under a subscription. /// /// /// The operations group for this extension method. @@ -600,13 +600,13 @@ public static void BeginRevokeAccess(this IDisksOperations operations, string re /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByResourceGroupNext(this IDisksOperations operations, string nextPageLink) + public static IPage ListNext(this IDisksOperations operations, string nextPageLink) { - return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all the disks under a resource group. + /// Lists all the disks under a subscription. /// /// /// The operations group for this extension method. @@ -617,16 +617,16 @@ public static IPage ListByResourceGroupNext(this IDisksOperations operatio /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this IDisksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this IDisksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all the disks under a subscription. + /// Lists all the disks under a resource group. /// /// /// The operations group for this extension method. @@ -634,13 +634,13 @@ public static IPage ListByResourceGroupNext(this IDisksOperations operatio /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IDisksOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this IDisksOperations operations, string nextPageLink) { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all the disks under a subscription. + /// Lists all the disks under a resource group. /// /// /// The operations group for this extension method. @@ -651,9 +651,9 @@ public static IPage ListNext(this IDisksOperations operations, string next /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IDisksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this IDisksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleriesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleriesOperations.cs index 59c092e9ae77..fb76aa87449c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleriesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleriesOperations.cs @@ -51,76 +51,8 @@ internal GalleriesOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update a Shared Image Gallery. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery. The allowed characters are alphabets - /// and numbers with dots and periods allowed in the middle. The maximum length - /// is 80 characters. - /// - /// - /// Parameters supplied to the create or update Shared Image Gallery operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, Gallery gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, gallery, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Update a Shared Image Gallery. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery. The allowed characters are alphabets - /// and numbers with dots and periods allowed in the middle. The maximum length - /// is 80 characters. - /// - /// - /// Parameters supplied to the update Shared Image Gallery operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, GalleryUpdate gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, gallery, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Retrieves information about a Shared Image Gallery. + /// List galleries under a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery. - /// - /// - /// The select expression to apply on the operation. Possible values include: - /// 'Permissions' - /// - /// - /// The expand query option to apply on the operation. Possible values include: - /// 'SharingProfile/Groups' - /// /// /// Headers that will be added to request. /// @@ -142,20 +74,12 @@ internal GalleriesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string select = default(string), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (galleryName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); - } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -164,33 +88,19 @@ internal GalleriesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("select", select); - tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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/galleries/{galleryName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/galleries").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } - if (select != null) - { - _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select))); - } - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -284,7 +194,7 @@ internal GalleriesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -297,7 +207,7 @@ internal GalleriesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -316,33 +226,11 @@ internal GalleriesOperations(ComputeManagementClient client) return _result; } - /// - /// Delete a Shared Image Gallery. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery to be deleted. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// List galleries under a resource group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -375,6 +263,17 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -383,8 +282,8 @@ internal GalleriesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } @@ -524,8 +423,22 @@ internal GalleriesOperations(ComputeManagementClient client) } /// - /// List galleries under a subscription. + /// Retrieves information about a Shared Image Gallery. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The select expression to apply on the operation. Possible values include: + /// 'Permissions' + /// + /// + /// The expand query option to apply on the operation. Possible values include: + /// 'SharingProfile/Groups' + /// /// /// Headers that will be added to request. /// @@ -547,12 +460,31 @@ internal GalleriesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string select = default(string), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (galleryName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); + } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -562,18 +494,32 @@ internal GalleriesOperations(ComputeManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("galleryName", galleryName); + tracingParameters.Add("select", select); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/galleries").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (select != null) + { + _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select))); + } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -667,7 +613,7 @@ internal GalleriesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -680,7 +626,7 @@ internal GalleriesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -703,12 +649,82 @@ internal GalleriesOperations(ComputeManagementClient client) /// Create or update a Shared Image Gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery. The allowed characters are alphabets - /// and numbers with dots and periods allowed in the middle. The maximum length - /// is 80 characters. + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the create or update Shared Image Gallery operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, Gallery gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, gallery, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update a Shared Image Gallery. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update Shared Image Gallery operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, GalleryUpdate gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, gallery, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete a Shared Image Gallery. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Create or update a Shared Image Gallery. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. /// /// /// Parameters supplied to the create or update Shared Image Gallery operation. @@ -734,7 +750,7 @@ internal GalleriesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, Gallery gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, Gallery gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -744,6 +760,17 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -764,9 +791,9 @@ internal GalleriesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("gallery", gallery); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); @@ -881,7 +908,7 @@ internal GalleriesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -924,23 +951,18 @@ internal GalleriesOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) + try { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + _httpResponse.Dispose(); } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); } if (_shouldTrace) { @@ -953,12 +975,10 @@ internal GalleriesOperations(ComputeManagementClient client) /// Update a Shared Image Gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery. The allowed characters are alphabets - /// and numbers with dots and periods allowed in the middle. The maximum length - /// is 80 characters. + /// The name of the Shared Image Gallery. /// /// /// Parameters supplied to the update Shared Image Gallery operation. @@ -984,7 +1004,7 @@ internal GalleriesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, GalleryUpdate gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, GalleryUpdate gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -994,6 +1014,17 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -1010,9 +1041,9 @@ internal GalleriesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("gallery", gallery); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); @@ -1127,7 +1158,7 @@ internal GalleriesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1152,6 +1183,19 @@ internal GalleriesOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1163,10 +1207,10 @@ internal GalleriesOperations(ComputeManagementClient client) /// Delete a Shared Image Gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery to be deleted. + /// The name of the Shared Image Gallery. /// /// /// Headers that will be added to request. @@ -1196,6 +1240,17 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -1208,9 +1263,9 @@ internal GalleriesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } @@ -1333,7 +1388,7 @@ internal GalleriesOperations(ComputeManagementClient client) } /// - /// List galleries under a resource group. + /// List galleries under a subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -1359,7 +1414,7 @@ internal GalleriesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1374,7 +1429,7 @@ internal GalleriesOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -1506,7 +1561,7 @@ internal GalleriesOperations(ComputeManagementClient client) } /// - /// List galleries under a subscription. + /// List galleries under a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -1532,7 +1587,7 @@ internal GalleriesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1547,7 +1602,7 @@ internal GalleriesOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleriesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleriesOperationsExtensions.cs index f6a01ab0e57c..5676e56f2842 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleriesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleriesOperationsExtensions.cs @@ -22,100 +22,62 @@ namespace Microsoft.Azure.Management.Compute public static partial class GalleriesOperationsExtensions { /// - /// Create or update a Shared Image Gallery. + /// List galleries under a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery. The allowed characters are alphabets - /// and numbers with dots and periods allowed in the middle. The maximum length - /// is 80 characters. - /// - /// - /// Parameters supplied to the create or update Shared Image Gallery operation. - /// - public static Gallery CreateOrUpdate(this IGalleriesOperations operations, string resourceGroupName, string galleryName, Gallery gallery) + public static IPage List(this IGalleriesOperations operations) { - return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, gallery).GetAwaiter().GetResult(); + return operations.ListAsync().GetAwaiter().GetResult(); } /// - /// Create or update a Shared Image Gallery. + /// List galleries under a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery. The allowed characters are alphabets - /// and numbers with dots and periods allowed in the middle. The maximum length - /// is 80 characters. - /// - /// - /// Parameters supplied to the create or update Shared Image Gallery operation. - /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IGalleriesOperations operations, string resourceGroupName, string galleryName, Gallery gallery, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IGalleriesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, gallery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Update a Shared Image Gallery. + /// List galleries under a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The name of the Shared Image Gallery. The allowed characters are alphabets - /// and numbers with dots and periods allowed in the middle. The maximum length - /// is 80 characters. - /// - /// - /// Parameters supplied to the update Shared Image Gallery operation. - /// - public static Gallery Update(this IGalleriesOperations operations, string resourceGroupName, string galleryName, GalleryUpdate gallery) + public static IPage ListByResourceGroup(this IGalleriesOperations operations, string resourceGroupName) { - return operations.UpdateAsync(resourceGroupName, galleryName, gallery).GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); } /// - /// Update a Shared Image Gallery. + /// List galleries under a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery. The allowed characters are alphabets - /// and numbers with dots and periods allowed in the middle. The maximum length - /// is 80 characters. - /// - /// - /// Parameters supplied to the update Shared Image Gallery operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IGalleriesOperations operations, string resourceGroupName, string galleryName, GalleryUpdate gallery, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IGalleriesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, gallery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -128,7 +90,7 @@ public static Gallery Update(this IGalleriesOperations operations, string resour /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the Shared Image Gallery. @@ -153,7 +115,7 @@ public static Gallery Update(this IGalleriesOperations operations, string resour /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the Shared Image Gallery. @@ -178,102 +140,132 @@ public static Gallery Update(this IGalleriesOperations operations, string resour } /// - /// Delete a Shared Image Gallery. + /// Create or update a Shared Image Gallery. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery to be deleted. + /// The name of the Shared Image Gallery. /// - public static void Delete(this IGalleriesOperations operations, string resourceGroupName, string galleryName) + /// + /// Parameters supplied to the create or update Shared Image Gallery operation. + /// + public static Gallery CreateOrUpdate(this IGalleriesOperations operations, string resourceGroupName, string galleryName, Gallery gallery) { - operations.DeleteAsync(resourceGroupName, galleryName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, gallery).GetAwaiter().GetResult(); } /// - /// Delete a Shared Image Gallery. + /// Create or update a Shared Image Gallery. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery to be deleted. + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the create or update Shared Image Gallery operation. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IGalleriesOperations operations, string resourceGroupName, string galleryName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IGalleriesOperations operations, string resourceGroupName, string galleryName, Gallery gallery, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, gallery, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// List galleries under a resource group. + /// Update a Shared Image Gallery. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - public static IPage ListByResourceGroup(this IGalleriesOperations operations, string resourceGroupName) + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update Shared Image Gallery operation. + /// + public static Gallery Update(this IGalleriesOperations operations, string resourceGroupName, string galleryName, GalleryUpdate gallery) { - return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, galleryName, gallery).GetAwaiter().GetResult(); } /// - /// List galleries under a resource group. + /// Update a Shared Image Gallery. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update Shared Image Gallery operation. /// /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IGalleriesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IGalleriesOperations operations, string resourceGroupName, string galleryName, GalleryUpdate gallery, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, gallery, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// List galleries under a subscription. + /// Delete a Shared Image Gallery. /// /// /// The operations group for this extension method. /// - public static IPage List(this IGalleriesOperations operations) + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + public static void Delete(this IGalleriesOperations operations, string resourceGroupName, string galleryName) { - return operations.ListAsync().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, galleryName).GetAwaiter().GetResult(); } /// - /// List galleries under a subscription. + /// Delete a Shared Image Gallery. /// /// /// The operations group for this extension method. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IGalleriesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IGalleriesOperations operations, string resourceGroupName, string galleryName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -283,12 +275,10 @@ public static IPage List(this IGalleriesOperations operations) /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery. The allowed characters are alphabets - /// and numbers with dots and periods allowed in the middle. The maximum length - /// is 80 characters. + /// The name of the Shared Image Gallery. /// /// /// Parameters supplied to the create or update Shared Image Gallery operation. @@ -305,12 +295,10 @@ public static Gallery BeginCreateOrUpdate(this IGalleriesOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery. The allowed characters are alphabets - /// and numbers with dots and periods allowed in the middle. The maximum length - /// is 80 characters. + /// The name of the Shared Image Gallery. /// /// /// Parameters supplied to the create or update Shared Image Gallery operation. @@ -333,12 +321,10 @@ public static Gallery BeginCreateOrUpdate(this IGalleriesOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery. The allowed characters are alphabets - /// and numbers with dots and periods allowed in the middle. The maximum length - /// is 80 characters. + /// The name of the Shared Image Gallery. /// /// /// Parameters supplied to the update Shared Image Gallery operation. @@ -355,12 +341,10 @@ public static Gallery BeginUpdate(this IGalleriesOperations operations, string r /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery. The allowed characters are alphabets - /// and numbers with dots and periods allowed in the middle. The maximum length - /// is 80 characters. + /// The name of the Shared Image Gallery. /// /// /// Parameters supplied to the update Shared Image Gallery operation. @@ -383,10 +367,10 @@ public static Gallery BeginUpdate(this IGalleriesOperations operations, string r /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery to be deleted. + /// The name of the Shared Image Gallery. /// public static void BeginDelete(this IGalleriesOperations operations, string resourceGroupName, string galleryName) { @@ -400,10 +384,10 @@ public static void BeginDelete(this IGalleriesOperations operations, string reso /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery to be deleted. + /// The name of the Shared Image Gallery. /// /// /// The cancellation token. @@ -414,7 +398,7 @@ public static void BeginDelete(this IGalleriesOperations operations, string reso } /// - /// List galleries under a resource group. + /// List galleries under a subscription. /// /// /// The operations group for this extension method. @@ -422,13 +406,13 @@ public static void BeginDelete(this IGalleriesOperations operations, string reso /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByResourceGroupNext(this IGalleriesOperations operations, string nextPageLink) + public static IPage ListNext(this IGalleriesOperations operations, string nextPageLink) { - return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// List galleries under a resource group. + /// List galleries under a subscription. /// /// /// The operations group for this extension method. @@ -439,16 +423,16 @@ public static IPage ListByResourceGroupNext(this IGalleriesOperations o /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this IGalleriesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this IGalleriesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// List galleries under a subscription. + /// List galleries under a resource group. /// /// /// The operations group for this extension method. @@ -456,13 +440,13 @@ public static IPage ListByResourceGroupNext(this IGalleriesOperations o /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IGalleriesOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this IGalleriesOperations operations, string nextPageLink) { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// List galleries under a subscription. + /// List galleries under a resource group. /// /// /// The operations group for this extension method. @@ -473,9 +457,9 @@ public static IPage ListNext(this IGalleriesOperations operations, stri /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IGalleriesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this IGalleriesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationVersionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationVersionsOperations.cs index ee7e7ec246e5..c3d4c8a35bf6 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationVersionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationVersionsOperations.cs @@ -51,98 +51,16 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update a gallery Application Version. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. - /// - /// - /// The name of the gallery Application Definition in which the Application - /// Version is to be created. - /// - /// - /// The name of the gallery Application Version to be created. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the create or update gallery Application Version - /// operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersion galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, galleryApplicationVersion, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Update a gallery Application Version. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. - /// - /// - /// The name of the gallery Application Definition in which the Application - /// Version is to be updated. - /// - /// - /// The name of the gallery Application Version to be updated. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the update gallery Application Version operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersionUpdate galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, galleryApplicationVersion, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Retrieves information about a gallery Application Version. + /// List gallery Application Versions in a gallery Application Definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version resides. - /// - /// - /// The name of the gallery Application Version to be retrieved. - /// - /// - /// The expand expression to apply on the operation. Possible values include: - /// 'ReplicationStatus', 'UefiSettings' + /// The name of the gallery Application Definition to be retrieved. /// /// /// Headers that will be added to request. @@ -165,7 +83,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByGalleryApplicationWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -175,6 +93,17 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -183,10 +112,6 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationName"); } - if (galleryApplicationVersionName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationVersionName"); - } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -195,28 +120,21 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryApplicationName", galleryApplicationName); - tracingParameters.Add("galleryApplicationVersionName", galleryApplicationVersionName); - tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByGalleryApplication", 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/galleries/{galleryName}/applications/{galleryApplicationName}/versions/{galleryApplicationVersionName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{galleryApplicationName}/versions").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); _url = _url.Replace("{galleryApplicationName}", System.Uri.EscapeDataString(galleryApplicationName)); - _url = _url.Replace("{galleryApplicationVersionName}", System.Uri.EscapeDataString(galleryApplicationVersionName)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -314,7 +232,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -327,7 +245,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -347,48 +265,23 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) } /// - /// Delete a gallery Application Version. + /// Retrieves information about a gallery Application Version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version resides. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be deleted. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// List gallery Application Versions in a gallery Application Definition. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the gallery Application Version to be retrieved. /// - /// - /// The name of the Shared Application Gallery Application Definition from - /// which the Application Versions are to be listed. + /// + /// The expand expression to apply on the operation. Possible values include: + /// 'ReplicationStatus', 'UefiSettings' /// /// /// Headers that will be added to request. @@ -411,7 +304,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByGalleryApplicationWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -421,6 +314,17 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -429,6 +333,10 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationName"); } + if (galleryApplicationVersionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationVersionName"); + } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -437,25 +345,32 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryApplicationName", galleryApplicationName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("galleryApplicationVersionName", galleryApplicationVersionName); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByGalleryApplication", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/galleries/{galleryName}/applications/{galleryApplicationName}/versions").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{galleryApplicationName}/versions/{galleryApplicationVersionName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); _url = _url.Replace("{galleryApplicationName}", System.Uri.EscapeDataString(galleryApplicationName)); + _url = _url.Replace("{galleryApplicationVersionName}", System.Uri.EscapeDataString(galleryApplicationVersionName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -549,7 +464,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -562,7 +477,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -585,21 +500,107 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) /// Create or update a gallery Application Version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version is to be created. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be created. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery Application Version to be retrieved. + /// + /// + /// Parameters supplied to the create or update gallery Application Version + /// operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersion galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, galleryApplicationVersion, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update a gallery Application Version. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery Application Definition to be retrieved. + /// + /// + /// The name of the gallery Application Version to be retrieved. + /// + /// + /// Parameters supplied to the update gallery Application Version operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersionUpdate galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, galleryApplicationVersion, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete a gallery Application Version. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery Application Definition to be retrieved. + /// + /// + /// The name of the gallery Application Version to be retrieved. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Create or update a gallery Application Version. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery Application Definition to be retrieved. + /// + /// + /// The name of the gallery Application Version to be retrieved. /// /// /// Parameters supplied to the create or update gallery Application Version @@ -626,7 +627,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersion galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersion galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -636,6 +637,17 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -664,11 +676,11 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryApplicationName", galleryApplicationName); tracingParameters.Add("galleryApplicationVersionName", galleryApplicationVersionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("galleryApplicationVersion", galleryApplicationVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); @@ -785,7 +797,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -828,23 +840,18 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) + try { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + _httpResponse.Dispose(); } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); } if (_shouldTrace) { @@ -857,21 +864,16 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) /// Update a gallery Application Version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version is to be updated. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be updated. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery Application Version to be retrieved. /// /// /// Parameters supplied to the update gallery Application Version operation. @@ -897,7 +899,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersionUpdate galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersionUpdate galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -907,6 +909,17 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -931,11 +944,11 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryApplicationName", galleryApplicationName); tracingParameters.Add("galleryApplicationVersionName", galleryApplicationVersionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("galleryApplicationVersion", galleryApplicationVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); @@ -1052,7 +1065,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1077,6 +1090,19 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1088,18 +1114,16 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) /// Delete a gallery Application Version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version resides. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be deleted. + /// The name of the gallery Application Version to be retrieved. /// /// /// Headers that will be added to request. @@ -1129,6 +1153,17 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -1149,11 +1184,11 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryApplicationName", galleryApplicationName); tracingParameters.Add("galleryApplicationVersionName", galleryApplicationVersionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationVersionsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationVersionsOperationsExtensions.cs index 1b9a52d5a0fd..04cc30025fb1 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationVersionsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationVersionsOperationsExtensions.cs @@ -22,308 +22,276 @@ namespace Microsoft.Azure.Management.Compute public static partial class GalleryApplicationVersionsOperationsExtensions { /// - /// Create or update a gallery Application Version. + /// List gallery Application Versions in a gallery Application Definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version is to be created. - /// - /// - /// The name of the gallery Application Version to be created. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the create or update gallery Application Version - /// operation. + /// The name of the gallery Application Definition to be retrieved. /// - public static GalleryApplicationVersion CreateOrUpdate(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersion galleryApplicationVersion) + public static IPage ListByGalleryApplication(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName) { - return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, galleryApplicationVersion).GetAwaiter().GetResult(); + return operations.ListByGalleryApplicationAsync(resourceGroupName, galleryName, galleryApplicationName).GetAwaiter().GetResult(); } /// - /// Create or update a gallery Application Version. + /// List gallery Application Versions in a gallery Application Definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version is to be created. - /// - /// - /// The name of the gallery Application Version to be created. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the create or update gallery Application Version - /// operation. + /// The name of the gallery Application Definition to be retrieved. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersion galleryApplicationVersion, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByGalleryApplicationAsync(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, galleryApplicationVersion, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByGalleryApplicationWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Update a gallery Application Version. + /// Retrieves information about a gallery Application Version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version is to be updated. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be updated. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery Application Version to be retrieved. /// - /// - /// Parameters supplied to the update gallery Application Version operation. + /// + /// The expand expression to apply on the operation. Possible values include: + /// 'ReplicationStatus', 'UefiSettings' /// - public static GalleryApplicationVersion Update(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersionUpdate galleryApplicationVersion) + public static GalleryApplicationVersion Get(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, string expand = default(string)) { - return operations.UpdateAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, galleryApplicationVersion).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, expand).GetAwaiter().GetResult(); } /// - /// Update a gallery Application Version. + /// Retrieves information about a gallery Application Version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version is to be updated. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be updated. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery Application Version to be retrieved. /// - /// - /// Parameters supplied to the update gallery Application Version operation. + /// + /// The expand expression to apply on the operation. Possible values include: + /// 'ReplicationStatus', 'UefiSettings' /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersionUpdate galleryApplicationVersion, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, galleryApplicationVersion, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Retrieves information about a gallery Application Version. + /// Create or update a gallery Application Version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version resides. + /// The name of the gallery Application Definition to be retrieved. /// /// /// The name of the gallery Application Version to be retrieved. /// - /// - /// The expand expression to apply on the operation. Possible values include: - /// 'ReplicationStatus', 'UefiSettings' + /// + /// Parameters supplied to the create or update gallery Application Version + /// operation. /// - public static GalleryApplicationVersion Get(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, string expand = default(string)) + public static GalleryApplicationVersion CreateOrUpdate(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersion galleryApplicationVersion) { - return operations.GetAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, expand).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, galleryApplicationVersion).GetAwaiter().GetResult(); } /// - /// Retrieves information about a gallery Application Version. + /// Create or update a gallery Application Version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version resides. + /// The name of the gallery Application Definition to be retrieved. /// /// /// The name of the gallery Application Version to be retrieved. /// - /// - /// The expand expression to apply on the operation. Possible values include: - /// 'ReplicationStatus', 'UefiSettings' + /// + /// Parameters supplied to the create or update gallery Application Version + /// operation. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersion galleryApplicationVersion, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, galleryApplicationVersion, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Delete a gallery Application Version. + /// Update a gallery Application Version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version resides. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be deleted. + /// The name of the gallery Application Version to be retrieved. /// - public static void Delete(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName) + /// + /// Parameters supplied to the update gallery Application Version operation. + /// + public static GalleryApplicationVersion Update(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersionUpdate galleryApplicationVersion) { - operations.DeleteAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, galleryApplicationVersion).GetAwaiter().GetResult(); } /// - /// Delete a gallery Application Version. + /// Update a gallery Application Version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version resides. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be deleted. + /// The name of the gallery Application Version to be retrieved. + /// + /// + /// Parameters supplied to the update gallery Application Version operation. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersionUpdate galleryApplicationVersion, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, galleryApplicationVersion, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// List gallery Application Versions in a gallery Application Definition. + /// Delete a gallery Application Version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the Shared Application Gallery Application Definition from - /// which the Application Versions are to be listed. + /// The name of the gallery Application Definition to be retrieved. /// - public static IPage ListByGalleryApplication(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName) + /// + /// The name of the gallery Application Version to be retrieved. + /// + public static void Delete(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName) { - return operations.ListByGalleryApplicationAsync(resourceGroupName, galleryName, galleryApplicationName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName).GetAwaiter().GetResult(); } /// - /// List gallery Application Versions in a gallery Application Definition. + /// Delete a gallery Application Version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the Shared Application Gallery Application Definition from - /// which the Application Versions are to be listed. + /// The name of the gallery Application Definition to be retrieved. + /// + /// + /// The name of the gallery Application Version to be retrieved. /// /// /// The cancellation token. /// - public static async Task> ListByGalleryApplicationAsync(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByGalleryApplicationWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplicationVersionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -333,21 +301,16 @@ public static IPage ListByGalleryApplication(this IGa /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version is to be created. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be created. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery Application Version to be retrieved. /// /// /// Parameters supplied to the create or update gallery Application Version @@ -365,21 +328,16 @@ public static GalleryApplicationVersion BeginCreateOrUpdate(this IGalleryApplica /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version is to be created. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be created. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery Application Version to be retrieved. /// /// /// Parameters supplied to the create or update gallery Application Version @@ -403,21 +361,16 @@ public static GalleryApplicationVersion BeginCreateOrUpdate(this IGalleryApplica /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version is to be updated. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be updated. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery Application Version to be retrieved. /// /// /// Parameters supplied to the update gallery Application Version operation. @@ -434,21 +387,16 @@ public static GalleryApplicationVersion BeginUpdate(this IGalleryApplicationVers /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version is to be updated. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be updated. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery Application Version to be retrieved. /// /// /// Parameters supplied to the update gallery Application Version operation. @@ -471,18 +419,16 @@ public static GalleryApplicationVersion BeginUpdate(this IGalleryApplicationVers /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version resides. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be deleted. + /// The name of the gallery Application Version to be retrieved. /// public static void BeginDelete(this IGalleryApplicationVersionsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName) { @@ -496,18 +442,16 @@ public static void BeginDelete(this IGalleryApplicationVersionsOperations operat /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the Application - /// Version resides. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be deleted. + /// The name of the gallery Application Version to be retrieved. /// /// /// The cancellation token. diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationsOperations.cs index fc6ea8946278..11f810fb4865 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationsOperations.cs @@ -51,79 +51,13 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update a gallery Application Definition. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be created. - /// - /// - /// The name of the gallery Application Definition to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the create or update gallery Application operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplication galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Update a gallery Application Definition. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be updated. - /// - /// - /// The name of the gallery Application Definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the update gallery Application operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplicationUpdate galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Retrieves information about a gallery Application Definition. + /// List gallery Application Definitions in a gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery from which the Application - /// Definitions are to be retrieved. - /// - /// - /// The name of the gallery Application Definition to be retrieved. + /// The name of the Shared Image Gallery. /// /// /// Headers that will be added to request. @@ -146,7 +80,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -156,13 +90,20 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (galleryName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (galleryApplicationName == null) + if (galleryName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationName"); + throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } string apiVersion = "2024-03-03"; // Tracing @@ -172,20 +113,18 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); - tracingParameters.Add("galleryApplicationName", galleryApplicationName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByGallery", 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/galleries/{galleryName}/applications/{galleryApplicationName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); - _url = _url.Replace("{galleryApplicationName}", System.Uri.EscapeDataString(galleryApplicationName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -284,7 +223,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -297,7 +236,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -317,40 +256,16 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) } /// - /// Delete a gallery Application. + /// Retrieves information about a gallery Application Definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be deleted. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// List gallery Application Definitions in a gallery. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Application Gallery from which Application - /// Definitions are to be listed. + /// The name of the gallery Application Definition to be retrieved. /// /// /// Headers that will be added to request. @@ -373,7 +288,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -383,10 +298,25 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } + if (galleryApplicationName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationName"); + } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -395,18 +325,20 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("galleryApplicationName", galleryApplicationName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByGallery", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/galleries/{galleryName}/applications").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{galleryApplicationName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); + _url = _url.Replace("{galleryApplicationName}", System.Uri.EscapeDataString(galleryApplicationName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -505,7 +437,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -518,7 +450,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -541,16 +473,94 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) /// Create or update a gallery Application Definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be created. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. + /// The name of the gallery Application Definition to be retrieved. + /// + /// + /// Parameters supplied to the create or update gallery Application operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplication galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update a gallery Application Definition. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery Application Definition to be retrieved. + /// + /// + /// Parameters supplied to the update gallery Application operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplicationUpdate galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete a gallery Application. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery Application Definition to be retrieved. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Create or update a gallery Application Definition. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery Application Definition to be retrieved. /// /// /// Parameters supplied to the create or update gallery Application operation. @@ -576,7 +586,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplication galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplication galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -586,6 +596,17 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -610,10 +631,10 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryApplicationName", galleryApplicationName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("galleryApplication", galleryApplication); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); @@ -729,7 +750,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -772,23 +793,18 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) + try { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + _httpResponse.Dispose(); } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); } if (_shouldTrace) { @@ -801,16 +817,13 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) /// Update a gallery Application Definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. + /// The name of the gallery Application Definition to be retrieved. /// /// /// Parameters supplied to the update gallery Application operation. @@ -836,7 +849,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplicationUpdate galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplicationUpdate galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -846,6 +859,17 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -866,10 +890,10 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryApplicationName", galleryApplicationName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("galleryApplication", galleryApplication); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); @@ -985,7 +1009,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1010,6 +1034,19 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1021,14 +1058,13 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) /// Delete a gallery Application. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be deleted. + /// The name of the gallery Application Definition to be retrieved. /// /// /// Headers that will be added to request. @@ -1058,6 +1094,17 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -1074,10 +1121,10 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryApplicationName", galleryApplicationName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationsOperationsExtensions.cs index c921093fd306..ee2a7e1287d8 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleryApplicationsOperationsExtensions.cs @@ -22,254 +22,236 @@ namespace Microsoft.Azure.Management.Compute public static partial class GalleryApplicationsOperationsExtensions { /// - /// Create or update a gallery Application Definition. + /// List gallery Application Definitions in a gallery. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be created. - /// - /// - /// The name of the gallery Application Definition to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the create or update gallery Application operation. + /// The name of the Shared Image Gallery. /// - public static GalleryApplication CreateOrUpdate(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplication galleryApplication) + public static IPage ListByGallery(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName) { - return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication).GetAwaiter().GetResult(); + return operations.ListByGalleryAsync(resourceGroupName, galleryName).GetAwaiter().GetResult(); } /// - /// Create or update a gallery Application Definition. + /// List gallery Application Definitions in a gallery. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be created. - /// - /// - /// The name of the gallery Application Definition to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the create or update gallery Application operation. + /// The name of the Shared Image Gallery. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplication galleryApplication, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByGalleryAsync(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByGalleryWithHttpMessagesAsync(resourceGroupName, galleryName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Update a gallery Application Definition. + /// Retrieves information about a gallery Application Definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the update gallery Application operation. + /// The name of the gallery Application Definition to be retrieved. /// - public static GalleryApplication Update(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplicationUpdate galleryApplication) + public static GalleryApplication Get(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName) { - return operations.UpdateAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, galleryName, galleryApplicationName).GetAwaiter().GetResult(); } /// - /// Update a gallery Application Definition. + /// Retrieves information about a gallery Application Definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the update gallery Application operation. + /// The name of the gallery Application Definition to be retrieved. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplicationUpdate galleryApplication, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Retrieves information about a gallery Application Definition. + /// Create or update a gallery Application Definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery from which the Application - /// Definitions are to be retrieved. + /// The name of the Shared Image Gallery. /// /// /// The name of the gallery Application Definition to be retrieved. /// - public static GalleryApplication Get(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName) + /// + /// Parameters supplied to the create or update gallery Application operation. + /// + public static GalleryApplication CreateOrUpdate(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplication galleryApplication) { - return operations.GetAsync(resourceGroupName, galleryName, galleryApplicationName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication).GetAwaiter().GetResult(); } /// - /// Retrieves information about a gallery Application Definition. + /// Create or update a gallery Application Definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery from which the Application - /// Definitions are to be retrieved. + /// The name of the Shared Image Gallery. /// /// /// The name of the gallery Application Definition to be retrieved. /// + /// + /// Parameters supplied to the create or update gallery Application operation. + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplication galleryApplication, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Delete a gallery Application. + /// Update a gallery Application Definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be deleted. + /// The name of the gallery Application Definition to be retrieved. /// - public static void Delete(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName) + /// + /// Parameters supplied to the update gallery Application operation. + /// + public static GalleryApplication Update(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplicationUpdate galleryApplication) { - operations.DeleteAsync(resourceGroupName, galleryName, galleryApplicationName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication).GetAwaiter().GetResult(); } /// - /// Delete a gallery Application. + /// Update a gallery Application Definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be deleted. + /// The name of the gallery Application Definition to be retrieved. + /// + /// + /// Parameters supplied to the update gallery Application operation. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplicationUpdate galleryApplication, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, galleryApplication, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// List gallery Application Definitions in a gallery. + /// Delete a gallery Application. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery from which Application - /// Definitions are to be listed. + /// The name of the Shared Image Gallery. /// - public static IPage ListByGallery(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName) + /// + /// The name of the gallery Application Definition to be retrieved. + /// + public static void Delete(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName) { - return operations.ListByGalleryAsync(resourceGroupName, galleryName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, galleryName, galleryApplicationName).GetAwaiter().GetResult(); } /// - /// List gallery Application Definitions in a gallery. + /// Delete a gallery Application. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery from which Application - /// Definitions are to be listed. + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery Application Definition to be retrieved. /// /// /// The cancellation token. /// - public static async Task> ListByGalleryAsync(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByGalleryWithHttpMessagesAsync(resourceGroupName, galleryName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryApplicationName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -279,16 +261,13 @@ public static IPage ListByGallery(this IGalleryApplicationsO /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be created. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. + /// The name of the gallery Application Definition to be retrieved. /// /// /// Parameters supplied to the create or update gallery Application operation. @@ -305,16 +284,13 @@ public static GalleryApplication BeginCreateOrUpdate(this IGalleryApplicationsOp /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be created. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. + /// The name of the gallery Application Definition to be retrieved. /// /// /// Parameters supplied to the create or update gallery Application operation. @@ -337,16 +313,13 @@ public static GalleryApplication BeginCreateOrUpdate(this IGalleryApplicationsOp /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. + /// The name of the gallery Application Definition to be retrieved. /// /// /// Parameters supplied to the update gallery Application operation. @@ -363,16 +336,13 @@ public static GalleryApplication BeginUpdate(this IGalleryApplicationsOperations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. + /// The name of the gallery Application Definition to be retrieved. /// /// /// Parameters supplied to the update gallery Application operation. @@ -395,14 +365,13 @@ public static GalleryApplication BeginUpdate(this IGalleryApplicationsOperations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be deleted. + /// The name of the gallery Application Definition to be retrieved. /// public static void BeginDelete(this IGalleryApplicationsOperations operations, string resourceGroupName, string galleryName, string galleryApplicationName) { @@ -416,14 +385,13 @@ public static void BeginDelete(this IGalleryApplicationsOperations operations, s /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be deleted. + /// The name of the gallery Application Definition to be retrieved. /// /// /// The cancellation token. diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleryImageVersionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleryImageVersionsOperations.cs index b078d9845244..8933ad31cac2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleryImageVersionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleryImageVersionsOperations.cs @@ -51,95 +51,16 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update a gallery image version. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery in which the Image Definition resides. - /// - /// - /// The name of the gallery image definition in which the Image Version is to - /// be created. - /// - /// - /// The name of the gallery image version to be created. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the create or update gallery image version - /// operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Update a gallery image version. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery in which the Image Definition resides. - /// - /// - /// The name of the gallery image definition in which the Image Version is to - /// be updated. - /// - /// - /// The name of the gallery image version to be updated. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the update gallery image version operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Retrieves information about a gallery image version. + /// List gallery image versions in a gallery image definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// resides. - /// - /// - /// The name of the gallery image version to be retrieved. - /// - /// - /// The expand expression to apply on the operation. Possible values include: - /// 'ReplicationStatus', 'UefiSettings' + /// The name of the gallery image definition to be retrieved. /// /// /// Headers that will be added to request. @@ -162,7 +83,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByGalleryImageWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -172,6 +93,17 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -180,10 +112,6 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - if (galleryImageVersionName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); - } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -192,28 +120,21 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryImageName", galleryImageName); - tracingParameters.Add("galleryImageVersionName", galleryImageVersionName); - tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByGalleryImage", 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/galleries/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{galleryImageName}/versions").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName)); - _url = _url.Replace("{galleryImageVersionName}", System.Uri.EscapeDataString(galleryImageVersionName)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -311,7 +232,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -324,7 +245,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -344,46 +265,23 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// Delete a gallery image version. + /// Retrieves information about a gallery image version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// resides. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be deleted. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// List gallery image versions in a gallery image definition. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the gallery image version to be retrieved. /// - /// - /// The name of the Shared Image Gallery Image Definition from which the Image - /// Versions are to be listed. + /// + /// The expand expression to apply on the operation. Possible values include: + /// 'ReplicationStatus', 'UefiSettings' /// /// /// Headers that will be added to request. @@ -406,7 +304,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByGalleryImageWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -416,6 +314,17 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -424,6 +333,10 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } + if (galleryImageVersionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); + } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -432,25 +345,32 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryImageName", galleryImageName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("galleryImageVersionName", galleryImageVersionName); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByGalleryImage", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/galleries/{galleryName}/images/{galleryImageName}/versions").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName)); + _url = _url.Replace("{galleryImageVersionName}", System.Uri.EscapeDataString(galleryImageVersionName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -544,7 +464,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -557,7 +477,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -580,20 +500,107 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// Create or update a gallery image version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version is to - /// be created. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be created. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery image version to be retrieved. + /// + /// + /// Parameters supplied to the create or update gallery image version + /// operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update a gallery image version. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery image definition to be retrieved. + /// + /// + /// The name of the gallery image version to be retrieved. + /// + /// + /// Parameters supplied to the update gallery image version operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete a gallery image version. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery image definition to be retrieved. + /// + /// + /// The name of the gallery image version to be retrieved. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Create or update a gallery image version. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery image definition to be retrieved. + /// + /// + /// The name of the gallery image version to be retrieved. /// /// /// Parameters supplied to the create or update gallery image version @@ -620,7 +627,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -630,6 +637,17 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -658,11 +676,11 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryImageName", galleryImageName); tracingParameters.Add("galleryImageVersionName", galleryImageVersionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("galleryImageVersion", galleryImageVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); @@ -779,7 +797,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -822,23 +840,18 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) + try { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + _httpResponse.Dispose(); } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); } if (_shouldTrace) { @@ -851,20 +864,16 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// Update a gallery image version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version is to - /// be updated. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be updated. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery image version to be retrieved. /// /// /// Parameters supplied to the update gallery image version operation. @@ -890,7 +899,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -900,6 +909,17 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -924,11 +944,11 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryImageName", galleryImageName); tracingParameters.Add("galleryImageVersionName", galleryImageVersionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("galleryImageVersion", galleryImageVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); @@ -1045,7 +1065,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1070,6 +1090,19 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1081,17 +1114,16 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// Delete a gallery image version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// resides. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be deleted. + /// The name of the gallery image version to be retrieved. /// /// /// Headers that will be added to request. @@ -1121,6 +1153,17 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -1141,11 +1184,11 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryImageName", galleryImageName); tracingParameters.Add("galleryImageVersionName", galleryImageVersionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleryImageVersionsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleryImageVersionsOperationsExtensions.cs index 1c054697fe65..19fe052490ea 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleryImageVersionsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleryImageVersionsOperationsExtensions.cs @@ -22,298 +22,276 @@ namespace Microsoft.Azure.Management.Compute public static partial class GalleryImageVersionsOperationsExtensions { /// - /// Create or update a gallery image version. + /// List gallery image versions in a gallery image definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version is to - /// be created. - /// - /// - /// The name of the gallery image version to be created. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the create or update gallery image version - /// operation. + /// The name of the gallery image definition to be retrieved. /// - public static GalleryImageVersion CreateOrUpdate(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion) + public static IPage ListByGalleryImage(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName) { - return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion).GetAwaiter().GetResult(); + return operations.ListByGalleryImageAsync(resourceGroupName, galleryName, galleryImageName).GetAwaiter().GetResult(); } /// - /// Create or update a gallery image version. + /// List gallery image versions in a gallery image definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version is to - /// be created. - /// - /// - /// The name of the gallery image version to be created. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the create or update gallery image version - /// operation. + /// The name of the gallery image definition to be retrieved. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByGalleryImageAsync(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByGalleryImageWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Update a gallery image version. + /// Retrieves information about a gallery image version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version is to - /// be updated. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be updated. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery image version to be retrieved. /// - /// - /// Parameters supplied to the update gallery image version operation. + /// + /// The expand expression to apply on the operation. Possible values include: + /// 'ReplicationStatus', 'UefiSettings' /// - public static GalleryImageVersion Update(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion) + public static GalleryImageVersion Get(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, string expand = default(string)) { - return operations.UpdateAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, expand).GetAwaiter().GetResult(); } /// - /// Update a gallery image version. + /// Retrieves information about a gallery image version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version is to - /// be updated. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be updated. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery image version to be retrieved. /// - /// - /// Parameters supplied to the update gallery image version operation. + /// + /// The expand expression to apply on the operation. Possible values include: + /// 'ReplicationStatus', 'UefiSettings' /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Retrieves information about a gallery image version. + /// Create or update a gallery image version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// resides. + /// The name of the gallery image definition to be retrieved. /// /// /// The name of the gallery image version to be retrieved. /// - /// - /// The expand expression to apply on the operation. Possible values include: - /// 'ReplicationStatus', 'UefiSettings' + /// + /// Parameters supplied to the create or update gallery image version + /// operation. /// - public static GalleryImageVersion Get(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, string expand = default(string)) + public static GalleryImageVersion CreateOrUpdate(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion) { - return operations.GetAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, expand).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion).GetAwaiter().GetResult(); } /// - /// Retrieves information about a gallery image version. + /// Create or update a gallery image version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// resides. + /// The name of the gallery image definition to be retrieved. /// /// /// The name of the gallery image version to be retrieved. /// - /// - /// The expand expression to apply on the operation. Possible values include: - /// 'ReplicationStatus', 'UefiSettings' + /// + /// Parameters supplied to the create or update gallery image version + /// operation. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Delete a gallery image version. + /// Update a gallery image version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// resides. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be deleted. + /// The name of the gallery image version to be retrieved. /// - public static void Delete(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName) + /// + /// Parameters supplied to the update gallery image version operation. + /// + public static GalleryImageVersion Update(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion) { - operations.DeleteAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion).GetAwaiter().GetResult(); } /// - /// Delete a gallery image version. + /// Update a gallery image version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// resides. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be deleted. + /// The name of the gallery image version to be retrieved. + /// + /// + /// Parameters supplied to the update gallery image version operation. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, galleryImageVersion, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// List gallery image versions in a gallery image definition. + /// Delete a gallery image version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the Shared Image Gallery Image Definition from which the Image - /// Versions are to be listed. + /// The name of the gallery image definition to be retrieved. /// - public static IPage ListByGalleryImage(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName) + /// + /// The name of the gallery image version to be retrieved. + /// + public static void Delete(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName) { - return operations.ListByGalleryImageAsync(resourceGroupName, galleryName, galleryImageName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName).GetAwaiter().GetResult(); } /// - /// List gallery image versions in a gallery image definition. + /// Delete a gallery image version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the Shared Image Gallery Image Definition from which the Image - /// Versions are to be listed. + /// The name of the gallery image definition to be retrieved. + /// + /// + /// The name of the gallery image version to be retrieved. /// /// /// The cancellation token. /// - public static async Task> ListByGalleryImageAsync(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByGalleryImageWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImageVersionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -323,20 +301,16 @@ public static IPage ListByGalleryImage(this IGalleryImageVe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version is to - /// be created. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be created. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery image version to be retrieved. /// /// /// Parameters supplied to the create or update gallery image version @@ -354,20 +328,16 @@ public static GalleryImageVersion BeginCreateOrUpdate(this IGalleryImageVersions /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version is to - /// be created. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be created. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery image version to be retrieved. /// /// /// Parameters supplied to the create or update gallery image version @@ -391,20 +361,16 @@ public static GalleryImageVersion BeginCreateOrUpdate(this IGalleryImageVersions /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version is to - /// be updated. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be updated. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery image version to be retrieved. /// /// /// Parameters supplied to the update gallery image version operation. @@ -421,20 +387,16 @@ public static GalleryImageVersion BeginUpdate(this IGalleryImageVersionsOperatio /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version is to - /// be updated. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be updated. Needs to follow - /// semantic version name pattern: The allowed characters are digit and period. - /// Digits must be within the range of a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery image version to be retrieved. /// /// /// Parameters supplied to the update gallery image version operation. @@ -457,17 +419,16 @@ public static GalleryImageVersion BeginUpdate(this IGalleryImageVersionsOperatio /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// resides. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be deleted. + /// The name of the gallery image version to be retrieved. /// public static void BeginDelete(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName) { @@ -481,17 +442,16 @@ public static void BeginDelete(this IGalleryImageVersionsOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// resides. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be deleted. + /// The name of the gallery image version to be retrieved. /// /// /// The cancellation token. diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleryImagesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleryImagesOperations.cs index 38db24826519..f5f797b41b58 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleryImagesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleryImagesOperations.cs @@ -51,79 +51,13 @@ internal GalleryImagesOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update a gallery image definition. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// created. - /// - /// - /// The name of the gallery image definition to be created or updated. The - /// allowed characters are alphabets and numbers with dots, dashes, and periods - /// allowed in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the create or update gallery image operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImage, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Update a gallery image definition. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// updated. - /// - /// - /// The name of the gallery image definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the update gallery image operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImage, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Retrieves information about a gallery image definition. + /// List gallery image definitions in a gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which the Image Definitions are - /// to be retrieved. - /// - /// - /// The name of the gallery image definition to be retrieved. + /// The name of the Shared Image Gallery. /// /// /// Headers that will be added to request. @@ -146,7 +80,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -156,13 +90,20 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (galleryName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (galleryImageName == null) + if (galleryName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); + throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } string apiVersion = "2024-03-03"; // Tracing @@ -172,20 +113,18 @@ internal GalleryImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); - tracingParameters.Add("galleryImageName", galleryImageName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByGallery", 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/galleries/{galleryName}/images/{galleryImageName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); - _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -284,7 +223,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -297,7 +236,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -317,40 +256,16 @@ internal GalleryImagesOperations(ComputeManagementClient client) } /// - /// Delete a gallery image. + /// Retrieves information about a gallery image definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be deleted. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// List gallery image definitions in a gallery. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery from which Image Definitions are to be - /// listed. + /// The name of the gallery image definition to be retrieved. /// /// /// Headers that will be added to request. @@ -373,7 +288,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -383,10 +298,25 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } + if (galleryImageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); + } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -395,18 +325,20 @@ internal GalleryImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("galleryImageName", galleryImageName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByGallery", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/galleries/{galleryName}/images").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{galleryImageName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); + _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -505,7 +437,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -518,7 +450,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -541,16 +473,94 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// Create or update a gallery image definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// created. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be created or updated. The - /// allowed characters are alphabets and numbers with dots, dashes, and periods - /// allowed in the middle. The maximum length is 80 characters. + /// The name of the gallery image definition to be retrieved. + /// + /// + /// Parameters supplied to the create or update gallery image operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImage, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update a gallery image definition. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery image definition to be retrieved. + /// + /// + /// Parameters supplied to the update gallery image operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImage, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete a gallery image. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery image definition to be retrieved. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Create or update a gallery image definition. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery image definition to be retrieved. /// /// /// Parameters supplied to the create or update gallery image operation. @@ -576,7 +586,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -586,6 +596,17 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -610,10 +631,10 @@ internal GalleryImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryImageName", galleryImageName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("galleryImage", galleryImage); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); @@ -729,7 +750,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -772,23 +793,18 @@ internal GalleryImagesOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) + try { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + _httpResponse.Dispose(); } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); } if (_shouldTrace) { @@ -801,16 +817,13 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// Update a gallery image definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. + /// The name of the gallery image definition to be retrieved. /// /// /// Parameters supplied to the update gallery image operation. @@ -836,7 +849,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -846,6 +859,17 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -866,10 +890,10 @@ internal GalleryImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryImageName", galleryImageName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("galleryImage", galleryImage); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); @@ -985,7 +1009,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1010,6 +1034,19 @@ internal GalleryImagesOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1021,14 +1058,13 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// Delete a gallery image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be deleted. + /// The name of the gallery image definition to be retrieved. /// /// /// Headers that will be added to request. @@ -1058,6 +1094,17 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -1074,10 +1121,10 @@ internal GalleryImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("galleryImageName", galleryImageName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleryImagesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleryImagesOperationsExtensions.cs index 578c096bffa6..f8adcb02bfdb 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleryImagesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleryImagesOperationsExtensions.cs @@ -22,254 +22,236 @@ namespace Microsoft.Azure.Management.Compute public static partial class GalleryImagesOperationsExtensions { /// - /// Create or update a gallery image definition. + /// List gallery image definitions in a gallery. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// created. - /// - /// - /// The name of the gallery image definition to be created or updated. The - /// allowed characters are alphabets and numbers with dots, dashes, and periods - /// allowed in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the create or update gallery image operation. + /// The name of the Shared Image Gallery. /// - public static GalleryImage CreateOrUpdate(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage) + public static IPage ListByGallery(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName) { - return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, galleryImageName, galleryImage).GetAwaiter().GetResult(); + return operations.ListByGalleryAsync(resourceGroupName, galleryName).GetAwaiter().GetResult(); } /// - /// Create or update a gallery image definition. + /// List gallery image definitions in a gallery. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// created. - /// - /// - /// The name of the gallery image definition to be created or updated. The - /// allowed characters are alphabets and numbers with dots, dashes, and periods - /// allowed in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the create or update gallery image operation. + /// The name of the Shared Image Gallery. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByGalleryAsync(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImage, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByGalleryWithHttpMessagesAsync(resourceGroupName, galleryName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Update a gallery image definition. + /// Retrieves information about a gallery image definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the update gallery image operation. + /// The name of the gallery image definition to be retrieved. /// - public static GalleryImage Update(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage) + public static GalleryImage Get(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName) { - return operations.UpdateAsync(resourceGroupName, galleryName, galleryImageName, galleryImage).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, galleryName, galleryImageName).GetAwaiter().GetResult(); } /// - /// Update a gallery image definition. + /// Retrieves information about a gallery image definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the update gallery image operation. + /// The name of the gallery image definition to be retrieved. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImage, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Retrieves information about a gallery image definition. + /// Create or update a gallery image definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which the Image Definitions are - /// to be retrieved. + /// The name of the Shared Image Gallery. /// /// /// The name of the gallery image definition to be retrieved. /// - public static GalleryImage Get(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName) + /// + /// Parameters supplied to the create or update gallery image operation. + /// + public static GalleryImage CreateOrUpdate(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage) { - return operations.GetAsync(resourceGroupName, galleryName, galleryImageName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, galleryImageName, galleryImage).GetAwaiter().GetResult(); } /// - /// Retrieves information about a gallery image definition. + /// Create or update a gallery image definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which the Image Definitions are - /// to be retrieved. + /// The name of the Shared Image Gallery. /// /// /// The name of the gallery image definition to be retrieved. /// + /// + /// Parameters supplied to the create or update gallery image operation. + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImage, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Delete a gallery image. + /// Update a gallery image definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be deleted. + /// The name of the gallery image definition to be retrieved. /// - public static void Delete(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName) + /// + /// Parameters supplied to the update gallery image operation. + /// + public static GalleryImage Update(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage) { - operations.DeleteAsync(resourceGroupName, galleryName, galleryImageName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, galleryName, galleryImageName, galleryImage).GetAwaiter().GetResult(); } /// - /// Delete a gallery image. + /// Update a gallery image definition. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be deleted. + /// The name of the gallery image definition to be retrieved. + /// + /// + /// Parameters supplied to the update gallery image operation. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, galleryImage, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// List gallery image definitions in a gallery. + /// Delete a gallery image. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which Image Definitions are to be - /// listed. + /// The name of the Shared Image Gallery. /// - public static IPage ListByGallery(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName) + /// + /// The name of the gallery image definition to be retrieved. + /// + public static void Delete(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName) { - return operations.ListByGalleryAsync(resourceGroupName, galleryName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, galleryName, galleryImageName).GetAwaiter().GetResult(); } /// - /// List gallery image definitions in a gallery. + /// Delete a gallery image. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which Image Definitions are to be - /// listed. + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery image definition to be retrieved. /// /// /// The cancellation token. /// - public static async Task> ListByGalleryAsync(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByGalleryWithHttpMessagesAsync(resourceGroupName, galleryName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -279,16 +261,13 @@ public static IPage ListByGallery(this IGalleryImagesOperations op /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// created. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be created or updated. The - /// allowed characters are alphabets and numbers with dots, dashes, and periods - /// allowed in the middle. The maximum length is 80 characters. + /// The name of the gallery image definition to be retrieved. /// /// /// Parameters supplied to the create or update gallery image operation. @@ -305,16 +284,13 @@ public static GalleryImage BeginCreateOrUpdate(this IGalleryImagesOperations ope /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// created. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be created or updated. The - /// allowed characters are alphabets and numbers with dots, dashes, and periods - /// allowed in the middle. The maximum length is 80 characters. + /// The name of the gallery image definition to be retrieved. /// /// /// Parameters supplied to the create or update gallery image operation. @@ -337,16 +313,13 @@ public static GalleryImage BeginCreateOrUpdate(this IGalleryImagesOperations ope /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. + /// The name of the gallery image definition to be retrieved. /// /// /// Parameters supplied to the update gallery image operation. @@ -363,16 +336,13 @@ public static GalleryImage BeginUpdate(this IGalleryImagesOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. + /// The name of the gallery image definition to be retrieved. /// /// /// Parameters supplied to the update gallery image operation. @@ -395,14 +365,13 @@ public static GalleryImage BeginUpdate(this IGalleryImagesOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be deleted. + /// The name of the gallery image definition to be retrieved. /// public static void BeginDelete(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName) { @@ -416,14 +385,13 @@ public static void BeginDelete(this IGalleryImagesOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition is to be - /// deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be deleted. + /// The name of the gallery image definition to be retrieved. /// /// /// The cancellation token. diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfileVersionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfileVersionsOperations.cs index 1a555bcd14de..f32a07178926 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfileVersionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfileVersionsOperations.cs @@ -51,95 +51,17 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie public ComputeManagementClient Client { get; private set; } /// - /// Create or update a gallery inVMAccessControlProfile version. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. - /// - /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be created. - /// - /// - /// The name of the gallery inVMAccessControlProfile version to be created. - /// Needs to follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit integer. - /// Format: <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the create or update gallery - /// inVMAccessControlProfile version operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersion galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, galleryInVMAccessControlProfileVersion, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Update a gallery inVMAccessControlProfile version. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. - /// - /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be updated. - /// - /// - /// The name of the gallery inVMAccessControlProfile version to be updated. - /// Needs to follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit integer. - /// Format: <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the update gallery inVMAccessControlProfile version - /// operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersionUpdate galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, galleryInVMAccessControlProfileVersion, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Retrieves information about a gallery inVMAccessControlProfile version. + /// List gallery inVMAccessControlProfile versions in a gallery + /// inVMAccessControlProfile /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version resides. - /// - /// - /// The name of the gallery inVMAccessControlProfile version to be retrieved. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// Headers that will be added to request. @@ -162,7 +84,7 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByGalleryInVMAccessControlProfileWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -172,6 +94,17 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -180,10 +113,6 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie { throw new ValidationException(ValidationRules.CannotBeNull, "inVMAccessControlProfileName"); } - if (inVMAccessControlProfileVersionName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "inVMAccessControlProfileVersionName"); - } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -192,22 +121,20 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("inVMAccessControlProfileName", inVMAccessControlProfileName); - tracingParameters.Add("inVMAccessControlProfileVersionName", inVMAccessControlProfileVersionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByGalleryInVMAccessControlProfile", 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/galleries/{galleryName}/inVMAccessControlProfiles/{inVMAccessControlProfileName}/versions/{inVMAccessControlProfileVersionName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/inVMAccessControlProfiles/{inVMAccessControlProfileName}/versions").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); _url = _url.Replace("{inVMAccessControlProfileName}", System.Uri.EscapeDataString(inVMAccessControlProfileName)); - _url = _url.Replace("{inVMAccessControlProfileVersionName}", System.Uri.EscapeDataString(inVMAccessControlProfileVersionName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -306,7 +233,7 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -319,7 +246,7 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -339,49 +266,19 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie } /// - /// Delete a gallery inVMAccessControlProfile version. + /// Retrieves information about a gallery inVMAccessControlProfile version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version resides. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be deleted. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationHeaderResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// List gallery inVMAccessControlProfile versions in a gallery - /// inVMAccessControlProfile - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. - /// - /// - /// The name of the gallery inVMAccessControlProfile from which the - /// inVMAccessControlProfile versions are to be listed. + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// /// /// Headers that will be added to request. @@ -404,7 +301,7 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie /// /// A response object containing the response body and response headers. /// - public async Task>> ListByGalleryInVMAccessControlProfileWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -414,27 +311,28 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (galleryName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); - } - if (galleryName != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(galleryName, "^[a-zA-Z0-9]+([_]?[a-zA-Z0-9]+)*$")) + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "galleryName", "^[a-zA-Z0-9]+([_]?[a-zA-Z0-9]+)*$"); + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); } } + if (galleryName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); + } if (inVMAccessControlProfileName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "inVMAccessControlProfileName"); } - if (inVMAccessControlProfileName != null) + if (inVMAccessControlProfileVersionName == null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(inVMAccessControlProfileName, "^[a-zA-Z0-9]+([-._]?[a-zA-Z0-9]+)*$")) - { - throw new ValidationException(ValidationRules.Pattern, "inVMAccessControlProfileName", "^[a-zA-Z0-9]+([-._]?[a-zA-Z0-9]+)*$"); - } + throw new ValidationException(ValidationRules.CannotBeNull, "inVMAccessControlProfileVersionName"); } string apiVersion = "2024-03-03"; // Tracing @@ -444,20 +342,22 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("inVMAccessControlProfileName", inVMAccessControlProfileName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("inVMAccessControlProfileVersionName", inVMAccessControlProfileVersionName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByGalleryInVMAccessControlProfile", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/galleries/{galleryName}/inVMAccessControlProfiles/{inVMAccessControlProfileName}/versions").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/inVMAccessControlProfiles/{inVMAccessControlProfileName}/versions/{inVMAccessControlProfileVersionName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); _url = _url.Replace("{inVMAccessControlProfileName}", System.Uri.EscapeDataString(inVMAccessControlProfileName)); + _url = _url.Replace("{inVMAccessControlProfileVersionName}", System.Uri.EscapeDataString(inVMAccessControlProfileVersionName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -556,7 +456,7 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -569,7 +469,7 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -592,21 +492,108 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie /// Create or update a gallery inVMAccessControlProfile version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery inVMAccessControlProfile to be retrieved. + /// + /// + /// The name of the gallery inVMAccessControlProfile version to be retrieved. + /// + /// + /// Parameters supplied to the create or update gallery + /// inVMAccessControlProfile version operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersion galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, galleryInVMAccessControlProfileVersion, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update a gallery inVMAccessControlProfile version. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery inVMAccessControlProfile to be retrieved. + /// + /// + /// The name of the gallery inVMAccessControlProfile version to be retrieved. + /// + /// + /// Parameters supplied to the update gallery inVMAccessControlProfile version + /// operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersionUpdate galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, galleryInVMAccessControlProfileVersion, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete a gallery inVMAccessControlProfile version. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery inVMAccessControlProfile to be retrieved. + /// + /// + /// The name of the gallery inVMAccessControlProfile version to be retrieved. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationHeaderResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Create or update a gallery inVMAccessControlProfile version. + /// + /// + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be created. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be created. - /// Needs to follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit integer. - /// Format: <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// /// /// Parameters supplied to the create or update gallery @@ -633,7 +620,7 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersion galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersion galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -643,43 +630,29 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (galleryName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); - } - if (galleryName != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(galleryName, "^[a-zA-Z0-9]+([_]?[a-zA-Z0-9]+)*$")) + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "galleryName", "^[a-zA-Z0-9]+([_]?[a-zA-Z0-9]+)*$"); + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); } } - if (inVMAccessControlProfileName == null) + if (galleryName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "inVMAccessControlProfileName"); + throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - if (inVMAccessControlProfileName != null) + if (inVMAccessControlProfileName == null) { - if (inVMAccessControlProfileName.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "inVMAccessControlProfileName", 80); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(inVMAccessControlProfileName, "^[a-zA-Z0-9]+([-._]?[a-zA-Z0-9]+)*$")) - { - throw new ValidationException(ValidationRules.Pattern, "inVMAccessControlProfileName", "^[a-zA-Z0-9]+([-._]?[a-zA-Z0-9]+)*$"); - } + throw new ValidationException(ValidationRules.CannotBeNull, "inVMAccessControlProfileName"); } if (inVMAccessControlProfileVersionName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "inVMAccessControlProfileVersionName"); } - if (inVMAccessControlProfileVersionName != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(inVMAccessControlProfileVersionName, "^[0-9]+\\.[0-9]+\\.[0-9]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "inVMAccessControlProfileVersionName", "^[0-9]+\\.[0-9]+\\.[0-9]+$"); - } - } if (galleryInVMAccessControlProfileVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryInVMAccessControlProfileVersion"); @@ -696,11 +669,11 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("inVMAccessControlProfileName", inVMAccessControlProfileName); tracingParameters.Add("inVMAccessControlProfileVersionName", inVMAccessControlProfileVersionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("galleryInVMAccessControlProfileVersion", galleryInVMAccessControlProfileVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); @@ -817,7 +790,7 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -860,6 +833,19 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -871,21 +857,16 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie /// Update a gallery inVMAccessControlProfile version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be updated. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be updated. - /// Needs to follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit integer. - /// Format: <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// /// /// Parameters supplied to the update gallery inVMAccessControlProfile version @@ -912,7 +893,7 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersionUpdate galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersionUpdate galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -922,6 +903,17 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -946,11 +938,11 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("inVMAccessControlProfileName", inVMAccessControlProfileName); tracingParameters.Add("inVMAccessControlProfileVersionName", inVMAccessControlProfileVersionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("galleryInVMAccessControlProfileVersion", galleryInVMAccessControlProfileVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); @@ -1067,7 +1059,7 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1092,6 +1084,19 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1103,18 +1108,16 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie /// Delete a gallery inVMAccessControlProfile version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version resides. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be deleted. + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// /// /// Headers that will be added to request. @@ -1144,6 +1147,17 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -1164,11 +1178,11 @@ internal GalleryInVMAccessControlProfileVersionsOperations(ComputeManagementClie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("inVMAccessControlProfileName", inVMAccessControlProfileName); tracingParameters.Add("inVMAccessControlProfileVersionName", inVMAccessControlProfileVersionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfileVersionsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfileVersionsOperationsExtensions.cs index df01f29541ad..24c608bc1ee5 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfileVersionsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfileVersionsOperationsExtensions.cs @@ -22,306 +22,274 @@ namespace Microsoft.Azure.Management.Compute public static partial class GalleryInVMAccessControlProfileVersionsOperationsExtensions { /// - /// Create or update a gallery inVMAccessControlProfile version. + /// List gallery inVMAccessControlProfile versions in a gallery + /// inVMAccessControlProfile /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be created. - /// - /// - /// The name of the gallery inVMAccessControlProfile version to be created. - /// Needs to follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit integer. - /// Format: <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// - /// - /// Parameters supplied to the create or update gallery - /// inVMAccessControlProfile version operation. - /// - public static GalleryInVMAccessControlProfileVersion CreateOrUpdate(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersion galleryInVMAccessControlProfileVersion) + public static IPage ListByGalleryInVMAccessControlProfile(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName) { - return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, galleryInVMAccessControlProfileVersion).GetAwaiter().GetResult(); + return operations.ListByGalleryInVMAccessControlProfileAsync(resourceGroupName, galleryName, inVMAccessControlProfileName).GetAwaiter().GetResult(); } /// - /// Create or update a gallery inVMAccessControlProfile version. + /// List gallery inVMAccessControlProfile versions in a gallery + /// inVMAccessControlProfile /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be created. - /// - /// - /// The name of the gallery inVMAccessControlProfile version to be created. - /// Needs to follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit integer. - /// Format: <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the create or update gallery - /// inVMAccessControlProfile version operation. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersion galleryInVMAccessControlProfileVersion, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByGalleryInVMAccessControlProfileAsync(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, galleryInVMAccessControlProfileVersion, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByGalleryInVMAccessControlProfileWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Update a gallery inVMAccessControlProfile version. + /// Retrieves information about a gallery inVMAccessControlProfile version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be updated. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be updated. - /// Needs to follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit integer. - /// Format: <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the update gallery inVMAccessControlProfile version - /// operation. + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// - public static GalleryInVMAccessControlProfileVersion Update(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersionUpdate galleryInVMAccessControlProfileVersion) + public static GalleryInVMAccessControlProfileVersion Get(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName) { - return operations.UpdateAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, galleryInVMAccessControlProfileVersion).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName).GetAwaiter().GetResult(); } /// - /// Update a gallery inVMAccessControlProfile version. + /// Retrieves information about a gallery inVMAccessControlProfile version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be updated. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be updated. - /// Needs to follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit integer. - /// Format: <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the update gallery inVMAccessControlProfile version - /// operation. + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersionUpdate galleryInVMAccessControlProfileVersion, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, galleryInVMAccessControlProfileVersion, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Retrieves information about a gallery inVMAccessControlProfile version. + /// Create or update a gallery inVMAccessControlProfile version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version resides. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// - public static GalleryInVMAccessControlProfileVersion Get(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName) + /// + /// Parameters supplied to the create or update gallery + /// inVMAccessControlProfile version operation. + /// + public static GalleryInVMAccessControlProfileVersion CreateOrUpdate(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersion galleryInVMAccessControlProfileVersion) { - return operations.GetAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, galleryInVMAccessControlProfileVersion).GetAwaiter().GetResult(); } /// - /// Retrieves information about a gallery inVMAccessControlProfile version. + /// Create or update a gallery inVMAccessControlProfile version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version resides. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// + /// + /// Parameters supplied to the create or update gallery + /// inVMAccessControlProfile version operation. + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersion galleryInVMAccessControlProfileVersion, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, galleryInVMAccessControlProfileVersion, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Delete a gallery inVMAccessControlProfile version. + /// Update a gallery inVMAccessControlProfile version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version resides. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be deleted. + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// - public static GalleryInVMAccessControlProfileVersionsDeleteHeaders Delete(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName) + /// + /// Parameters supplied to the update gallery inVMAccessControlProfile version + /// operation. + /// + public static GalleryInVMAccessControlProfileVersion Update(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersionUpdate galleryInVMAccessControlProfileVersion) { - return operations.DeleteAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, galleryInVMAccessControlProfileVersion).GetAwaiter().GetResult(); } /// - /// Delete a gallery inVMAccessControlProfile version. + /// Update a gallery inVMAccessControlProfile version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version resides. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be deleted. + /// The name of the gallery inVMAccessControlProfile version to be retrieved. + /// + /// + /// Parameters supplied to the update gallery inVMAccessControlProfile version + /// operation. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersionUpdate galleryInVMAccessControlProfileVersion, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, galleryInVMAccessControlProfileVersion, null, cancellationToken).ConfigureAwait(false)) { - return _result.Headers; + return _result.Body; } } /// - /// List gallery inVMAccessControlProfile versions in a gallery - /// inVMAccessControlProfile + /// Delete a gallery inVMAccessControlProfile version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile from which the - /// inVMAccessControlProfile versions are to be listed. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// - public static IPage ListByGalleryInVMAccessControlProfile(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName) + /// + /// The name of the gallery inVMAccessControlProfile version to be retrieved. + /// + public static GalleryInVMAccessControlProfileVersionsDeleteHeaders Delete(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName) { - return operations.ListByGalleryInVMAccessControlProfileAsync(resourceGroupName, galleryName, inVMAccessControlProfileName).GetAwaiter().GetResult(); + return operations.DeleteAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName).GetAwaiter().GetResult(); } /// - /// List gallery inVMAccessControlProfile versions in a gallery - /// inVMAccessControlProfile + /// Delete a gallery inVMAccessControlProfile version. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile from which the - /// inVMAccessControlProfile versions are to be listed. + /// The name of the gallery inVMAccessControlProfile to be retrieved. + /// + /// + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// /// /// The cancellation token. /// - public static async Task> ListByGalleryInVMAccessControlProfileAsync(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByGalleryInVMAccessControlProfileWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, inVMAccessControlProfileVersionName, null, cancellationToken).ConfigureAwait(false)) { - return _result.Body; + return _result.Headers; } } @@ -332,21 +300,16 @@ public static IPage ListByGalleryInVMAcc /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be created. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be created. - /// Needs to follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit integer. - /// Format: <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// /// /// Parameters supplied to the create or update gallery @@ -364,21 +327,16 @@ public static GalleryInVMAccessControlProfileVersion BeginCreateOrUpdate(this IG /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be created. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be created. - /// Needs to follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit integer. - /// Format: <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// /// /// Parameters supplied to the create or update gallery @@ -402,21 +360,16 @@ public static GalleryInVMAccessControlProfileVersion BeginCreateOrUpdate(this IG /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be updated. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be updated. - /// Needs to follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit integer. - /// Format: <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// /// /// Parameters supplied to the update gallery inVMAccessControlProfile version @@ -434,21 +387,16 @@ public static GalleryInVMAccessControlProfileVersion BeginUpdate(this IGalleryIn /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be updated. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be updated. - /// Needs to follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit integer. - /// Format: <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// /// /// Parameters supplied to the update gallery inVMAccessControlProfile version @@ -472,18 +420,16 @@ public static GalleryInVMAccessControlProfileVersion BeginUpdate(this IGalleryIn /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version resides. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be deleted. + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// public static GalleryInVMAccessControlProfileVersionsDeleteHeaders BeginDelete(this IGalleryInVMAccessControlProfileVersionsOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName) { @@ -497,18 +443,16 @@ public static GalleryInVMAccessControlProfileVersionsDeleteHeaders BeginDelete(t /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the inVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version resides. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// - /// The name of the gallery inVMAccessControlProfile version to be deleted. + /// The name of the gallery inVMAccessControlProfile version to be retrieved. /// /// /// The cancellation token. diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfilesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfilesOperations.cs index 8722633aefe5..12420e8aadd2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfilesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfilesOperations.cs @@ -51,81 +51,13 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie public ComputeManagementClient Client { get; private set; } /// - /// Create or update a gallery inVMAccessControlProfile. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery in which the InVMAccessControlProfile - /// is to be created. - /// - /// - /// The name of the gallery inVMAccessControlProfile to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the create or update gallery - /// inVMAccessControlProfile operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfile galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, galleryInVMAccessControlProfile, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Update a gallery inVMAccessControlProfile. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery in which the InVMAccessControlProfile - /// is to be updated. - /// - /// - /// The name of the gallery inVMAccessControlProfile to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the update gallery inVMAccessControlProfile - /// operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfileUpdate galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, galleryInVMAccessControlProfile, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Retrieves information about a gallery inVMAccessControlProfile. + /// List gallery inVMAccessControlProfiles in a gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which the - /// InVMAccessControlProfiles are to be retrieved. - /// - /// - /// The name of the gallery inVMAccessControlProfile to be retrieved. + /// The name of the Shared Image Gallery. /// /// /// Headers that will be added to request. @@ -148,7 +80,7 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -158,13 +90,20 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (galleryName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (inVMAccessControlProfileName == null) + if (galleryName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "inVMAccessControlProfileName"); + throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } string apiVersion = "2024-03-03"; // Tracing @@ -174,20 +113,18 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); - tracingParameters.Add("inVMAccessControlProfileName", inVMAccessControlProfileName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByGallery", 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/galleries/{galleryName}/inVMAccessControlProfiles/{inVMAccessControlProfileName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/inVMAccessControlProfiles").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); - _url = _url.Replace("{inVMAccessControlProfileName}", System.Uri.EscapeDataString(inVMAccessControlProfileName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -286,7 +223,7 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -299,7 +236,7 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -319,40 +256,16 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie } /// - /// Delete a gallery inVMAccessControlProfile. + /// Retrieves information about a gallery inVMAccessControlProfile. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// he name of the Shared Image Gallery in which the InVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be deleted. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationHeaderResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// List gallery inVMAccessControlProfiles in a gallery. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery from which the - /// InVMAccessControlProfiles are to be listed. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// Headers that will be added to request. @@ -375,7 +288,7 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie /// /// A response object containing the response body and response headers. /// - public async Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -385,16 +298,24 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - if (galleryName != null) + if (inVMAccessControlProfileName == null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(galleryName, "^[a-zA-Z0-9]+([_]?[a-zA-Z0-9]+)*$")) - { - throw new ValidationException(ValidationRules.Pattern, "galleryName", "^[a-zA-Z0-9]+([_]?[a-zA-Z0-9]+)*$"); - } + throw new ValidationException(ValidationRules.CannotBeNull, "inVMAccessControlProfileName"); } string apiVersion = "2024-03-03"; // Tracing @@ -404,18 +325,20 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("inVMAccessControlProfileName", inVMAccessControlProfileName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByGallery", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/galleries/{galleryName}/inVMAccessControlProfiles").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/inVMAccessControlProfiles/{inVMAccessControlProfileName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); + _url = _url.Replace("{inVMAccessControlProfileName}", System.Uri.EscapeDataString(inVMAccessControlProfileName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -514,7 +437,7 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -527,7 +450,7 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -550,16 +473,96 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie /// Create or update a gallery inVMAccessControlProfile. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery inVMAccessControlProfile to be retrieved. + /// + /// + /// Parameters supplied to the create or update gallery + /// inVMAccessControlProfile operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfile galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, galleryInVMAccessControlProfile, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update a gallery inVMAccessControlProfile. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery inVMAccessControlProfile to be retrieved. + /// + /// + /// Parameters supplied to the update gallery inVMAccessControlProfile + /// operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfileUpdate galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, galleryInVMAccessControlProfile, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete a gallery inVMAccessControlProfile. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery inVMAccessControlProfile to be retrieved. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationHeaderResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Create or update a gallery inVMAccessControlProfile. + /// + /// + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the InVMAccessControlProfile - /// is to be created. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// Parameters supplied to the create or update gallery @@ -586,7 +589,7 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfile galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfile galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -596,31 +599,24 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (galleryName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); - } - if (galleryName != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(galleryName, "^[a-zA-Z0-9]+([_]?[a-zA-Z0-9]+)*$")) + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "galleryName", "^[a-zA-Z0-9]+([_]?[a-zA-Z0-9]+)*$"); + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); } } - if (inVMAccessControlProfileName == null) + if (galleryName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "inVMAccessControlProfileName"); + throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - if (inVMAccessControlProfileName != null) + if (inVMAccessControlProfileName == null) { - if (inVMAccessControlProfileName.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "inVMAccessControlProfileName", 80); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(inVMAccessControlProfileName, "^[a-zA-Z0-9]+([-._]?[a-zA-Z0-9]+)*$")) - { - throw new ValidationException(ValidationRules.Pattern, "inVMAccessControlProfileName", "^[a-zA-Z0-9]+([-._]?[a-zA-Z0-9]+)*$"); - } + throw new ValidationException(ValidationRules.CannotBeNull, "inVMAccessControlProfileName"); } if (galleryInVMAccessControlProfile == null) { @@ -638,10 +634,10 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("inVMAccessControlProfileName", inVMAccessControlProfileName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("galleryInVMAccessControlProfile", galleryInVMAccessControlProfile); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); @@ -757,7 +753,7 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -800,6 +796,19 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -811,16 +820,13 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie /// Update a gallery inVMAccessControlProfile. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the InVMAccessControlProfile - /// is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// Parameters supplied to the update gallery inVMAccessControlProfile @@ -847,7 +853,7 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfileUpdate galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfileUpdate galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -857,6 +863,17 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -877,10 +894,10 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("inVMAccessControlProfileName", inVMAccessControlProfileName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("galleryInVMAccessControlProfile", galleryInVMAccessControlProfile); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); @@ -996,7 +1013,7 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1021,6 +1038,19 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1032,14 +1062,13 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie /// Delete a gallery inVMAccessControlProfile. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// he name of the Shared Image Gallery in which the InVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be deleted. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// Headers that will be added to request. @@ -1069,6 +1098,17 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -1085,10 +1125,10 @@ internal GalleryInVMAccessControlProfilesOperations(ComputeManagementClient clie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("inVMAccessControlProfileName", inVMAccessControlProfileName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } diff --git a/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfilesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfilesOperationsExtensions.cs index 9f7ea5ca7c73..db7e980fcabf 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfilesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GalleryInVMAccessControlProfilesOperationsExtensions.cs @@ -22,260 +22,242 @@ namespace Microsoft.Azure.Management.Compute public static partial class GalleryInVMAccessControlProfilesOperationsExtensions { /// - /// Create or update a gallery inVMAccessControlProfile. + /// List gallery inVMAccessControlProfiles in a gallery. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the InVMAccessControlProfile - /// is to be created. - /// - /// - /// The name of the gallery inVMAccessControlProfile to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the create or update gallery - /// inVMAccessControlProfile operation. + /// The name of the Shared Image Gallery. /// - public static GalleryInVMAccessControlProfile CreateOrUpdate(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfile galleryInVMAccessControlProfile) + public static IPage ListByGallery(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName) { - return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, galleryInVMAccessControlProfile).GetAwaiter().GetResult(); + return operations.ListByGalleryAsync(resourceGroupName, galleryName).GetAwaiter().GetResult(); } /// - /// Create or update a gallery inVMAccessControlProfile. + /// List gallery inVMAccessControlProfiles in a gallery. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the InVMAccessControlProfile - /// is to be created. - /// - /// - /// The name of the gallery inVMAccessControlProfile to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the create or update gallery - /// inVMAccessControlProfile operation. + /// The name of the Shared Image Gallery. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfile galleryInVMAccessControlProfile, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByGalleryAsync(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, galleryInVMAccessControlProfile, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByGalleryWithHttpMessagesAsync(resourceGroupName, galleryName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Update a gallery inVMAccessControlProfile. + /// Retrieves information about a gallery inVMAccessControlProfile. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the InVMAccessControlProfile - /// is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the update gallery inVMAccessControlProfile - /// operation. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// - public static GalleryInVMAccessControlProfile Update(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfileUpdate galleryInVMAccessControlProfile) + public static GalleryInVMAccessControlProfile Get(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName) { - return operations.UpdateAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, galleryInVMAccessControlProfile).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, galleryName, inVMAccessControlProfileName).GetAwaiter().GetResult(); } /// - /// Update a gallery inVMAccessControlProfile. + /// Retrieves information about a gallery inVMAccessControlProfile. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the InVMAccessControlProfile - /// is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the update gallery inVMAccessControlProfile - /// operation. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfileUpdate galleryInVMAccessControlProfile, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, galleryInVMAccessControlProfile, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Retrieves information about a gallery inVMAccessControlProfile. + /// Create or update a gallery inVMAccessControlProfile. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which the - /// InVMAccessControlProfiles are to be retrieved. + /// The name of the Shared Image Gallery. /// /// /// The name of the gallery inVMAccessControlProfile to be retrieved. /// - public static GalleryInVMAccessControlProfile Get(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName) + /// + /// Parameters supplied to the create or update gallery + /// inVMAccessControlProfile operation. + /// + public static GalleryInVMAccessControlProfile CreateOrUpdate(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfile galleryInVMAccessControlProfile) { - return operations.GetAsync(resourceGroupName, galleryName, inVMAccessControlProfileName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, galleryInVMAccessControlProfile).GetAwaiter().GetResult(); } /// - /// Retrieves information about a gallery inVMAccessControlProfile. + /// Create or update a gallery inVMAccessControlProfile. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which the - /// InVMAccessControlProfiles are to be retrieved. + /// The name of the Shared Image Gallery. /// /// /// The name of the gallery inVMAccessControlProfile to be retrieved. /// + /// + /// Parameters supplied to the create or update gallery + /// inVMAccessControlProfile operation. + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfile galleryInVMAccessControlProfile, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, galleryInVMAccessControlProfile, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Delete a gallery inVMAccessControlProfile. + /// Update a gallery inVMAccessControlProfile. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// he name of the Shared Image Gallery in which the InVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be deleted. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// - public static GalleryInVMAccessControlProfilesDeleteHeaders Delete(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName) + /// + /// Parameters supplied to the update gallery inVMAccessControlProfile + /// operation. + /// + public static GalleryInVMAccessControlProfile Update(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfileUpdate galleryInVMAccessControlProfile) { - return operations.DeleteAsync(resourceGroupName, galleryName, inVMAccessControlProfileName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, galleryInVMAccessControlProfile).GetAwaiter().GetResult(); } /// - /// Delete a gallery inVMAccessControlProfile. + /// Update a gallery inVMAccessControlProfile. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// he name of the Shared Image Gallery in which the InVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be deleted. + /// The name of the gallery inVMAccessControlProfile to be retrieved. + /// + /// + /// Parameters supplied to the update gallery inVMAccessControlProfile + /// operation. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfileUpdate galleryInVMAccessControlProfile, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, galleryInVMAccessControlProfile, null, cancellationToken).ConfigureAwait(false)) { - return _result.Headers; + return _result.Body; } } /// - /// List gallery inVMAccessControlProfiles in a gallery. + /// Delete a gallery inVMAccessControlProfile. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which the - /// InVMAccessControlProfiles are to be listed. + /// The name of the Shared Image Gallery. /// - public static IPage ListByGallery(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName) + /// + /// The name of the gallery inVMAccessControlProfile to be retrieved. + /// + public static GalleryInVMAccessControlProfilesDeleteHeaders Delete(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName) { - return operations.ListByGalleryAsync(resourceGroupName, galleryName).GetAwaiter().GetResult(); + return operations.DeleteAsync(resourceGroupName, galleryName, inVMAccessControlProfileName).GetAwaiter().GetResult(); } /// - /// List gallery inVMAccessControlProfiles in a gallery. + /// Delete a gallery inVMAccessControlProfile. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which the - /// InVMAccessControlProfiles are to be listed. + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The cancellation token. /// - public static async Task> ListByGalleryAsync(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByGalleryWithHttpMessagesAsync(resourceGroupName, galleryName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, inVMAccessControlProfileName, null, cancellationToken).ConfigureAwait(false)) { - return _result.Body; + return _result.Headers; } } @@ -286,16 +268,13 @@ public static IPage ListByGallery(this IGallery /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the InVMAccessControlProfile - /// is to be created. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// Parameters supplied to the create or update gallery @@ -313,16 +292,13 @@ public static GalleryInVMAccessControlProfile BeginCreateOrUpdate(this IGalleryI /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the InVMAccessControlProfile - /// is to be created. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// Parameters supplied to the create or update gallery @@ -346,16 +322,13 @@ public static GalleryInVMAccessControlProfile BeginCreateOrUpdate(this IGalleryI /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the InVMAccessControlProfile - /// is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// Parameters supplied to the update gallery inVMAccessControlProfile @@ -373,16 +346,13 @@ public static GalleryInVMAccessControlProfile BeginUpdate(this IGalleryInVMAcces /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the InVMAccessControlProfile - /// is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods allowed - /// in the middle. The maximum length is 80 characters. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// Parameters supplied to the update gallery inVMAccessControlProfile @@ -406,14 +376,13 @@ public static GalleryInVMAccessControlProfile BeginUpdate(this IGalleryInVMAcces /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// he name of the Shared Image Gallery in which the InVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be deleted. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// public static GalleryInVMAccessControlProfilesDeleteHeaders BeginDelete(this IGalleryInVMAccessControlProfilesOperations operations, string resourceGroupName, string galleryName, string inVMAccessControlProfileName) { @@ -427,14 +396,13 @@ public static GalleryInVMAccessControlProfilesDeleteHeaders BeginDelete(this IGa /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// he name of the Shared Image Gallery in which the InVMAccessControlProfile - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be deleted. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The cancellation token. diff --git a/src/Compute/Compute.Management.Sdk/Generated/GallerySharingProfileOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/GallerySharingProfileOperations.cs index dd123b1cd1ea..9d391370986d 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GallerySharingProfileOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GallerySharingProfileOperations.cs @@ -54,7 +54,7 @@ internal GallerySharingProfileOperations(ComputeManagementClient client) /// Update sharing profile of a gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the Shared Image Gallery. @@ -79,7 +79,7 @@ internal GallerySharingProfileOperations(ComputeManagementClient client) /// Update sharing profile of a gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the Shared Image Gallery. @@ -118,6 +118,17 @@ internal GallerySharingProfileOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (galleryName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); @@ -138,9 +149,9 @@ internal GallerySharingProfileOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("sharingUpdate", sharingUpdate); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); @@ -280,24 +291,6 @@ internal GallerySharingProfileOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); diff --git a/src/Compute/Compute.Management.Sdk/Generated/GallerySharingProfileOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/GallerySharingProfileOperationsExtensions.cs index 9ab1747dd236..7a7fd6081aa9 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/GallerySharingProfileOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/GallerySharingProfileOperationsExtensions.cs @@ -28,7 +28,7 @@ public static partial class GallerySharingProfileOperationsExtensions /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the Shared Image Gallery. @@ -48,7 +48,7 @@ public static SharingUpdate Update(this IGallerySharingProfileOperations operati /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the Shared Image Gallery. @@ -74,7 +74,7 @@ public static SharingUpdate Update(this IGallerySharingProfileOperations operati /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the Shared Image Gallery. @@ -94,7 +94,7 @@ public static SharingUpdate BeginUpdate(this IGallerySharingProfileOperations op /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the Shared Image Gallery. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IAvailabilitySetsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IAvailabilitySetsOperations.cs index b72d6789ee62..b5bd47356030 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IAvailabilitySetsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IAvailabilitySetsOperations.cs @@ -24,16 +24,11 @@ namespace Microsoft.Azure.Management.Compute public partial interface IAvailabilitySetsOperations { /// - /// Create or update an availability set. + /// Lists all availability sets in a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the availability set. - /// - /// - /// Parameters supplied to the Create Availability Set operation. + /// + /// The expand expression to apply to the operation. Allowed values are + /// 'instanceView'. /// /// /// The headers that will be added to request. @@ -50,18 +45,12 @@ public partial interface IAvailabilitySetsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, AvailabilitySet parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListBySubscriptionWithHttpMessagesAsync(string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update an availability set. + /// Lists all availability sets in a resource group. /// /// - /// The name of the resource group. - /// - /// - /// The name of the availability set. - /// - /// - /// Parameters supplied to the Update Availability Set operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The headers that will be added to request. @@ -78,12 +67,12 @@ public partial interface IAvailabilitySetsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, AvailabilitySetUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete an availability set. + /// Retrieves information about an availability set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. @@ -97,19 +86,25 @@ public partial interface IAvailabilitySetsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about an availability set. + /// Create or update an availability set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// + /// + /// Parameters supplied to the Create Availability Set operation. + /// /// /// The headers that will be added to request. /// @@ -125,13 +120,18 @@ public partial interface IAvailabilitySetsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, AvailabilitySet parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all availability sets in a subscription. + /// Update an availability set. /// - /// - /// The expand expression to apply to the operation. Allowed values are - /// 'virtualMachines/$ref'. + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the availability set. + /// + /// + /// Parameters supplied to the Update Availability Set operation. /// /// /// The headers that will be added to request. @@ -148,12 +148,15 @@ public partial interface IAvailabilitySetsOperations /// /// Thrown when a required parameter is null /// - Task>> ListBySubscriptionWithHttpMessagesAsync(string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, AvailabilitySetUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all availability sets in a resource group. + /// Delete an availability set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the availability set. /// /// /// The headers that will be added to request. @@ -164,19 +167,15 @@ public partial interface IAvailabilitySetsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all available virtual machine sizes that can be used to - /// create a new virtual machine in an existing availability set. + /// Cancel the migration operation on an Availability Set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. @@ -190,29 +189,24 @@ public partial interface IAvailabilitySetsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListAvailableSizesWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CancelMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Start migration operation on an Availability Set to move its - /// Virtual Machines to a Virtual Machine Scale Set. This should be - /// followed by a migrate operation on each Virtual Machine that - /// triggers a downtime on the Virtual Machine. + /// Create a new Flexible Virtual Machine Scale Set and migrate all the + /// Virtual Machines in the Availability Set. This does not trigger a + /// downtime on the Virtual Machines. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// - /// + /// /// Specifies information about the Virtual Machine Scale Set that the - /// Availability Set should be migrated to. Minimum api‐version: - /// 2024‐11‐01. + /// Availability Set should be converted to. /// /// /// The headers that will be added to request. @@ -226,16 +220,24 @@ public partial interface IAvailabilitySetsOperations /// /// Thrown when a required parameter is null /// - Task StartMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, SubResource virtualMachineScaleSetFlexible, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task ConvertToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, string virtualMachineScaleSetName = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Cancel the migration operation on an Availability Set. + /// Start migration operation on an Availability Set to move its + /// Virtual Machines to a Virtual Machine Scale Set. This should be + /// followed by a migrate operation on each Virtual Machine that + /// triggers a downtime on the Virtual Machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// + /// + /// Specifies information about the Virtual Machine Scale Set that the + /// Availability Set should be migrated to. Minimum api‐version: + /// 2024‐11‐01. + /// /// /// The headers that will be added to request. /// @@ -248,13 +250,13 @@ public partial interface IAvailabilitySetsOperations /// /// Thrown when a required parameter is null /// - Task CancelMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task StartMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, SubResource virtualMachineScaleSetFlexible, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Validates that the Virtual Machines in the Availability Set can be /// migrated to the provided Virtual Machine Scale Set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. @@ -278,20 +280,15 @@ public partial interface IAvailabilitySetsOperations /// Task ValidateMigrationToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, SubResource virtualMachineScaleSetFlexible, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Create a new Flexible Virtual Machine Scale Set and migrate all the - /// Virtual Machines in the Availability Set. This does not trigger a - /// downtime on the Virtual Machines. + /// Lists all available virtual machine sizes that can be used to + /// create a new virtual machine in an existing availability set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. /// - /// - /// Specifies information about the Virtual Machine Scale Set that the - /// Availability Set should be converted to. - /// /// /// The headers that will be added to request. /// @@ -301,17 +298,20 @@ public partial interface IAvailabilitySetsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task ConvertToVirtualMachineScaleSetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, string virtualMachineScaleSetName = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListAvailableSizesWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create a new Flexible Virtual Machine Scale Set and migrate all the /// Virtual Machines in the Availability Set. This does not trigger a /// downtime on the Virtual Machines. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the availability set. diff --git a/src/Compute/Compute.Management.Sdk/Generated/ICapacityReservationGroupsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ICapacityReservationGroupsOperations.cs index 1142659e00ad..1ad0ea4506de 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ICapacityReservationGroupsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ICapacityReservationGroupsOperations.cs @@ -24,19 +24,27 @@ namespace Microsoft.Azure.Management.Compute public partial interface ICapacityReservationGroupsOperations { /// - /// The operation to create or update a capacity reservation group. - /// When updating a capacity reservation group, only tags and sharing - /// profile may be modified. Please refer to - /// https://aka.ms/CapacityReservation for more details. + /// Lists all of the capacity reservation groups in the subscription. + /// Use the nextLink property in the response to get the next page of + /// capacity reservation groups. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the capacity reservation group. + /// + /// The expand expression to apply on the operation. Based on the + /// expand param(s) specified we return Virtual Machine or ScaleSet VM + /// Instance or both resource Ids which are associated to capacity + /// reservation group in the response. Possible values include: + /// 'virtualMachineScaleSetVMs/$ref', 'virtualMachines/$ref' /// - /// - /// Parameters supplied to the Create capacity reservation Group. + /// + /// The query option to fetch Capacity Reservation Group Resource Ids. + /// <br> 'CreatedInSubscription' enables fetching Resource Ids + /// for all capacity reservation group resources created in the + /// subscription. <br> 'SharedWithSubscription' enables fetching + /// Resource Ids for all capacity reservation group resources shared + /// with the subscription. <br> 'All' enables fetching Resource + /// Ids for all capacity reservation group resources shared with the + /// subscription and created in the subscription. Possible values + /// include: 'CreatedInSubscription', 'SharedWithSubscription', 'All' /// /// /// The headers that will be added to request. @@ -53,21 +61,21 @@ public partial interface ICapacityReservationGroupsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListBySubscriptionWithHttpMessagesAsync(string expand = default(string), string resourceIdsOnly = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to update a capacity reservation group. When updating - /// a capacity reservation group, only tags and sharing profile may be - /// modified. + /// Lists all of the capacity reservation groups in the specified + /// resource group. Use the nextLink property in the response to get + /// the next page of capacity reservation groups. /// /// - /// The name of the resource group. - /// - /// - /// The name of the capacity reservation group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// Parameters supplied to the Update capacity reservation Group - /// operation. + /// + /// The expand expression to apply on the operation. Based on the + /// expand param(s) specified we return Virtual Machine or ScaleSet VM + /// Instance or both resource Ids which are associated to capacity + /// reservation group in the response. Possible values include: + /// 'virtualMachineScaleSetVMs/$ref', 'virtualMachines/$ref' /// /// /// The headers that will be added to request. @@ -84,21 +92,25 @@ public partial interface ICapacityReservationGroupsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroupUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to delete a capacity reservation group. This - /// operation is allowed only if all the associated resources are - /// disassociated from the reservation group and all capacity - /// reservations under the reservation group have also been deleted. - /// Please refer to https://aka.ms/CapacityReservation for more - /// details. + /// The operation that retrieves information about a capacity + /// reservation group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// + /// + /// The expand expression to apply on the operation. 'InstanceView' + /// will retrieve the list of instance views of the capacity + /// reservations under the capacity reservation group which is a + /// snapshot of the runtime properties of a capacity reservation that + /// is managed by the platform and can change outside of control plane + /// operations. Possible values include: 'instanceView' + /// /// /// The headers that will be added to request. /// @@ -108,27 +120,27 @@ public partial interface ICapacityReservationGroupsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation that retrieves information about a capacity - /// reservation group. + /// The operation to create or update a capacity reservation group. + /// When updating a capacity reservation group, only tags and sharing + /// profile may be modified. Please refer to + /// https://aka.ms/CapacityReservation for more details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' - /// will retrieve the list of instance views of the capacity - /// reservations under the capacity reservation group which is a - /// snapshot of the runtime properties of a capacity reservation that - /// is managed by the platform and can change outside of control plane - /// operations. Possible values include: 'instanceView' + /// + /// Parameters supplied to the Create capacity reservation Group. /// /// /// The headers that will be added to request. @@ -145,21 +157,21 @@ public partial interface ICapacityReservationGroupsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all of the capacity reservation groups in the specified - /// resource group. Use the nextLink property in the response to get - /// the next page of capacity reservation groups. + /// The operation to update a capacity reservation group. When updating + /// a capacity reservation group, only tags and sharing profile may be + /// modified. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The expand expression to apply on the operation. Based on the - /// expand param(s) specified we return Virtual Machine or ScaleSet VM - /// Instance or both resource Ids which are associated to capacity - /// reservation group in the response. Possible values include: - /// 'virtualMachineScaleSetVMs/$ref', 'virtualMachines/$ref' + /// + /// The name of the capacity reservation group. + /// + /// + /// Parameters supplied to the Update capacity reservation Group + /// operation. /// /// /// The headers that will be added to request. @@ -176,29 +188,20 @@ public partial interface ICapacityReservationGroupsOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, CapacityReservationGroupUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all of the capacity reservation groups in the subscription. - /// Use the nextLink property in the response to get the next page of - /// capacity reservation groups. + /// The operation to delete a capacity reservation group. This + /// operation is allowed only if all the associated resources are + /// disassociated from the reservation group and all capacity + /// reservations under the reservation group have also been deleted. + /// Please refer to https://aka.ms/CapacityReservation for more + /// details. /// - /// - /// The expand expression to apply on the operation. Based on the - /// expand param(s) specified we return Virtual Machine or ScaleSet VM - /// Instance or both resource Ids which are associated to capacity - /// reservation group in the response. Possible values include: - /// 'virtualMachineScaleSetVMs/$ref', 'virtualMachines/$ref' + /// + /// The name of the resource group. The name is case insensitive. /// - /// - /// The query option to fetch Capacity Reservation Group Resource Ids. - /// <br> 'CreatedInSubscription' enables fetching Resource Ids - /// for all capacity reservation group resources created in the - /// subscription. <br> 'SharedWithSubscription' enables fetching - /// Resource Ids for all capacity reservation group resources shared - /// with the subscription. <br> 'All' enables fetching Resource - /// Ids for all capacity reservation group resources shared with the - /// subscription and created in the subscription. Possible values - /// include: 'CreatedInSubscription', 'SharedWithSubscription', 'All' + /// + /// The name of the capacity reservation group. /// /// /// The headers that will be added to request. @@ -209,17 +212,14 @@ public partial interface ICapacityReservationGroupsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListBySubscriptionWithHttpMessagesAsync(string expand = default(string), string resourceIdsOnly = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all of the capacity reservation groups in the specified - /// resource group. Use the nextLink property in the response to get - /// the next page of capacity reservation groups. + /// Lists all of the capacity reservation groups in the subscription. + /// Use the nextLink property in the response to get the next page of + /// capacity reservation groups. /// /// /// The NextLink from the previous successful call to List operation. @@ -239,11 +239,11 @@ public partial interface ICapacityReservationGroupsOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all of the capacity reservation groups in the subscription. - /// Use the nextLink property in the response to get the next page of - /// capacity reservation groups. + /// Lists all of the capacity reservation groups in the specified + /// resource group. Use the nextLink property in the response to get + /// the next page of capacity reservation groups. /// /// /// The NextLink from the previous successful call to List operation. @@ -263,6 +263,6 @@ public partial interface ICapacityReservationGroupsOperations /// /// Thrown when a required parameter is null /// - Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/ICapacityReservationsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ICapacityReservationsOperations.cs index b8f015685f34..ea2bc792c407 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ICapacityReservationsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ICapacityReservationsOperations.cs @@ -24,23 +24,16 @@ namespace Microsoft.Azure.Management.Compute public partial interface ICapacityReservationsOperations { /// - /// The operation to create or update a capacity reservation. Please - /// note some properties can be set only during capacity reservation - /// creation. Please refer to https://aka.ms/CapacityReservation for - /// more details. + /// Lists all of the capacity reservations in the specified capacity + /// reservation group. Use the nextLink property in the response to get + /// the next page of capacity reservations. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// - /// - /// The name of the capacity reservation. - /// - /// - /// Parameters supplied to the Create capacity reservation. - /// /// /// The headers that will be added to request. /// @@ -56,12 +49,13 @@ public partial interface ICapacityReservationsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByCapacityReservationGroupWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to update a capacity reservation. + /// The operation that retrieves information about the capacity + /// reservation. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -69,8 +63,12 @@ public partial interface ICapacityReservationsOperations /// /// The name of the capacity reservation. /// - /// - /// Parameters supplied to the Update capacity reservation operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' + /// retrieves a snapshot of the runtime properties of the capacity + /// reservation that is managed by the platform and can change outside + /// of control plane operations. Possible values include: + /// 'instanceView' /// /// /// The headers that will be added to request. @@ -87,15 +85,15 @@ public partial interface ICapacityReservationsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservationUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to delete a capacity reservation. This operation is - /// allowed only when all the associated resources are disassociated - /// from the capacity reservation. Please refer to - /// https://aka.ms/CapacityReservation for more details. + /// The operation to create or update a capacity reservation. Please + /// note some properties can be set only during capacity reservation + /// creation. Please refer to https://aka.ms/CapacityReservation for + /// more details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -103,6 +101,9 @@ public partial interface ICapacityReservationsOperations /// /// The name of the capacity reservation. /// + /// + /// Parameters supplied to the Create capacity reservation. + /// /// /// The headers that will be added to request. /// @@ -112,16 +113,18 @@ public partial interface ICapacityReservationsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation that retrieves information about the capacity - /// reservation. + /// The operation to update a capacity reservation. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -129,12 +132,8 @@ public partial interface ICapacityReservationsOperations /// /// The name of the capacity reservation. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' - /// retrieves a snapshot of the runtime properties of the capacity - /// reservation that is managed by the platform and can change outside - /// of control plane operations. Possible values include: - /// 'instanceView' + /// + /// Parameters supplied to the Update capacity reservation operation. /// /// /// The headers that will be added to request. @@ -151,18 +150,22 @@ public partial interface ICapacityReservationsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservationUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all of the capacity reservations in the specified capacity - /// reservation group. Use the nextLink property in the response to get - /// the next page of capacity reservations. + /// The operation to delete a capacity reservation. This operation is + /// allowed only when all the associated resources are disassociated + /// from the capacity reservation. Please refer to + /// https://aka.ms/CapacityReservation for more details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. /// + /// + /// The name of the capacity reservation. + /// /// /// The headers that will be added to request. /// @@ -172,13 +175,10 @@ public partial interface ICapacityReservationsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListByCapacityReservationGroupWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to create or update a capacity reservation. Please /// note some properties can be set only during capacity reservation @@ -186,7 +186,7 @@ public partial interface ICapacityReservationsOperations /// more details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -212,12 +212,12 @@ public partial interface ICapacityReservationsOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string capacityReservationGroupName, string capacityReservationName, CapacityReservation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to update a capacity reservation. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. @@ -251,7 +251,7 @@ public partial interface ICapacityReservationsOperations /// https://aka.ms/CapacityReservation for more details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the capacity reservation group. diff --git a/src/Compute/Compute.Management.Sdk/Generated/ICloudServiceOperatingSystemsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ICloudServiceOperatingSystemsOperations.cs deleted file mode 100644 index 26e60af5d844..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/ICloudServiceOperatingSystemsOperations.cs +++ /dev/null @@ -1,185 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServiceOperatingSystemsOperations operations. - /// - public partial interface ICloudServiceOperatingSystemsOperations - { - /// - /// Gets properties of a guest operating system version that can be - /// specified in the XML service configuration (.cscfg) for a cloud - /// service. - /// - /// - /// Name of the location that the OS version pertains to. - /// - /// - /// Name of the OS version. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetOSVersionWithHttpMessagesAsync(string location, string osVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all guest operating system versions available to be - /// specified in the XML service configuration (.cscfg) for a cloud - /// service. Use nextLink property in the response to get the next page - /// of OS versions. Do this till nextLink is null to fetch all the OS - /// versions. - /// - /// - /// Name of the location that the OS versions pertain to. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListOSVersionsWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets properties of a guest operating system family that can be - /// specified in the XML service configuration (.cscfg) for a cloud - /// service. - /// - /// - /// Name of the location that the OS family pertains to. - /// - /// - /// Name of the OS family. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetOSFamilyWithHttpMessagesAsync(string location, string osFamilyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all guest operating system families available to be - /// specified in the XML service configuration (.cscfg) for a cloud - /// service. Use nextLink property in the response to get the next page - /// of OS Families. Do this till nextLink is null to fetch all the OS - /// Families. - /// - /// - /// Name of the location that the OS families pertain to. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListOSFamiliesWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all guest operating system versions available to be - /// specified in the XML service configuration (.cscfg) for a cloud - /// service. Use nextLink property in the response to get the next page - /// of OS versions. Do this till nextLink is null to fetch all the OS - /// versions. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListOSVersionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all guest operating system families available to be - /// specified in the XML service configuration (.cscfg) for a cloud - /// service. Use nextLink property in the response to get the next page - /// of OS Families. Do this till nextLink is null to fetch all the OS - /// Families. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListOSFamiliesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/ICloudServiceRoleInstancesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ICloudServiceRoleInstancesOperations.cs deleted file mode 100644 index 73d992e99e57..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/ICloudServiceRoleInstancesOperations.cs +++ /dev/null @@ -1,388 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.IO; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServiceRoleInstancesOperations operations. - /// - public partial interface ICloudServiceRoleInstancesOperations - { - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 DeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a role instance from a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The expand expression to apply to the operation. 'UserData' is not - /// supported for cloud services. Possible values include: - /// 'instanceView', 'userData' - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Retrieves information about the run-time state of a role instance - /// in a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetInstanceViewWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the list of all role instances in a cloud service. Use - /// nextLink property in the response to get the next page of role - /// instances. Do this till nextLink is null to fetch all the role - /// instances. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The expand expression to apply to the operation. 'UserData' is not - /// supported for cloud services. Possible values include: - /// 'instanceView', 'userData' - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The Reboot Role Instance asynchronous operation requests a reboot - /// of a role instance in the cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 RestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The Reimage Role Instance asynchronous operation reinstalls the - /// operating system on instances of web roles or worker roles. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 ReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the - /// operating system on instances of web roles or worker roles and - /// initializes the storage resources that are used by them. If you do - /// not want to initialize storage resources, you can use Reimage Role - /// Instance. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 RebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a remote desktop file for a role instance in a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetRemoteDesktopFileWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginDeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The Reboot Role Instance asynchronous operation requests a reboot - /// of a role instance in the cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginRestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The Reimage Role Instance asynchronous operation reinstalls the - /// operating system on instances of web roles or worker roles. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the - /// operating system on instances of web roles or worker roles and - /// initializes the storage resources that are used by them. If you do - /// not want to initialize storage resources, you can use Reimage Role - /// Instance. - /// - /// - /// Name of the role instance. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginRebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the list of all role instances in a cloud service. Use - /// nextLink property in the response to get the next page of role - /// instances. Do this till nextLink is null to fetch all the role - /// instances. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/ICloudServiceRolesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ICloudServiceRolesOperations.cs deleted file mode 100644 index fdd36f0ef63f..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/ICloudServiceRolesOperations.cs +++ /dev/null @@ -1,106 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServiceRolesOperations operations. - /// - public partial interface ICloudServiceRolesOperations - { - /// - /// Gets a role from a cloud service. - /// - /// - /// Name of the role. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetWithHttpMessagesAsync(string roleName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all roles in a cloud service. Use nextLink property - /// in the response to get the next page of roles. Do this till - /// nextLink is null to fetch all the roles. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all roles in a cloud service. Use nextLink property - /// in the response to get the next page of roles. Do this till - /// nextLink is null to fetch all the roles. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/ICloudServicesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ICloudServicesOperations.cs deleted file mode 100644 index 837bdd793337..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/ICloudServicesOperations.cs +++ /dev/null @@ -1,638 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServicesOperations operations. - /// - public partial interface ICloudServicesOperations - { - /// - /// Create or update a cloud service. Please note some properties can - /// be set only during cloud service creation. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Update a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Display information about a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the status of a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all cloud services in the subscription, regardless - /// of the associated resource group. Use nextLink property in the - /// response to get the next page of Cloud Services. Do this till - /// nextLink is null to fetch all the Cloud Services. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all cloud services under a resource group. Use - /// nextLink property in the response to get the next page of Cloud - /// Services. Do this till nextLink is null to fetch all the Cloud - /// Services. - /// - /// - /// Name of the resource group. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Starts the cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 StartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Power off the cloud service. Note that resources are still attached - /// and you are getting charged for the resources. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 PowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// 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 RestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Reimage asynchronous operation reinstalls the operating system on - /// instances of web roles or worker roles. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// 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 ReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Rebuild Role Instances reinstalls the operating system on instances - /// of web roles or worker roles and initializes the storage resources - /// that are used by them. If you do not want to initialize storage - /// resources, you can use Reimage Role Instances. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// 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 RebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// 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 DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Create or update a cloud service. Please note some properties can - /// be set only during cloud service creation. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Update a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Starts the cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginStartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Power off the cloud service. Note that resources are still attached - /// and you are getting charged for the resources. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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 BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// 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 BeginRestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Reimage asynchronous operation reinstalls the operating system on - /// instances of web roles or worker roles. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// 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 BeginReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Rebuild Role Instances reinstalls the operating system on instances - /// of web roles or worker roles and initializes the storage resources - /// that are used by them. If you do not want to initialize storage - /// resources, you can use Reimage Role Instances. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// 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 BeginRebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// 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 BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all cloud services in the subscription, regardless - /// of the associated resource group. Use nextLink property in the - /// response to get the next page of Cloud Services. Do this till - /// nextLink is null to fetch all the Cloud Services. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all cloud services under a resource group. Use - /// nextLink property in the response to get the next page of Cloud - /// Services. Do this till nextLink is null to fetch all the Cloud - /// Services. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/ICloudServicesUpdateDomainOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ICloudServicesUpdateDomainOperations.cs deleted file mode 100644 index cdac93b47a19..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/ICloudServicesUpdateDomainOperations.cs +++ /dev/null @@ -1,160 +0,0 @@ -// -// 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 -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServicesUpdateDomainOperations operations. - /// - public partial interface ICloudServicesUpdateDomainOperations - { - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. - /// Update domains are identified with a zero-based index: the first - /// update domain has an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// 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 WalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the specified update domain of a cloud service. Use nextLink - /// property in the response to get the next page of update domains. Do - /// this till nextLink is null to fetch all the update domains. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. - /// Update domains are identified with a zero-based index: the first - /// update domain has an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListUpdateDomainsWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. - /// Update domains are identified with a zero-based index: the first - /// update domain has an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// 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 BeginWalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListUpdateDomainsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/ICommunityGalleriesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ICommunityGalleriesOperations.cs index 39f3cbf24f5a..cf3ca259465a 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ICommunityGalleriesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ICommunityGalleriesOperations.cs @@ -27,7 +27,7 @@ public partial interface ICommunityGalleriesOperations /// Get a community gallery by gallery public name. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. diff --git a/src/Compute/Compute.Management.Sdk/Generated/ICommunityGalleryImageVersionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ICommunityGalleryImageVersionsOperations.cs index 3c668bd25e85..e3265c773995 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ICommunityGalleryImageVersionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ICommunityGalleryImageVersionsOperations.cs @@ -24,10 +24,10 @@ namespace Microsoft.Azure.Management.Compute public partial interface ICommunityGalleryImageVersionsOperations { /// - /// Get a community gallery image version. + /// List community gallery image versions inside an image. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. @@ -35,12 +35,6 @@ public partial interface ICommunityGalleryImageVersionsOperations /// /// The name of the community gallery image definition. /// - /// - /// The name of the community gallery image version. Needs to follow - /// semantic version name pattern: The allowed characters are digit and - /// period. Digits must be within the range of a 32-bit integer. - /// Format: <MajorVersion>.<MinorVersion>.<Patch> - /// /// /// The headers that will be added to request. /// @@ -56,12 +50,12 @@ public partial interface ICommunityGalleryImageVersionsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List community gallery image versions inside an image. + /// Get a community gallery image version. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. @@ -69,6 +63,12 @@ public partial interface ICommunityGalleryImageVersionsOperations /// /// The name of the community gallery image definition. /// + /// + /// The name of the community gallery image version. Needs to follow + /// semantic version name pattern: The allowed characters are digit and + /// period. Digits must be within the range of a 32-bit integer. + /// Format: <MajorVersion>.<MinorVersion>.<Patch> + /// /// /// The headers that will be added to request. /// @@ -84,7 +84,7 @@ public partial interface ICommunityGalleryImageVersionsOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// List community gallery image versions inside an image. /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/ICommunityGalleryImagesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ICommunityGalleryImagesOperations.cs index 38391de5f3d7..24ab6e0678f7 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ICommunityGalleryImagesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ICommunityGalleryImagesOperations.cs @@ -24,17 +24,14 @@ namespace Microsoft.Azure.Management.Compute public partial interface ICommunityGalleryImagesOperations { /// - /// Get a community gallery image. + /// List community gallery images inside a gallery. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. /// - /// - /// The name of the community gallery image definition. - /// /// /// The headers that will be added to request. /// @@ -50,16 +47,19 @@ public partial interface ICommunityGalleryImagesOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string location, string publicGalleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List community gallery images inside a gallery. + /// Get a community gallery image. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The public name of the community gallery. /// + /// + /// The name of the community gallery image definition. + /// /// /// The headers that will be added to request. /// @@ -75,7 +75,7 @@ public partial interface ICommunityGalleryImagesOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string location, string publicGalleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// List community gallery images inside a gallery. /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/IComputeManagementClient.cs b/src/Compute/Compute.Management.Sdk/Generated/IComputeManagementClient.cs index 7b6c6e90675e..090e6ffa52c7 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IComputeManagementClient.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IComputeManagementClient.cs @@ -71,69 +71,69 @@ public partial interface IComputeManagementClient : System.IDisposable IOperations Operations { get; } /// - /// Gets the IUsageOperations. + /// Gets the IAvailabilitySetsOperations. /// - IUsageOperations Usage { get; } + IAvailabilitySetsOperations AvailabilitySets { get; } /// - /// Gets the IVirtualMachineSizesOperations. + /// Gets the ICapacityReservationGroupsOperations. /// - IVirtualMachineSizesOperations VirtualMachineSizes { get; } + ICapacityReservationGroupsOperations CapacityReservationGroups { get; } /// - /// Gets the IVirtualMachineScaleSetsOperations. + /// Gets the IDedicatedHostGroupsOperations. /// - IVirtualMachineScaleSetsOperations VirtualMachineScaleSets { get; } + IDedicatedHostGroupsOperations DedicatedHostGroups { get; } /// - /// Gets the IVirtualMachineScaleSetExtensionsOperations. + /// Gets the IImagesOperations. /// - IVirtualMachineScaleSetExtensionsOperations VirtualMachineScaleSetExtensions { get; } + IImagesOperations Images { get; } /// - /// Gets the IVirtualMachineScaleSetRollingUpgradesOperations. + /// Gets the IVirtualMachineImagesEdgeZoneOperations. /// - IVirtualMachineScaleSetRollingUpgradesOperations VirtualMachineScaleSetRollingUpgrades { get; } + IVirtualMachineImagesEdgeZoneOperations VirtualMachineImagesEdgeZone { get; } /// - /// Gets the IVirtualMachineScaleSetVMExtensionsOperations. + /// Gets the IVirtualMachineImagesOperations. /// - IVirtualMachineScaleSetVMExtensionsOperations VirtualMachineScaleSetVMExtensions { get; } + IVirtualMachineImagesOperations VirtualMachineImages { get; } /// - /// Gets the IVirtualMachineScaleSetVMsOperations. + /// Gets the ILogAnalyticsOperations. /// - IVirtualMachineScaleSetVMsOperations VirtualMachineScaleSetVMs { get; } + ILogAnalyticsOperations LogAnalytics { get; } /// - /// Gets the IVirtualMachineExtensionsOperations. + /// Gets the IVirtualMachineExtensionImagesOperations. /// - IVirtualMachineExtensionsOperations VirtualMachineExtensions { get; } + IVirtualMachineExtensionImagesOperations VirtualMachineExtensionImages { get; } /// - /// Gets the IVirtualMachinesOperations. + /// Gets the IVirtualMachineRunCommandsOperations. /// - IVirtualMachinesOperations VirtualMachines { get; } + IVirtualMachineRunCommandsOperations VirtualMachineRunCommands { get; } /// - /// Gets the IVirtualMachineImagesOperations. + /// Gets the IUsageOperations. /// - IVirtualMachineImagesOperations VirtualMachineImages { get; } + IUsageOperations Usage { get; } /// - /// Gets the IVirtualMachineImagesEdgeZoneOperations. + /// Gets the IVirtualMachineScaleSetsOperations. /// - IVirtualMachineImagesEdgeZoneOperations VirtualMachineImagesEdgeZone { get; } + IVirtualMachineScaleSetsOperations VirtualMachineScaleSets { get; } /// - /// Gets the IVirtualMachineExtensionImagesOperations. + /// Gets the IVirtualMachinesOperations. /// - IVirtualMachineExtensionImagesOperations VirtualMachineExtensionImages { get; } + IVirtualMachinesOperations VirtualMachines { get; } /// - /// Gets the IAvailabilitySetsOperations. + /// Gets the IVirtualMachineSizesOperations. /// - IAvailabilitySetsOperations AvailabilitySets { get; } + IVirtualMachineSizesOperations VirtualMachineSizes { get; } /// /// Gets the IProximityPlacementGroupsOperations. @@ -141,14 +141,9 @@ public partial interface IComputeManagementClient : System.IDisposable IProximityPlacementGroupsOperations ProximityPlacementGroups { get; } /// - /// Gets the IDedicatedHostGroupsOperations. - /// - IDedicatedHostGroupsOperations DedicatedHostGroups { get; } - - /// - /// Gets the IDedicatedHostsOperations. + /// Gets the IRestorePointCollectionsOperations. /// - IDedicatedHostsOperations DedicatedHosts { get; } + IRestorePointCollectionsOperations RestorePointCollections { get; } /// /// Gets the ISshPublicKeysOperations. @@ -156,14 +151,14 @@ public partial interface IComputeManagementClient : System.IDisposable ISshPublicKeysOperations SshPublicKeys { get; } /// - /// Gets the IImagesOperations. + /// Gets the ICapacityReservationsOperations. /// - IImagesOperations Images { get; } + ICapacityReservationsOperations CapacityReservations { get; } /// - /// Gets the IRestorePointCollectionsOperations. + /// Gets the IDedicatedHostsOperations. /// - IRestorePointCollectionsOperations RestorePointCollections { get; } + IDedicatedHostsOperations DedicatedHosts { get; } /// /// Gets the IRestorePointsOperations. @@ -171,24 +166,24 @@ public partial interface IComputeManagementClient : System.IDisposable IRestorePointsOperations RestorePoints { get; } /// - /// Gets the ICapacityReservationGroupsOperations. + /// Gets the IVirtualMachineScaleSetRollingUpgradesOperations. /// - ICapacityReservationGroupsOperations CapacityReservationGroups { get; } + IVirtualMachineScaleSetRollingUpgradesOperations VirtualMachineScaleSetRollingUpgrades { get; } /// - /// Gets the ICapacityReservationsOperations. + /// Gets the IVirtualMachineScaleSetExtensionsOperations. /// - ICapacityReservationsOperations CapacityReservations { get; } + IVirtualMachineScaleSetExtensionsOperations VirtualMachineScaleSetExtensions { get; } /// - /// Gets the ILogAnalyticsOperations. + /// Gets the IVirtualMachineScaleSetVMsOperations. /// - ILogAnalyticsOperations LogAnalytics { get; } + IVirtualMachineScaleSetVMsOperations VirtualMachineScaleSetVMs { get; } /// - /// Gets the IVirtualMachineRunCommandsOperations. + /// Gets the IVirtualMachineScaleSetVMExtensionsOperations. /// - IVirtualMachineRunCommandsOperations VirtualMachineRunCommands { get; } + IVirtualMachineScaleSetVMExtensionsOperations VirtualMachineScaleSetVMExtensions { get; } /// /// Gets the IVirtualMachineScaleSetVMRunCommandsOperations. @@ -196,9 +191,9 @@ public partial interface IComputeManagementClient : System.IDisposable IVirtualMachineScaleSetVMRunCommandsOperations VirtualMachineScaleSetVMRunCommands { get; } /// - /// Gets the IDisksOperations. + /// Gets the IVirtualMachineExtensionsOperations. /// - IDisksOperations Disks { get; } + IVirtualMachineExtensionsOperations VirtualMachineExtensions { get; } /// /// Gets the IDiskAccessesOperations. @@ -211,9 +206,9 @@ public partial interface IComputeManagementClient : System.IDisposable IDiskEncryptionSetsOperations DiskEncryptionSets { get; } /// - /// Gets the IDiskRestorePointOperations. + /// Gets the IDisksOperations. /// - IDiskRestorePointOperations DiskRestorePoint { get; } + IDisksOperations Disks { get; } /// /// Gets the ISnapshotsOperations. @@ -221,9 +216,9 @@ public partial interface IComputeManagementClient : System.IDisposable ISnapshotsOperations Snapshots { get; } /// - /// Gets the IResourceSkusOperations. + /// Gets the IDiskRestorePointOperations. /// - IResourceSkusOperations ResourceSkus { get; } + IDiskRestorePointOperations DiskRestorePoint { get; } /// /// Gets the IGalleriesOperations. @@ -231,44 +226,19 @@ public partial interface IComputeManagementClient : System.IDisposable IGalleriesOperations Galleries { get; } /// - /// Gets the IGalleryImagesOperations. - /// - IGalleryImagesOperations GalleryImages { get; } - - /// - /// Gets the IGalleryImageVersionsOperations. - /// - IGalleryImageVersionsOperations GalleryImageVersions { get; } - - /// - /// Gets the IGalleryApplicationsOperations. - /// - IGalleryApplicationsOperations GalleryApplications { get; } - - /// - /// Gets the IGalleryApplicationVersionsOperations. - /// - IGalleryApplicationVersionsOperations GalleryApplicationVersions { get; } - - /// - /// Gets the ISoftDeletedResourceOperations. - /// - ISoftDeletedResourceOperations SoftDeletedResource { get; } - - /// - /// Gets the IGallerySharingProfileOperations. + /// Gets the ICommunityGalleriesOperations. /// - IGallerySharingProfileOperations GallerySharingProfile { get; } + ICommunityGalleriesOperations CommunityGalleries { get; } /// - /// Gets the IGalleryInVMAccessControlProfilesOperations. + /// Gets the ICommunityGalleryImagesOperations. /// - IGalleryInVMAccessControlProfilesOperations GalleryInVMAccessControlProfiles { get; } + ICommunityGalleryImagesOperations CommunityGalleryImages { get; } /// - /// Gets the IGalleryInVMAccessControlProfileVersionsOperations. + /// Gets the ICommunityGalleryImageVersionsOperations. /// - IGalleryInVMAccessControlProfileVersionsOperations GalleryInVMAccessControlProfileVersions { get; } + ICommunityGalleryImageVersionsOperations CommunityGalleryImageVersions { get; } /// /// Gets the ISharedGalleriesOperations. @@ -286,44 +256,49 @@ public partial interface IComputeManagementClient : System.IDisposable ISharedGalleryImageVersionsOperations SharedGalleryImageVersions { get; } /// - /// Gets the ICommunityGalleriesOperations. + /// Gets the IGalleryApplicationsOperations. /// - ICommunityGalleriesOperations CommunityGalleries { get; } + IGalleryApplicationsOperations GalleryApplications { get; } /// - /// Gets the ICommunityGalleryImagesOperations. + /// Gets the IGalleryApplicationVersionsOperations. /// - ICommunityGalleryImagesOperations CommunityGalleryImages { get; } + IGalleryApplicationVersionsOperations GalleryApplicationVersions { get; } /// - /// Gets the ICommunityGalleryImageVersionsOperations. + /// Gets the IGalleryImagesOperations. /// - ICommunityGalleryImageVersionsOperations CommunityGalleryImageVersions { get; } + IGalleryImagesOperations GalleryImages { get; } + + /// + /// Gets the IGalleryImageVersionsOperations. + /// + IGalleryImageVersionsOperations GalleryImageVersions { get; } /// - /// Gets the ICloudServiceRoleInstancesOperations. + /// Gets the IGalleryInVMAccessControlProfilesOperations. /// - ICloudServiceRoleInstancesOperations CloudServiceRoleInstances { get; } + IGalleryInVMAccessControlProfilesOperations GalleryInVMAccessControlProfiles { get; } /// - /// Gets the ICloudServiceRolesOperations. + /// Gets the IGalleryInVMAccessControlProfileVersionsOperations. /// - ICloudServiceRolesOperations CloudServiceRoles { get; } + IGalleryInVMAccessControlProfileVersionsOperations GalleryInVMAccessControlProfileVersions { get; } /// - /// Gets the ICloudServicesOperations. + /// Gets the IGallerySharingProfileOperations. /// - ICloudServicesOperations CloudServices { get; } + IGallerySharingProfileOperations GallerySharingProfile { get; } /// - /// Gets the ICloudServicesUpdateDomainOperations. + /// Gets the ISoftDeletedResourceOperations. /// - ICloudServicesUpdateDomainOperations CloudServicesUpdateDomain { get; } + ISoftDeletedResourceOperations SoftDeletedResource { get; } /// - /// Gets the ICloudServiceOperatingSystemsOperations. + /// Gets the IResourceSkusOperations. /// - ICloudServiceOperatingSystemsOperations CloudServiceOperatingSystems { get; } + IResourceSkusOperations ResourceSkus { get; } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/IDedicatedHostGroupsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IDedicatedHostGroupsOperations.cs index 107ebc73dc6b..b82dd2613d74 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IDedicatedHostGroupsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IDedicatedHostGroupsOperations.cs @@ -24,19 +24,10 @@ namespace Microsoft.Azure.Management.Compute public partial interface IDedicatedHostGroupsOperations { /// - /// Create or update a dedicated host group. For details of Dedicated - /// Host and Dedicated Host Groups please see [Dedicated Host - /// Documentation] (https://go.microsoft.com/fwlink/?linkid=2082596) + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated + /// host groups. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the dedicated host group. - /// - /// - /// Parameters supplied to the Create Dedicated Host Group. - /// /// /// The headers that will be added to request. /// @@ -52,18 +43,14 @@ public partial interface IDedicatedHostGroupsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, DedicatedHostGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update an dedicated host group. + /// Lists all of the dedicated host groups in the specified resource + /// group. Use the nextLink property in the response to get the next + /// page of dedicated host groups. /// /// - /// The name of the resource group. - /// - /// - /// The name of the dedicated host group. - /// - /// - /// Parameters supplied to the Update Dedicated Host Group operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The headers that will be added to request. @@ -80,16 +67,23 @@ public partial interface IDedicatedHostGroupsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, DedicatedHostGroupUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a dedicated host group. + /// Retrieves information about a dedicated host group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// + /// + /// The expand expression to apply on the operation. 'InstanceView' + /// will retrieve the list of instance views of the dedicated hosts + /// under the dedicated host group. 'UserData' is not supported for + /// dedicated host group. Possible values include: 'instanceView', + /// 'userData', 'resiliencyView' + /// /// /// The headers that will be added to request. /// @@ -99,25 +93,26 @@ public partial interface IDedicatedHostGroupsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about a dedicated host group. + /// Create or update a dedicated host group. For details of Dedicated + /// Host and Dedicated Host Groups please see [Dedicated Host + /// Documentation] (https://go.microsoft.com/fwlink/?linkid=2082596) /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' - /// will retrieve the list of instance views of the dedicated hosts - /// under the dedicated host group. 'UserData' is not supported for - /// dedicated host group. Possible values include: 'instanceView', - /// 'userData' + /// + /// Parameters supplied to the Create Dedicated Host Group. /// /// /// The headers that will be added to request. @@ -134,14 +129,18 @@ public partial interface IDedicatedHostGroupsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, DedicatedHostGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all of the dedicated host groups in the specified resource - /// group. Use the nextLink property in the response to get the next - /// page of dedicated host groups. + /// Update an dedicated host group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// Parameters supplied to the Update Dedicated Host Group operation. /// /// /// The headers that will be added to request. @@ -158,12 +157,16 @@ public partial interface IDedicatedHostGroupsOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, DedicatedHostGroupUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all of the dedicated host groups in the subscription. Use the - /// nextLink property in the response to get the next page of dedicated - /// host groups. + /// Delete a dedicated host group. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the dedicated host group. + /// /// /// The headers that will be added to request. /// @@ -173,17 +176,14 @@ public partial interface IDedicatedHostGroupsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all of the dedicated host groups in the specified resource - /// group. Use the nextLink property in the response to get the next - /// page of dedicated host groups. + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated + /// host groups. /// /// /// The NextLink from the previous successful call to List operation. @@ -203,11 +203,11 @@ public partial interface IDedicatedHostGroupsOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all of the dedicated host groups in the subscription. Use the - /// nextLink property in the response to get the next page of dedicated - /// host groups. + /// Lists all of the dedicated host groups in the specified resource + /// group. Use the nextLink property in the response to get the next + /// page of dedicated host groups. /// /// /// The NextLink from the previous successful call to List operation. @@ -227,6 +227,6 @@ public partial interface IDedicatedHostGroupsOperations /// /// Thrown when a required parameter is null /// - Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/IDedicatedHostsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IDedicatedHostsOperations.cs index ab55597f4fa7..85056d13eaf5 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IDedicatedHostsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IDedicatedHostsOperations.cs @@ -24,20 +24,16 @@ namespace Microsoft.Azure.Management.Compute public partial interface IDedicatedHostsOperations { /// - /// Create or update a dedicated host . + /// Lists all of the dedicated hosts in the specified dedicated host + /// group. Use the nextLink property in the response to get the next + /// page of dedicated hosts. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// - /// - /// The name of the dedicated host . - /// - /// - /// Parameters supplied to the Create Dedicated Host. - /// /// /// The headers that will be added to request. /// @@ -53,21 +49,24 @@ public partial interface IDedicatedHostsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByHostGroupWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a dedicated host . + /// Retrieves information about a dedicated host. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// /// - /// The name of the dedicated host . + /// The name of the dedicated host. /// - /// - /// Parameters supplied to the Update Dedicated Host operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' + /// will retrieve the list of instance views of the dedicated host. + /// 'UserData' is not supported for dedicated host. Possible values + /// include: 'instanceView', 'userData', 'resiliencyView' /// /// /// The headers that will be added to request. @@ -84,12 +83,12 @@ public partial interface IDedicatedHostsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a dedicated host. + /// Create or update a dedicated host . /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -97,6 +96,9 @@ public partial interface IDedicatedHostsOperations /// /// The name of the dedicated host. /// + /// + /// Parameters supplied to the Create Dedicated Host. + /// /// /// The headers that will be added to request. /// @@ -106,15 +108,18 @@ public partial interface IDedicatedHostsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about a dedicated host. + /// Update a dedicated host . /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -122,11 +127,8 @@ public partial interface IDedicatedHostsOperations /// /// The name of the dedicated host. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' - /// will retrieve the list of instance views of the dedicated host. - /// 'UserData' is not supported for dedicated host. Possible values - /// include: 'instanceView', 'userData' + /// + /// Parameters supplied to the Update Dedicated Host operation. /// /// /// The headers that will be added to request. @@ -143,18 +145,19 @@ public partial interface IDedicatedHostsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all of the dedicated hosts in the specified dedicated host - /// group. Use the nextLink property in the response to get the next - /// page of dedicated hosts. + /// Delete a dedicated host. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// + /// + /// The name of the dedicated host. + /// /// /// The headers that will be added to request. /// @@ -164,24 +167,17 @@ public partial interface IDedicatedHostsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListByHostGroupWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Restart the dedicated host. The operation will complete - /// successfully once the dedicated host has restarted and is running. - /// To determine the health of VMs deployed on the dedicated host after - /// the restart check the Resource Health Center in the Azure Portal. - /// Please refer to - /// https://docs.microsoft.com/azure/service-health/resource-health-overview - /// for more details. + /// Lists all available dedicated host sizes to which the specified + /// dedicated host can be resized. NOTE: The dedicated host sizes + /// provided can be used to only scale up the existing dedicated host. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -198,10 +194,13 @@ public partial interface IDedicatedHostsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task RestartWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListAvailableSizesWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Redeploy the dedicated host. The operation will complete /// successfully once the dedicated host has migrated to a new node and @@ -212,7 +211,7 @@ public partial interface IDedicatedHostsOperations /// for more details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -234,12 +233,16 @@ public partial interface IDedicatedHostsOperations /// Task> RedeployWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all available dedicated host sizes to which the specified - /// dedicated host can be resized. NOTE: The dedicated host sizes - /// provided can be used to only scale up the existing dedicated host. + /// Restart the dedicated host. The operation will complete + /// successfully once the dedicated host has restarted and is running. + /// To determine the health of VMs deployed on the dedicated host after + /// the restart check the Resource Health Center in the Azure Portal. + /// Please refer to + /// https://docs.microsoft.com/azure/service-health/resource-health-overview + /// for more details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -256,24 +259,21 @@ public partial interface IDedicatedHostsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListAvailableSizesWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> RestartWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update a dedicated host . /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// /// - /// The name of the dedicated host . + /// The name of the dedicated host. /// /// /// Parameters supplied to the Create Dedicated Host. @@ -293,18 +293,18 @@ public partial interface IDedicatedHostsOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Update a dedicated host . /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. /// /// - /// The name of the dedicated host . + /// The name of the dedicated host. /// /// /// Parameters supplied to the Update Dedicated Host operation. @@ -324,12 +324,12 @@ public partial interface IDedicatedHostsOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete a dedicated host. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -351,16 +351,16 @@ public partial interface IDedicatedHostsOperations /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Restart the dedicated host. The operation will complete - /// successfully once the dedicated host has restarted and is running. - /// To determine the health of VMs deployed on the dedicated host after - /// the restart check the Resource Health Center in the Azure Portal. - /// Please refer to + /// Redeploy the dedicated host. The operation will complete + /// successfully once the dedicated host has migrated to a new node and + /// is running. To determine the health of VMs deployed on the + /// dedicated host after the redeploy check the Resource Health Center + /// in the Azure Portal. Please refer to /// https://docs.microsoft.com/azure/service-health/resource-health-overview /// for more details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -380,18 +380,18 @@ public partial interface IDedicatedHostsOperations /// /// Thrown when a required parameter is null /// - Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Redeploy the dedicated host. The operation will complete - /// successfully once the dedicated host has migrated to a new node and - /// is running. To determine the health of VMs deployed on the - /// dedicated host after the redeploy check the Resource Health Center - /// in the Azure Portal. Please refer to + /// Restart the dedicated host. The operation will complete + /// successfully once the dedicated host has restarted and is running. + /// To determine the health of VMs deployed on the dedicated host after + /// the restart check the Resource Health Center in the Azure Portal. + /// Please refer to /// https://docs.microsoft.com/azure/service-health/resource-health-overview /// for more details. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the dedicated host group. @@ -411,7 +411,7 @@ public partial interface IDedicatedHostsOperations /// /// Thrown when a required parameter is null /// - Task> BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginRestartWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all of the dedicated hosts in the specified dedicated host /// group. Use the nextLink property in the response to get the next diff --git a/src/Compute/Compute.Management.Sdk/Generated/IDiskAccessesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IDiskAccessesOperations.cs index 78ae20ec20e3..a07de0adf354 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IDiskAccessesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IDiskAccessesOperations.cs @@ -24,21 +24,8 @@ namespace Microsoft.Azure.Management.Compute public partial interface IDiskAccessesOperations { /// - /// Creates or updates a disk access resource + /// Lists all the disk access resources under a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk access resource that is being created. The - /// name can't be changed after the disk encryption set is created. - /// Supported characters for the name are a-z, A-Z, 0-9, _ and -. The - /// maximum name length is 80 characters. - /// - /// - /// disk access object supplied in the body of the Put disk access - /// operation. - /// /// /// The headers that will be added to request. /// @@ -54,21 +41,12 @@ public partial interface IDiskAccessesOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, DiskAccess diskAccess, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates (patches) a disk access resource. + /// Lists all the disk access resources under a resource group. /// /// - /// The name of the resource group. - /// - /// - /// The name of the disk access resource that is being created. The - /// name can't be changed after the disk encryption set is created. - /// Supported characters for the name are a-z, A-Z, 0-9, _ and -. The - /// maximum name length is 80 characters. - /// - /// - /// Resource tags + /// The name of the resource group. The name is case insensitive. /// /// /// The headers that will be added to request. @@ -85,12 +63,12 @@ public partial interface IDiskAccessesOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets information about a disk access resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The @@ -115,10 +93,10 @@ public partial interface IDiskAccessesOperations /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes a disk access resource. + /// Creates or updates a disk access resource /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The @@ -126,6 +104,10 @@ public partial interface IDiskAccessesOperations /// Supported characters for the name are a-z, A-Z, 0-9, _ and -. The /// maximum name length is 80 characters. /// + /// + /// disk access object supplied in the body of the Put disk access + /// operation. + /// /// /// The headers that will be added to request. /// @@ -135,15 +117,27 @@ public partial interface IDiskAccessesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, DiskAccess diskAccess, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the disk access resources under a resource group. + /// Updates (patches) a disk access resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk access resource that is being created. The + /// name can't be changed after the disk encryption set is created. + /// Supported characters for the name are a-z, A-Z, 0-9, _ and -. The + /// maximum name length is 80 characters. + /// + /// + /// Resource tags /// /// /// The headers that will be added to request. @@ -160,10 +154,19 @@ public partial interface IDiskAccessesOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the disk access resources under a subscription. + /// Deletes a disk access resource. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk access resource that is being created. The + /// name can't be changed after the disk encryption set is created. + /// Supported characters for the name are a-z, A-Z, 0-9, _ and -. The + /// maximum name length is 80 characters. + /// /// /// The headers that will be added to request. /// @@ -173,18 +176,16 @@ public partial interface IDiskAccessesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the private link resources possible under disk access resource + /// List information about private endpoint connections under a disk + /// access resource /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The @@ -207,14 +208,13 @@ public partial interface IDiskAccessesOperations /// /// Thrown when a required parameter is null /// - Task> GetPrivateLinkResourcesWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListPrivateEndpointConnectionsWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Approve or reject a private endpoint connection under disk access - /// resource, this can't be used to create a new private endpoint - /// connection. + /// Gets information about a private endpoint connection under a disk + /// access resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The @@ -225,10 +225,6 @@ public partial interface IDiskAccessesOperations /// /// The name of the private endpoint connection. /// - /// - /// private endpoint connection object supplied in the body of the Put - /// private endpoint connection operation. - /// /// /// The headers that will be added to request. /// @@ -244,13 +240,14 @@ public partial interface IDiskAccessesOperations /// /// Thrown when a required parameter is null /// - Task> UpdateAPrivateEndpointConnectionWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateEndpointConnection privateEndpointConnection, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPrivateEndpointConnectionWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets information about a private endpoint connection under a disk - /// access resource. + /// Approve or reject a private endpoint connection under disk access + /// resource, this can't be used to create a new private endpoint + /// connection. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The @@ -261,6 +258,10 @@ public partial interface IDiskAccessesOperations /// /// The name of the private endpoint connection. /// + /// + /// A collection of information about the state of the connection + /// between DiskAccess and Virtual Network. + /// /// /// The headers that will be added to request. /// @@ -276,12 +277,12 @@ public partial interface IDiskAccessesOperations /// /// Thrown when a required parameter is null /// - Task> GetAPrivateEndpointConnectionWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateAPrivateEndpointConnectionWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a private endpoint connection under a disk access resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The @@ -306,11 +307,10 @@ public partial interface IDiskAccessesOperations /// Task DeleteAPrivateEndpointConnectionWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List information about private endpoint connections under a disk - /// access resource + /// Gets the private link resources possible under disk access resource /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The @@ -333,12 +333,12 @@ public partial interface IDiskAccessesOperations /// /// Thrown when a required parameter is null /// - Task>> ListPrivateEndpointConnectionsWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetPrivateLinkResourcesWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates or updates a disk access resource /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The @@ -370,7 +370,7 @@ public partial interface IDiskAccessesOperations /// Updates (patches) a disk access resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The @@ -401,7 +401,7 @@ public partial interface IDiskAccessesOperations /// Deletes a disk access resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The @@ -428,7 +428,7 @@ public partial interface IDiskAccessesOperations /// connection. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The @@ -439,9 +439,9 @@ public partial interface IDiskAccessesOperations /// /// The name of the private endpoint connection. /// - /// - /// private endpoint connection object supplied in the body of the Put - /// private endpoint connection operation. + /// + /// A collection of information about the state of the connection + /// between DiskAccess and Virtual Network. /// /// /// The headers that will be added to request. @@ -458,12 +458,12 @@ public partial interface IDiskAccessesOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateAPrivateEndpointConnectionWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateEndpointConnection privateEndpointConnection, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateAPrivateEndpointConnectionWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a private endpoint connection under a disk access resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk access resource that is being created. The @@ -488,7 +488,7 @@ public partial interface IDiskAccessesOperations /// Task BeginDeleteAPrivateEndpointConnectionWithHttpMessagesAsync(string resourceGroupName, string diskAccessName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the disk access resources under a resource group. + /// Lists all the disk access resources under a subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -508,9 +508,9 @@ public partial interface IDiskAccessesOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the disk access resources under a subscription. + /// Lists all the disk access resources under a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -530,7 +530,7 @@ public partial interface IDiskAccessesOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// List information about private endpoint connections under a disk /// access resource diff --git a/src/Compute/Compute.Management.Sdk/Generated/IDiskEncryptionSetsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IDiskEncryptionSetsOperations.cs index e165ca709ee6..f6d4d2d6cb71 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IDiskEncryptionSetsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IDiskEncryptionSetsOperations.cs @@ -24,21 +24,8 @@ namespace Microsoft.Azure.Management.Compute public partial interface IDiskEncryptionSetsOperations { /// - /// Creates or updates a disk encryption set + /// Lists all the disk encryption sets under a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the disk encryption set that is being created. The name - /// can't be changed after the disk encryption set is created. - /// Supported characters for the name are a-z, A-Z, 0-9, _ and -. The - /// maximum name length is 80 characters. - /// - /// - /// disk encryption set object supplied in the body of the Put disk - /// encryption set operation. - /// /// /// The headers that will be added to request. /// @@ -54,22 +41,12 @@ public partial interface IDiskEncryptionSetsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSet diskEncryptionSet, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates (patches) a disk encryption set. + /// Lists all the disk encryption sets under a resource group. /// /// - /// The name of the resource group. - /// - /// - /// The name of the disk encryption set that is being created. The name - /// can't be changed after the disk encryption set is created. - /// Supported characters for the name are a-z, A-Z, 0-9, _ and -. The - /// maximum name length is 80 characters. - /// - /// - /// disk encryption set object supplied in the body of the Patch disk - /// encryption set operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The headers that will be added to request. @@ -86,12 +63,12 @@ public partial interface IDiskEncryptionSetsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets information about a disk encryption set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name @@ -116,10 +93,10 @@ public partial interface IDiskEncryptionSetsOperations /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes a disk encryption set. + /// Creates or updates a disk encryption set /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name @@ -127,6 +104,10 @@ public partial interface IDiskEncryptionSetsOperations /// Supported characters for the name are a-z, A-Z, 0-9, _ and -. The /// maximum name length is 80 characters. /// + /// + /// disk encryption set object supplied in the body of the Put disk + /// encryption set operation. + /// /// /// The headers that will be added to request. /// @@ -136,15 +117,28 @@ public partial interface IDiskEncryptionSetsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSet diskEncryptionSet, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the disk encryption sets under a resource group. + /// Updates (patches) a disk encryption set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk encryption set that is being created. The name + /// can't be changed after the disk encryption set is created. + /// Supported characters for the name are a-z, A-Z, 0-9, _ and -. The + /// maximum name length is 80 characters. + /// + /// + /// disk encryption set object supplied in the body of the Patch disk + /// encryption set operation. /// /// /// The headers that will be added to request. @@ -161,10 +155,19 @@ public partial interface IDiskEncryptionSetsOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, DiskEncryptionSetUpdate diskEncryptionSet, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the disk encryption sets under a subscription. + /// Deletes a disk encryption set. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the disk encryption set that is being created. The name + /// can't be changed after the disk encryption set is created. + /// Supported characters for the name are a-z, A-Z, 0-9, _ and -. The + /// maximum name length is 80 characters. + /// /// /// The headers that will be added to request. /// @@ -174,19 +177,16 @@ public partial interface IDiskEncryptionSetsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all resources that are encrypted with this disk encryption /// set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name @@ -214,7 +214,7 @@ public partial interface IDiskEncryptionSetsOperations /// Creates or updates a disk encryption set /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name @@ -246,7 +246,7 @@ public partial interface IDiskEncryptionSetsOperations /// Updates (patches) a disk encryption set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name @@ -278,7 +278,7 @@ public partial interface IDiskEncryptionSetsOperations /// Deletes a disk encryption set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the disk encryption set that is being created. The name @@ -300,7 +300,7 @@ public partial interface IDiskEncryptionSetsOperations /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string diskEncryptionSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the disk encryption sets under a resource group. + /// Lists all the disk encryption sets under a subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -320,9 +320,9 @@ public partial interface IDiskEncryptionSetsOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the disk encryption sets under a subscription. + /// Lists all the disk encryption sets under a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -342,7 +342,7 @@ public partial interface IDiskEncryptionSetsOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all resources that are encrypted with this disk encryption /// set. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IDiskRestorePointOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IDiskRestorePointOperations.cs index 57da1a147059..bc3d503001ca 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IDiskRestorePointOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IDiskRestorePointOperations.cs @@ -24,10 +24,10 @@ namespace Microsoft.Azure.Management.Compute public partial interface IDiskRestorePointOperations { /// - /// Get disk restorePoint resource + /// Lists diskRestorePoints under a vmRestorePoint. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore @@ -37,9 +37,6 @@ public partial interface IDiskRestorePointOperations /// The name of the vm restore point that the disk disk restore point /// belongs. /// - /// - /// The name of the disk restore point created. - /// /// /// The headers that will be added to request. /// @@ -55,12 +52,12 @@ public partial interface IDiskRestorePointOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, string diskRestorePointName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByRestorePointWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists diskRestorePoints under a vmRestorePoint. + /// Get disk restorePoint resource /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore @@ -70,6 +67,9 @@ public partial interface IDiskRestorePointOperations /// The name of the vm restore point that the disk disk restore point /// belongs. /// + /// + /// The name of the DiskRestorePoint + /// /// /// The headers that will be added to request. /// @@ -85,12 +85,12 @@ public partial interface IDiskRestorePointOperations /// /// Thrown when a required parameter is null /// - Task>> ListByRestorePointWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string vmRestorePointName, string diskRestorePointName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Grants access to a diskRestorePoint. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore @@ -101,7 +101,7 @@ public partial interface IDiskRestorePointOperations /// belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// Access data object supplied in the body of the get disk access @@ -127,7 +127,7 @@ public partial interface IDiskRestorePointOperations /// Revokes access to a diskRestorePoint. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore @@ -138,7 +138,7 @@ public partial interface IDiskRestorePointOperations /// belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// The headers that will be added to request. @@ -157,7 +157,7 @@ public partial interface IDiskRestorePointOperations /// Grants access to a diskRestorePoint. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore @@ -168,7 +168,7 @@ public partial interface IDiskRestorePointOperations /// belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// Access data object supplied in the body of the get disk access @@ -194,7 +194,7 @@ public partial interface IDiskRestorePointOperations /// Revokes access to a diskRestorePoint. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection that the disk restore @@ -205,7 +205,7 @@ public partial interface IDiskRestorePointOperations /// belongs. /// /// - /// The name of the disk restore point created. + /// The name of the DiskRestorePoint /// /// /// The headers that will be added to request. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IDisksOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IDisksOperations.cs index 2aca4ce3f069..b06f764c73e3 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IDisksOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IDisksOperations.cs @@ -24,20 +24,8 @@ namespace Microsoft.Azure.Management.Compute public partial interface IDisksOperations { /// - /// Creates or updates a disk. + /// Lists all the disks under a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the managed disk that is being created. The name can't - /// be changed after the disk is created. Supported characters for the - /// name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// Disk object supplied in the body of the Put disk operation. - /// /// /// The headers that will be added to request. /// @@ -53,21 +41,12 @@ public partial interface IDisksOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string diskName, Disk disk, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates (patches) a disk. + /// Lists all the disks under a resource group. /// /// - /// The name of the resource group. - /// - /// - /// The name of the managed disk that is being created. The name can't - /// be changed after the disk is created. Supported characters for the - /// name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 - /// characters. - /// - /// - /// Disk object supplied in the body of the Patch disk operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The headers that will be added to request. @@ -84,12 +63,12 @@ public partial interface IDisksOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string diskName, DiskUpdate disk, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets information about a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't @@ -114,10 +93,10 @@ public partial interface IDisksOperations /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string diskName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes a disk. + /// Creates or updates a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't @@ -125,6 +104,9 @@ public partial interface IDisksOperations /// name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 /// characters. /// + /// + /// Disk object supplied in the body of the Put disk operation. + /// /// /// The headers that will be added to request. /// @@ -134,15 +116,27 @@ public partial interface IDisksOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string diskName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string diskName, Disk disk, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the disks under a resource group. + /// Updates (patches) a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the managed disk that is being created. The name can't + /// be changed after the disk is created. Supported characters for the + /// name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// + /// + /// Disk object supplied in the body of the Patch disk operation. /// /// /// The headers that will be added to request. @@ -159,10 +153,19 @@ public partial interface IDisksOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string diskName, DiskUpdate disk, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the disks under a subscription. + /// Deletes a disk. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the managed disk that is being created. The name can't + /// be changed after the disk is created. Supported characters for the + /// name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 + /// characters. + /// /// /// The headers that will be added to request. /// @@ -172,18 +175,15 @@ public partial interface IDisksOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string diskName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Grants access to a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't @@ -215,7 +215,7 @@ public partial interface IDisksOperations /// Revokes access to a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't @@ -240,7 +240,7 @@ public partial interface IDisksOperations /// Creates or updates a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't @@ -271,7 +271,7 @@ public partial interface IDisksOperations /// Updates (patches) a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't @@ -302,7 +302,7 @@ public partial interface IDisksOperations /// Deletes a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't @@ -327,7 +327,7 @@ public partial interface IDisksOperations /// Grants access to a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't @@ -359,7 +359,7 @@ public partial interface IDisksOperations /// Revokes access to a disk. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the managed disk that is being created. The name can't @@ -381,7 +381,7 @@ public partial interface IDisksOperations /// Task BeginRevokeAccessWithHttpMessagesAsync(string resourceGroupName, string diskName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the disks under a resource group. + /// Lists all the disks under a subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -401,9 +401,9 @@ public partial interface IDisksOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the disks under a subscription. + /// Lists all the disks under a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -423,6 +423,6 @@ public partial interface IDisksOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/IGalleriesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IGalleriesOperations.cs index 59009c628f34..4dd5b098dbe1 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IGalleriesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IGalleriesOperations.cs @@ -24,20 +24,8 @@ namespace Microsoft.Azure.Management.Compute public partial interface IGalleriesOperations { /// - /// Create or update a Shared Image Gallery. + /// List galleries under a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery. The allowed characters are - /// alphabets and numbers with dots and periods allowed in the middle. - /// The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the create or update Shared Image Gallery - /// operation. - /// /// /// The headers that will be added to request. /// @@ -53,20 +41,12 @@ public partial interface IGalleriesOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, Gallery gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a Shared Image Gallery. + /// List galleries under a resource group. /// /// - /// The name of the resource group. - /// - /// - /// The name of the Shared Image Gallery. The allowed characters are - /// alphabets and numbers with dots and periods allowed in the middle. - /// The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the update Shared Image Gallery operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The headers that will be added to request. @@ -83,12 +63,12 @@ public partial interface IGalleriesOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, GalleryUpdate gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Retrieves information about a Shared Image Gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the Shared Image Gallery. @@ -118,13 +98,17 @@ public partial interface IGalleriesOperations /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string select = default(string), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a Shared Image Gallery. + /// Create or update a Shared Image Gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery to be deleted. + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the create or update Shared Image Gallery + /// operation. /// /// /// The headers that will be added to request. @@ -135,15 +119,24 @@ public partial interface IGalleriesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, Gallery gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List galleries under a resource group. + /// Update a Shared Image Gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update Shared Image Gallery operation. /// /// /// The headers that will be added to request. @@ -160,10 +153,16 @@ public partial interface IGalleriesOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, GalleryUpdate gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List galleries under a subscription. + /// Delete a Shared Image Gallery. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the Shared Image Gallery. + /// /// /// The headers that will be added to request. /// @@ -173,23 +172,18 @@ public partial interface IGalleriesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update a Shared Image Gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery. The allowed characters are - /// alphabets and numbers with dots and periods allowed in the middle. - /// The maximum length is 80 characters. + /// The name of the Shared Image Gallery. /// /// /// Parameters supplied to the create or update Shared Image Gallery @@ -210,17 +204,15 @@ public partial interface IGalleriesOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, Gallery gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, Gallery gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Update a Shared Image Gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery. The allowed characters are - /// alphabets and numbers with dots and periods allowed in the middle. - /// The maximum length is 80 characters. + /// The name of the Shared Image Gallery. /// /// /// Parameters supplied to the update Shared Image Gallery operation. @@ -240,15 +232,15 @@ public partial interface IGalleriesOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, GalleryUpdate gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, GalleryUpdate gallery, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete a Shared Image Gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery to be deleted. + /// The name of the Shared Image Gallery. /// /// /// The headers that will be added to request. @@ -264,7 +256,7 @@ public partial interface IGalleriesOperations /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List galleries under a resource group. + /// List galleries under a subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -284,9 +276,9 @@ public partial interface IGalleriesOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List galleries under a subscription. + /// List galleries under a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -306,6 +298,6 @@ public partial interface IGalleriesOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/IGalleryApplicationVersionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IGalleryApplicationVersionsOperations.cs index c7e834be07d9..6a03594d955b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IGalleryApplicationVersionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IGalleryApplicationVersionsOperations.cs @@ -24,29 +24,17 @@ namespace Microsoft.Azure.Management.Compute public partial interface IGalleryApplicationVersionsOperations { /// - /// Create or update a gallery Application Version. + /// List gallery Application Versions in a gallery Application + /// Definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the - /// Application Version is to be created. - /// - /// - /// The name of the gallery Application Version to be created. Needs to - /// follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit - /// integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the create or update gallery Application - /// Version operation. + /// The name of the gallery Application Definition to be retrieved. /// /// /// The headers that will be added to request. @@ -63,31 +51,25 @@ public partial interface IGalleryApplicationVersionsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersion galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByGalleryApplicationWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery Application Version. + /// Retrieves information about a gallery Application Version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the - /// Application Version is to be updated. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be updated. Needs to - /// follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit - /// integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery Application Version to be retrieved. /// - /// - /// Parameters supplied to the update gallery Application Version - /// operation. + /// + /// The expand expression to apply on the operation. Possible values + /// include: 'ReplicationStatus', 'UefiSettings' /// /// /// The headers that will be added to request. @@ -104,27 +86,25 @@ public partial interface IGalleryApplicationVersionsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersionUpdate galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about a gallery Application Version. + /// Create or update a gallery Application Version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the - /// Application Version resides. + /// The name of the gallery Application Definition to be retrieved. /// /// /// The name of the gallery Application Version to be retrieved. /// - /// - /// The expand expression to apply on the operation. Possible values - /// include: 'ReplicationStatus', 'UefiSettings' + /// + /// Parameters supplied to the create or update gallery Application + /// Version operation. /// /// /// The headers that will be added to request. @@ -141,23 +121,25 @@ public partial interface IGalleryApplicationVersionsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersion galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a gallery Application Version. + /// Update a gallery Application Version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the - /// Application Version resides. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be deleted. + /// The name of the gallery Application Version to be retrieved. + /// + /// + /// Parameters supplied to the update gallery Application Version + /// operation. /// /// /// The headers that will be added to request. @@ -168,24 +150,27 @@ public partial interface IGalleryApplicationVersionsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersionUpdate galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery Application Versions in a gallery Application - /// Definition. + /// Delete a gallery Application Version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the Shared Application Gallery Application Definition - /// from which the Application Versions are to be listed. + /// The name of the gallery Application Definition to be retrieved. + /// + /// + /// The name of the gallery Application Version to be retrieved. /// /// /// The headers that will be added to request. @@ -196,33 +181,24 @@ public partial interface IGalleryApplicationVersionsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListByGalleryApplicationWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update a gallery Application Version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the - /// Application Version is to be created. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be created. Needs to - /// follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit - /// integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery Application Version to be retrieved. /// /// /// Parameters supplied to the create or update gallery Application @@ -243,27 +219,21 @@ public partial interface IGalleryApplicationVersionsOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersion galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersion galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Update a gallery Application Version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the - /// Application Version is to be updated. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be updated. Needs to - /// follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit - /// integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery Application Version to be retrieved. /// /// /// Parameters supplied to the update gallery Application Version @@ -284,23 +254,21 @@ public partial interface IGalleryApplicationVersionsOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersionUpdate galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, string galleryApplicationVersionName, GalleryApplicationVersionUpdate galleryApplicationVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete a gallery Application Version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition in which the - /// Application Version resides. + /// The name of the gallery Application Definition to be retrieved. /// /// - /// The name of the gallery Application Version to be deleted. + /// The name of the gallery Application Version to be retrieved. /// /// /// The headers that will be added to request. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IGalleryApplicationsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IGalleryApplicationsOperations.cs index a606926a96de..ae727113ed53 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IGalleryApplicationsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IGalleryApplicationsOperations.cs @@ -24,24 +24,13 @@ namespace Microsoft.Azure.Management.Compute public partial interface IGalleryApplicationsOperations { /// - /// Create or update a gallery Application Definition. + /// List gallery Application Definitions in a gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be created. - /// - /// - /// The name of the gallery Application Definition to be created or - /// updated. The allowed characters are alphabets and numbers with - /// dots, dashes, and periods allowed in the middle. The maximum length - /// is 80 characters. - /// - /// - /// Parameters supplied to the create or update gallery Application - /// operation. + /// The name of the Shared Image Gallery. /// /// /// The headers that will be added to request. @@ -58,24 +47,18 @@ public partial interface IGalleryApplicationsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplication galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery Application Definition. + /// Retrieves information about a gallery Application Definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be updated. The - /// allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the update gallery Application operation. + /// The name of the gallery Application Definition to be retrieved. /// /// /// The headers that will be added to request. @@ -92,20 +75,23 @@ public partial interface IGalleryApplicationsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplicationUpdate galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about a gallery Application Definition. + /// Create or update a gallery Application Definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery from which the - /// Application Definitions are to be retrieved. + /// The name of the Shared Image Gallery. /// /// /// The name of the gallery Application Definition to be retrieved. /// + /// + /// Parameters supplied to the create or update gallery Application + /// operation. + /// /// /// The headers that will be added to request. /// @@ -121,19 +107,21 @@ public partial interface IGalleryApplicationsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplication galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a gallery Application. + /// Update a gallery Application Definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be deleted. + /// The name of the gallery Application Definition to be retrieved. + /// + /// + /// Parameters supplied to the update gallery Application operation. /// /// /// The headers that will be added to request. @@ -144,19 +132,24 @@ public partial interface IGalleryApplicationsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplicationUpdate galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery Application Definitions in a gallery. + /// Delete a gallery Application. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery from which Application - /// Definitions are to be listed. + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery Application Definition to be retrieved. /// /// /// The headers that will be added to request. @@ -167,28 +160,21 @@ public partial interface IGalleryApplicationsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update a gallery Application Definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be created. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be created or - /// updated. The allowed characters are alphabets and numbers with - /// dots, dashes, and periods allowed in the middle. The maximum length - /// is 80 characters. + /// The name of the gallery Application Definition to be retrieved. /// /// /// Parameters supplied to the create or update gallery Application @@ -209,21 +195,18 @@ public partial interface IGalleryApplicationsOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplication galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplication galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Update a gallery Application Definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be updated. The - /// allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. + /// The name of the gallery Application Definition to be retrieved. /// /// /// Parameters supplied to the update gallery Application operation. @@ -243,19 +226,18 @@ public partial interface IGalleryApplicationsOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplicationUpdate galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryApplicationName, GalleryApplicationUpdate galleryApplication, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete a gallery Application. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Application Gallery in which the Application - /// Definition is to be deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery Application Definition to be deleted. + /// The name of the gallery Application Definition to be retrieved. /// /// /// The headers that will be added to request. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IGalleryImageVersionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IGalleryImageVersionsOperations.cs index 0d3908b8f864..d0908e5ae147 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IGalleryImageVersionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IGalleryImageVersionsOperations.cs @@ -24,29 +24,16 @@ namespace Microsoft.Azure.Management.Compute public partial interface IGalleryImageVersionsOperations { /// - /// Create or update a gallery image version. + /// List gallery image versions in a gallery image definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// is to be created. - /// - /// - /// The name of the gallery image version to be created. Needs to - /// follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit - /// integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the create or update gallery image version - /// operation. + /// The name of the gallery image definition to be retrieved. /// /// /// The headers that will be added to request. @@ -63,30 +50,25 @@ public partial interface IGalleryImageVersionsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByGalleryImageWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery image version. + /// Retrieves information about a gallery image version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// is to be updated. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be updated. Needs to - /// follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit - /// integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery image version to be retrieved. /// - /// - /// Parameters supplied to the update gallery image version operation. + /// + /// The expand expression to apply on the operation. Possible values + /// include: 'ReplicationStatus', 'UefiSettings' /// /// /// The headers that will be added to request. @@ -103,27 +85,25 @@ public partial interface IGalleryImageVersionsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about a gallery image version. + /// Create or update a gallery image version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// resides. + /// The name of the gallery image definition to be retrieved. /// /// /// The name of the gallery image version to be retrieved. /// - /// - /// The expand expression to apply on the operation. Possible values - /// include: 'ReplicationStatus', 'UefiSettings' + /// + /// Parameters supplied to the create or update gallery image version + /// operation. /// /// /// The headers that will be added to request. @@ -140,23 +120,24 @@ public partial interface IGalleryImageVersionsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a gallery image version. + /// Update a gallery image version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// resides. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be deleted. + /// The name of the gallery image version to be retrieved. + /// + /// + /// Parameters supplied to the update gallery image version operation. /// /// /// The headers that will be added to request. @@ -167,23 +148,27 @@ public partial interface IGalleryImageVersionsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery image versions in a gallery image definition. + /// Delete a gallery image version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the Shared Image Gallery Image Definition from which - /// the Image Versions are to be listed. + /// The name of the gallery image definition to be retrieved. + /// + /// + /// The name of the gallery image version to be retrieved. /// /// /// The headers that will be added to request. @@ -194,33 +179,24 @@ public partial interface IGalleryImageVersionsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListByGalleryImageWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update a gallery image version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// is to be created. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be created. Needs to - /// follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit - /// integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery image version to be retrieved. /// /// /// Parameters supplied to the create or update gallery image version @@ -241,27 +217,21 @@ public partial interface IGalleryImageVersionsOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Update a gallery image version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// is to be updated. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be updated. Needs to - /// follow semantic version name pattern: The allowed characters are - /// digit and period. Digits must be within the range of a 32-bit - /// integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// The name of the gallery image version to be retrieved. /// /// /// Parameters supplied to the update gallery image version operation. @@ -281,23 +251,21 @@ public partial interface IGalleryImageVersionsOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete a gallery image version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition in which the Image Version - /// resides. + /// The name of the gallery image definition to be retrieved. /// /// - /// The name of the gallery image version to be deleted. + /// The name of the gallery image version to be retrieved. /// /// /// The headers that will be added to request. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IGalleryImagesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IGalleryImagesOperations.cs index bfe8aaf91f55..4f4228200a5b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IGalleryImagesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IGalleryImagesOperations.cs @@ -24,24 +24,13 @@ namespace Microsoft.Azure.Management.Compute public partial interface IGalleryImagesOperations { /// - /// Create or update a gallery image definition. + /// List gallery image definitions in a gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// is to be created. - /// - /// - /// The name of the gallery image definition to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, - /// and periods allowed in the middle. The maximum length is 80 - /// characters. - /// - /// - /// Parameters supplied to the create or update gallery image - /// operation. + /// The name of the Shared Image Gallery. /// /// /// The headers that will be added to request. @@ -58,24 +47,18 @@ public partial interface IGalleryImagesOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery image definition. + /// Retrieves information about a gallery image definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods - /// allowed in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the update gallery image operation. + /// The name of the gallery image definition to be retrieved. /// /// /// The headers that will be added to request. @@ -92,20 +75,23 @@ public partial interface IGalleryImagesOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about a gallery image definition. + /// Create or update a gallery image definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which the Image - /// Definitions are to be retrieved. + /// The name of the Shared Image Gallery. /// /// /// The name of the gallery image definition to be retrieved. /// + /// + /// Parameters supplied to the create or update gallery image + /// operation. + /// /// /// The headers that will be added to request. /// @@ -121,19 +107,21 @@ public partial interface IGalleryImagesOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a gallery image. + /// Update a gallery image definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// is to be deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be deleted. + /// The name of the gallery image definition to be retrieved. + /// + /// + /// Parameters supplied to the update gallery image operation. /// /// /// The headers that will be added to request. @@ -144,19 +132,24 @@ public partial interface IGalleryImagesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery image definitions in a gallery. + /// Delete a gallery image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which Image Definitions - /// are to be listed. + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery image definition to be retrieved. /// /// /// The headers that will be added to request. @@ -167,28 +160,21 @@ public partial interface IGalleryImagesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update a gallery image definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// is to be created. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be created or updated. - /// The allowed characters are alphabets and numbers with dots, dashes, - /// and periods allowed in the middle. The maximum length is 80 - /// characters. + /// The name of the gallery image definition to be retrieved. /// /// /// Parameters supplied to the create or update gallery image @@ -209,21 +195,18 @@ public partial interface IGalleryImagesOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Update a gallery image definition. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be updated. The allowed - /// characters are alphabets and numbers with dots, dashes, and periods - /// allowed in the middle. The maximum length is 80 characters. + /// The name of the gallery image definition to be retrieved. /// /// /// Parameters supplied to the update gallery image operation. @@ -243,19 +226,18 @@ public partial interface IGalleryImagesOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete a gallery image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the Image Definition - /// is to be deleted. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery image definition to be deleted. + /// The name of the gallery image definition to be retrieved. /// /// /// The headers that will be added to request. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IGalleryInVMAccessControlProfileVersionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IGalleryInVMAccessControlProfileVersionsOperations.cs index e3ea52c15f12..19d5905c88c1 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IGalleryInVMAccessControlProfileVersionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IGalleryInVMAccessControlProfileVersionsOperations.cs @@ -24,29 +24,17 @@ namespace Microsoft.Azure.Management.Compute public partial interface IGalleryInVMAccessControlProfileVersionsOperations { /// - /// Create or update a gallery inVMAccessControlProfile version. + /// List gallery inVMAccessControlProfile versions in a gallery + /// inVMAccessControlProfile /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the - /// inVMAccessControlProfile resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be created. - /// - /// - /// The name of the gallery inVMAccessControlProfile version to be - /// created. Needs to follow semantic version name pattern: The allowed - /// characters are digit and period. Digits must be within the range of - /// a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the create or update gallery - /// inVMAccessControlProfile version operation. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The headers that will be added to request. @@ -63,31 +51,23 @@ public partial interface IGalleryInVMAccessControlProfileVersionsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersion galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByGalleryInVMAccessControlProfileWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery inVMAccessControlProfile version. + /// Retrieves information about a gallery inVMAccessControlProfile + /// version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the - /// inVMAccessControlProfile resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be updated. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The name of the gallery inVMAccessControlProfile version to be - /// updated. Needs to follow semantic version name pattern: The allowed - /// characters are digit and period. Digits must be within the range of - /// a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> - /// - /// - /// Parameters supplied to the update gallery inVMAccessControlProfile - /// version operation. + /// retrieved. /// /// /// The headers that will be added to request. @@ -104,26 +84,27 @@ public partial interface IGalleryInVMAccessControlProfileVersionsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersionUpdate galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about a gallery inVMAccessControlProfile - /// version. + /// Create or update a gallery inVMAccessControlProfile version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the - /// inVMAccessControlProfile resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version resides. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The name of the gallery inVMAccessControlProfile version to be /// retrieved. /// + /// + /// Parameters supplied to the create or update gallery + /// inVMAccessControlProfile version operation. + /// /// /// The headers that will be added to request. /// @@ -139,24 +120,26 @@ public partial interface IGalleryInVMAccessControlProfileVersionsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersion galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a gallery inVMAccessControlProfile version. + /// Update a gallery inVMAccessControlProfile version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the - /// inVMAccessControlProfile resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version resides. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The name of the gallery inVMAccessControlProfile version to be - /// deleted. + /// retrieved. + /// + /// + /// Parameters supplied to the update gallery inVMAccessControlProfile + /// version operation. /// /// /// The headers that will be added to request. @@ -167,24 +150,28 @@ public partial interface IGalleryInVMAccessControlProfileVersionsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task> DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersionUpdate galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery inVMAccessControlProfile versions in a gallery - /// inVMAccessControlProfile + /// Delete a gallery inVMAccessControlProfile version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the - /// inVMAccessControlProfile resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile from which the - /// inVMAccessControlProfile versions are to be listed. + /// The name of the gallery inVMAccessControlProfile to be retrieved. + /// + /// + /// The name of the gallery inVMAccessControlProfile version to be + /// retrieved. /// /// /// The headers that will be added to request. @@ -195,33 +182,25 @@ public partial interface IGalleryInVMAccessControlProfileVersionsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListByGalleryInVMAccessControlProfileWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update a gallery inVMAccessControlProfile version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the - /// inVMAccessControlProfile resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be created. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The name of the gallery inVMAccessControlProfile version to be - /// created. Needs to follow semantic version name pattern: The allowed - /// characters are digit and period. Digits must be within the range of - /// a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// retrieved. /// /// /// Parameters supplied to the create or update gallery @@ -242,27 +221,22 @@ public partial interface IGalleryInVMAccessControlProfileVersionsOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersion galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersion galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Update a gallery inVMAccessControlProfile version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the - /// inVMAccessControlProfile resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version is to be updated. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The name of the gallery inVMAccessControlProfile version to be - /// updated. Needs to follow semantic version name pattern: The allowed - /// characters are digit and period. Digits must be within the range of - /// a 32-bit integer. Format: - /// <MajorVersion>.<MinorVersion>.<Patch> + /// retrieved. /// /// /// Parameters supplied to the update gallery inVMAccessControlProfile @@ -283,24 +257,22 @@ public partial interface IGalleryInVMAccessControlProfileVersionsOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersionUpdate galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, string inVMAccessControlProfileVersionName, GalleryInVMAccessControlProfileVersionUpdate galleryInVMAccessControlProfileVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete a gallery inVMAccessControlProfile version. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the - /// inVMAccessControlProfile resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile in which the - /// inVMAccessControlProfile version resides. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The name of the gallery inVMAccessControlProfile version to be - /// deleted. + /// retrieved. /// /// /// The headers that will be added to request. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IGalleryInVMAccessControlProfilesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IGalleryInVMAccessControlProfilesOperations.cs index 6acd3124c4cf..867d5d3c84e6 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IGalleryInVMAccessControlProfilesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IGalleryInVMAccessControlProfilesOperations.cs @@ -24,24 +24,13 @@ namespace Microsoft.Azure.Management.Compute public partial interface IGalleryInVMAccessControlProfilesOperations { /// - /// Create or update a gallery inVMAccessControlProfile. + /// List gallery inVMAccessControlProfiles in a gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the - /// InVMAccessControlProfile is to be created. - /// - /// - /// The name of the gallery inVMAccessControlProfile to be created or - /// updated. The allowed characters are alphabets and numbers with - /// dots, dashes, and periods allowed in the middle. The maximum length - /// is 80 characters. - /// - /// - /// Parameters supplied to the create or update gallery - /// inVMAccessControlProfile operation. + /// The name of the Shared Image Gallery. /// /// /// The headers that will be added to request. @@ -58,25 +47,18 @@ public partial interface IGalleryInVMAccessControlProfilesOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfile galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery inVMAccessControlProfile. + /// Retrieves information about a gallery inVMAccessControlProfile. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the - /// InVMAccessControlProfile is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be updated. The - /// allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. - /// - /// - /// Parameters supplied to the update gallery inVMAccessControlProfile - /// operation. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The headers that will be added to request. @@ -93,20 +75,23 @@ public partial interface IGalleryInVMAccessControlProfilesOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfileUpdate galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about a gallery inVMAccessControlProfile. + /// Create or update a gallery inVMAccessControlProfile. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which the - /// InVMAccessControlProfiles are to be retrieved. + /// The name of the Shared Image Gallery. /// /// /// The name of the gallery inVMAccessControlProfile to be retrieved. /// + /// + /// Parameters supplied to the create or update gallery + /// inVMAccessControlProfile operation. + /// /// /// The headers that will be added to request. /// @@ -122,19 +107,22 @@ public partial interface IGalleryInVMAccessControlProfilesOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfile galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a gallery inVMAccessControlProfile. + /// Update a gallery inVMAccessControlProfile. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// he name of the Shared Image Gallery in which the - /// InVMAccessControlProfile resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be deleted. + /// The name of the gallery inVMAccessControlProfile to be retrieved. + /// + /// + /// Parameters supplied to the update gallery inVMAccessControlProfile + /// operation. /// /// /// The headers that will be added to request. @@ -145,19 +133,24 @@ public partial interface IGalleryInVMAccessControlProfilesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task> DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfileUpdate galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery inVMAccessControlProfiles in a gallery. + /// Delete a gallery inVMAccessControlProfile. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery from which the - /// InVMAccessControlProfiles are to be listed. + /// The name of the Shared Image Gallery. + /// + /// + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The headers that will be added to request. @@ -168,28 +161,21 @@ public partial interface IGalleryInVMAccessControlProfilesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update a gallery inVMAccessControlProfile. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the - /// InVMAccessControlProfile is to be created. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be created or - /// updated. The allowed characters are alphabets and numbers with - /// dots, dashes, and periods allowed in the middle. The maximum length - /// is 80 characters. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// Parameters supplied to the create or update gallery @@ -210,21 +196,18 @@ public partial interface IGalleryInVMAccessControlProfilesOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfile galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfile galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Update a gallery inVMAccessControlProfile. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Shared Image Gallery in which the - /// InVMAccessControlProfile is to be updated. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be updated. The - /// allowed characters are alphabets and numbers with dots, dashes, and - /// periods allowed in the middle. The maximum length is 80 characters. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// Parameters supplied to the update gallery inVMAccessControlProfile @@ -245,19 +228,18 @@ public partial interface IGalleryInVMAccessControlProfilesOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfileUpdate galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string inVMAccessControlProfileName, GalleryInVMAccessControlProfileUpdate galleryInVMAccessControlProfile, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete a gallery inVMAccessControlProfile. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// he name of the Shared Image Gallery in which the - /// InVMAccessControlProfile resides. + /// The name of the Shared Image Gallery. /// /// - /// The name of the gallery inVMAccessControlProfile to be deleted. + /// The name of the gallery inVMAccessControlProfile to be retrieved. /// /// /// The headers that will be added to request. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IGallerySharingProfileOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IGallerySharingProfileOperations.cs index 851857bc297a..b643d5e42b32 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IGallerySharingProfileOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IGallerySharingProfileOperations.cs @@ -27,7 +27,7 @@ public partial interface IGallerySharingProfileOperations /// Update sharing profile of a gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the Shared Image Gallery. @@ -55,7 +55,7 @@ public partial interface IGallerySharingProfileOperations /// Update sharing profile of a gallery. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the Shared Image Gallery. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IImagesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IImagesOperations.cs index 1c986b496988..7eec02c85bb5 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IImagesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IImagesOperations.cs @@ -24,17 +24,10 @@ namespace Microsoft.Azure.Management.Compute public partial interface IImagesOperations { /// - /// Create or update an image. + /// Gets the list of Images in the subscription. Use nextLink property + /// in the response to get the next page of Images. Do this till + /// nextLink is null to fetch all the Images. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the image. - /// - /// - /// Parameters supplied to the Create Image operation. - /// /// /// The headers that will be added to request. /// @@ -50,18 +43,14 @@ public partial interface IImagesOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, Image parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update an image. + /// Gets the list of images under a resource group. Use nextLink + /// property in the response to get the next page of Images. Do this + /// till nextLink is null to fetch all the Images. /// /// - /// The name of the resource group. - /// - /// - /// The name of the image. - /// - /// - /// Parameters supplied to the Update Image operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The headers that will be added to request. @@ -78,16 +67,19 @@ public partial interface IImagesOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, ImageUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes an Image. + /// Gets an image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. /// + /// + /// The expand expression to apply on the operation. + /// /// /// The headers that will be added to request. /// @@ -97,21 +89,24 @@ public partial interface IImagesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string imageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string imageName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets an image. + /// Create or update an image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Create Image operation. /// /// /// The headers that will be added to request. @@ -128,14 +123,18 @@ public partial interface IImagesOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string imageName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, Image parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the list of images under a resource group. Use nextLink - /// property in the response to get the next page of Images. Do this - /// till nextLink is null to fetch all the Images. + /// Update an image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the image. + /// + /// + /// Parameters supplied to the Update Image operation. /// /// /// The headers that will be added to request. @@ -152,12 +151,16 @@ public partial interface IImagesOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, ImageUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the list of Images in the subscription. Use nextLink property - /// in the response to get the next page of Images. Do this till - /// nextLink is null to fetch all the Images. + /// Deletes an Image. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the image. + /// /// /// The headers that will be added to request. /// @@ -167,18 +170,15 @@ public partial interface IImagesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string imageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update an image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. @@ -201,12 +201,12 @@ public partial interface IImagesOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, Image parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, Image parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Update an image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. @@ -229,12 +229,12 @@ public partial interface IImagesOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, ImageUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, ImageUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes an Image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. @@ -253,9 +253,9 @@ public partial interface IImagesOperations /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string imageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the list of images under a resource group. Use nextLink - /// property in the response to get the next page of Images. Do this - /// till nextLink is null to fetch all the Images. + /// Gets the list of Images in the subscription. Use nextLink property + /// in the response to get the next page of Images. Do this till + /// nextLink is null to fetch all the Images. /// /// /// The NextLink from the previous successful call to List operation. @@ -275,11 +275,11 @@ public partial interface IImagesOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the list of Images in the subscription. Use nextLink property - /// in the response to get the next page of Images. Do this till - /// nextLink is null to fetch all the Images. + /// Gets the list of images under a resource group. Use nextLink + /// property in the response to get the next page of Images. Do this + /// till nextLink is null to fetch all the Images. /// /// /// The NextLink from the previous successful call to List operation. @@ -299,6 +299,6 @@ public partial interface IImagesOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/ILogAnalyticsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ILogAnalyticsOperations.cs index ab57fceb0ef6..99a110005eb4 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ILogAnalyticsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ILogAnalyticsOperations.cs @@ -27,13 +27,13 @@ public partial interface ILogAnalyticsOperations /// Export logs that show Api requests made by this subscription in the /// given time window to show throttling activities. /// + /// + /// The name of Azure region. + /// /// /// Parameters supplied to the LogAnalytics getRequestRateByInterval /// Api. /// - /// - /// The location upon which virtual-machine-sizes is queried. - /// /// /// The headers that will be added to request. /// @@ -49,16 +49,16 @@ public partial interface ILogAnalyticsOperations /// /// Thrown when a required parameter is null /// - Task> ExportRequestRateByIntervalWithHttpMessagesAsync(RequestRateByIntervalInput parameters, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ExportRequestRateByIntervalWithHttpMessagesAsync(string location, RequestRateByIntervalInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Export logs that show total throttled Api requests for this /// subscription in the given time window. /// - /// - /// Parameters supplied to the LogAnalytics getThrottledRequests Api. - /// /// - /// The location upon which virtual-machine-sizes is queried. + /// The name of Azure region. + /// + /// + /// The request body /// /// /// The headers that will be added to request. @@ -75,18 +75,18 @@ public partial interface ILogAnalyticsOperations /// /// Thrown when a required parameter is null /// - Task> ExportThrottledRequestsWithHttpMessagesAsync(ThrottledRequestsInput parameters, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ExportThrottledRequestsWithHttpMessagesAsync(string location, ThrottledRequestsInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Export logs that show Api requests made by this subscription in the /// given time window to show throttling activities. /// + /// + /// The name of Azure region. + /// /// /// Parameters supplied to the LogAnalytics getRequestRateByInterval /// Api. /// - /// - /// The location upon which virtual-machine-sizes is queried. - /// /// /// The headers that will be added to request. /// @@ -102,16 +102,16 @@ public partial interface ILogAnalyticsOperations /// /// Thrown when a required parameter is null /// - Task> BeginExportRequestRateByIntervalWithHttpMessagesAsync(RequestRateByIntervalInput parameters, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginExportRequestRateByIntervalWithHttpMessagesAsync(string location, RequestRateByIntervalInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Export logs that show total throttled Api requests for this /// subscription in the given time window. /// - /// - /// Parameters supplied to the LogAnalytics getThrottledRequests Api. - /// /// - /// The location upon which virtual-machine-sizes is queried. + /// The name of Azure region. + /// + /// + /// The request body /// /// /// The headers that will be added to request. @@ -128,6 +128,6 @@ public partial interface ILogAnalyticsOperations /// /// Thrown when a required parameter is null /// - Task> BeginExportThrottledRequestsWithHttpMessagesAsync(ThrottledRequestsInput parameters, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginExportThrottledRequestsWithHttpMessagesAsync(string location, ThrottledRequestsInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/IOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IOperations.cs index 864deb05d8fc..96b5c5081a42 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IOperations.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Management.Compute public partial interface IOperations { /// - /// Gets a list of compute operations. + /// List the operations for the provider /// /// /// The headers that will be added to request. @@ -41,6 +41,6 @@ public partial interface IOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/IProximityPlacementGroupsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IProximityPlacementGroupsOperations.cs index e32a4edba1db..f97b5bcb4a3a 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IProximityPlacementGroupsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IProximityPlacementGroupsOperations.cs @@ -24,18 +24,8 @@ namespace Microsoft.Azure.Management.Compute public partial interface IProximityPlacementGroupsOperations { /// - /// Create or update a proximity placement group. + /// Lists all proximity placement groups in a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the proximity placement group. - /// - /// - /// Parameters supplied to the Create Proximity Placement Group - /// operation. - /// /// /// The headers that will be added to request. /// @@ -51,18 +41,12 @@ public partial interface IProximityPlacementGroupsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, ProximityPlacementGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a proximity placement group. + /// Lists all proximity placement groups in a resource group. /// /// - /// The name of the resource group. - /// - /// - /// The name of the proximity placement group. - /// - /// - /// Resource tags + /// The name of the resource group. The name is case insensitive. /// /// /// The headers that will be added to request. @@ -79,16 +63,20 @@ public partial interface IProximityPlacementGroupsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a proximity placement group. + /// Retrieves information about a proximity placement group . /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the proximity placement group. /// + /// + /// includeColocationStatus=true enables fetching the colocation status + /// of all the resources in the proximity placement group. + /// /// /// The headers that will be added to request. /// @@ -98,22 +86,25 @@ public partial interface IProximityPlacementGroupsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, string includeColocationStatus = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about a proximity placement group . + /// Create or update a proximity placement group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the proximity placement group. /// - /// - /// includeColocationStatus=true enables fetching the colocation status - /// of all the resources in the proximity placement group. + /// + /// Parameters supplied to the Create Proximity Placement Group + /// operation. /// /// /// The headers that will be added to request. @@ -130,10 +121,19 @@ public partial interface IProximityPlacementGroupsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, string includeColocationStatus = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, ProximityPlacementGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all proximity placement groups in a subscription. + /// Update a proximity placement group. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the proximity placement group. + /// + /// + /// Resource tags + /// /// /// The headers that will be added to request. /// @@ -149,12 +149,15 @@ public partial interface IProximityPlacementGroupsOperations /// /// Thrown when a required parameter is null /// - Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all proximity placement groups in a resource group. + /// Delete a proximity placement group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the proximity placement group. /// /// /// The headers that will be added to request. @@ -165,13 +168,10 @@ public partial interface IProximityPlacementGroupsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all proximity placement groups in a subscription. /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/IResourceSkusOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IResourceSkusOperations.cs index 5133041c4c84..1c2279dafc80 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IResourceSkusOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IResourceSkusOperations.cs @@ -40,7 +40,7 @@ public partial interface IResourceSkusOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -63,7 +63,7 @@ public partial interface IResourceSkusOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/IRestorePointCollectionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IRestorePointCollectionsOperations.cs index 7bb5326a2735..f13f37b13d62 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IRestorePointCollectionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IRestorePointCollectionsOperations.cs @@ -24,20 +24,11 @@ namespace Microsoft.Azure.Management.Compute public partial interface IRestorePointCollectionsOperations { /// - /// The operation to create or update the restore point collection. - /// Please refer to https://aka.ms/RestorePoints for more details. When - /// updating a restore point collection, only tags may be modified. + /// Gets the list of restore point collections in the subscription. Use + /// nextLink property in the response to get the next page of restore + /// point collections. Do this till nextLink is not null to fetch all + /// the restore point collections. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the restore point collection. - /// - /// - /// Parameters supplied to the Create or Update restore point - /// collection operation. - /// /// /// The headers that will be added to request. /// @@ -53,19 +44,12 @@ public partial interface IRestorePointCollectionsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, RestorePointCollection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to update the restore point collection. + /// Gets the list of restore point collections in a resource group. /// /// - /// The name of the resource group. - /// - /// - /// The name of the restore point collection. - /// - /// - /// Parameters supplied to the Update restore point collection - /// operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The headers that will be added to request. @@ -82,16 +66,21 @@ public partial interface IRestorePointCollectionsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, RestorePointCollectionUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to delete the restore point collection. This - /// operation will also delete all the contained restore points. + /// The operation to get the restore point collection. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. + /// + /// + /// The expand expression to apply on the operation. If + /// expand=restorePoints, server will return all contained restore + /// points in the restorePointCollection. Possible values include: + /// 'restorePoints' /// /// /// The headers that will be added to request. @@ -102,24 +91,27 @@ public partial interface IRestorePointCollectionsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to get the restore point collection. + /// The operation to create or update the restore point collection. + /// Please refer to https://aka.ms/RestorePoints for more details. When + /// updating a restore point collection, only tags may be modified. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. /// - /// - /// The expand expression to apply on the operation. If - /// expand=restorePoints, server will return all contained restore - /// points in the restorePointCollection. Possible values include: - /// 'restorePoints' + /// + /// Parameters supplied to the Create or Update restore point + /// collection operation. /// /// /// The headers that will be added to request. @@ -136,12 +128,19 @@ public partial interface IRestorePointCollectionsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, RestorePointCollection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the list of restore point collections in a resource group. + /// The operation to update the restore point collection. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the restore point collection. + /// + /// + /// Parameters supplied to the Update restore point collection + /// operation. /// /// /// The headers that will be added to request. @@ -158,13 +157,17 @@ public partial interface IRestorePointCollectionsOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, RestorePointCollectionUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the list of restore point collections in the subscription. Use - /// nextLink property in the response to get the next page of restore - /// point collections. Do this till nextLink is not null to fetch all - /// the restore point collections. + /// The operation to delete the restore point collection. This + /// operation will also delete all the contained restore points. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the restore point collection. + /// /// /// The headers that will be added to request. /// @@ -174,22 +177,19 @@ public partial interface IRestorePointCollectionsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to delete the restore point collection. This /// operation will also delete all the contained restore points. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. /// /// /// The headers that will be added to request. @@ -205,7 +205,10 @@ public partial interface IRestorePointCollectionsOperations /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the list of restore point collections in a resource group. + /// Gets the list of restore point collections in the subscription. Use + /// nextLink property in the response to get the next page of restore + /// point collections. Do this till nextLink is not null to fetch all + /// the restore point collections. /// /// /// The NextLink from the previous successful call to List operation. @@ -225,12 +228,9 @@ public partial interface IRestorePointCollectionsOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the list of restore point collections in the subscription. Use - /// nextLink property in the response to get the next page of restore - /// point collections. Do this till nextLink is not null to fetch all - /// the restore point collections. + /// Gets the list of restore point collections in a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -250,6 +250,6 @@ public partial interface IRestorePointCollectionsOperations /// /// Thrown when a required parameter is null /// - Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/IRestorePointsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IRestorePointsOperations.cs index f8811ef42ea6..fb145e30e952 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IRestorePointsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IRestorePointsOperations.cs @@ -24,11 +24,10 @@ namespace Microsoft.Azure.Management.Compute public partial interface IRestorePointsOperations { /// - /// The operation to create the restore point. Updating properties of - /// an existing restore point is not allowed + /// The operation to get the restore point. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. @@ -36,8 +35,10 @@ public partial interface IRestorePointsOperations /// /// The name of the restore point. /// - /// - /// Parameters supplied to the Create restore point operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' + /// retrieves information about the run-time state of a restore point. + /// Possible values include: 'instanceView' /// /// /// The headers that will be added to request. @@ -54,19 +55,23 @@ public partial interface IRestorePointsOperations /// /// Thrown when a required parameter is null /// - Task> CreateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, RestorePoint parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to delete the restore point. + /// The operation to create the restore point. Updating properties of + /// an existing restore point is not allowed /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. /// /// /// The name of the restore point. /// + /// + /// Parameters supplied to the Create restore point operation. + /// /// /// The headers that will be added to request. /// @@ -76,15 +81,18 @@ public partial interface IRestorePointsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, RestorePoint parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to get the restore point. + /// The operation to delete the restore point. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. @@ -92,11 +100,6 @@ public partial interface IRestorePointsOperations /// /// The name of the restore point. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' - /// retrieves information about the run-time state of a restore point. - /// Possible values include: 'instanceView' - /// /// /// The headers that will be added to request. /// @@ -106,19 +109,16 @@ public partial interface IRestorePointsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to create the restore point. Updating properties of /// an existing restore point is not allowed /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. @@ -144,15 +144,15 @@ public partial interface IRestorePointsOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, RestorePoint parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, RestorePoint parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to delete the restore point. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. /// /// /// The name of the restore point. diff --git a/src/Compute/Compute.Management.Sdk/Generated/ISharedGalleriesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ISharedGalleriesOperations.cs index 369d638e16b0..4dd8b9844005 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ISharedGalleriesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ISharedGalleriesOperations.cs @@ -27,7 +27,7 @@ public partial interface ISharedGalleriesOperations /// List shared galleries by subscription id or tenant id. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The query parameter to decide what shared galleries to fetch when @@ -53,7 +53,7 @@ public partial interface ISharedGalleriesOperations /// Get a shared gallery by subscription id or tenant id. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. diff --git a/src/Compute/Compute.Management.Sdk/Generated/ISharedGalleryImageVersionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ISharedGalleryImageVersionsOperations.cs index f885944fb8f4..2c76c6e1df12 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ISharedGalleryImageVersionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ISharedGalleryImageVersionsOperations.cs @@ -27,7 +27,7 @@ public partial interface ISharedGalleryImageVersionsOperations /// List shared gallery image versions by subscription id or tenant id. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -60,7 +60,7 @@ public partial interface ISharedGalleryImageVersionsOperations /// Get a shared gallery image version by subscription id or tenant id. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. diff --git a/src/Compute/Compute.Management.Sdk/Generated/ISharedGalleryImagesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ISharedGalleryImagesOperations.cs index 29684dfca5e7..631141770fd3 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ISharedGalleryImagesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ISharedGalleryImagesOperations.cs @@ -27,7 +27,7 @@ public partial interface ISharedGalleryImagesOperations /// List shared gallery images by subscription id or tenant id. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -56,7 +56,7 @@ public partial interface ISharedGalleryImagesOperations /// Get a shared gallery image by subscription id or tenant id. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. diff --git a/src/Compute/Compute.Management.Sdk/Generated/ISnapshotsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ISnapshotsOperations.cs index 542bdf833944..a0d4967f3e7b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ISnapshotsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ISnapshotsOperations.cs @@ -24,20 +24,8 @@ namespace Microsoft.Azure.Management.Compute public partial interface ISnapshotsOperations { /// - /// Creates or updates a snapshot. + /// Lists snapshots under a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the snapshot that is being created. The name can't be - /// changed after the snapshot is created. Supported characters for the - /// name are a-z, A-Z, 0-9, _ and -. The max name length is 80 - /// characters. - /// - /// - /// Snapshot object supplied in the body of the Put disk operation. - /// /// /// The headers that will be added to request. /// @@ -53,22 +41,12 @@ public partial interface ISnapshotsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string snapshotName, Snapshot snapshot, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates (patches) a snapshot. + /// Lists snapshots under a resource group. /// /// - /// The name of the resource group. - /// - /// - /// The name of the snapshot that is being created. The name can't be - /// changed after the snapshot is created. Supported characters for the - /// name are a-z, A-Z, 0-9, _ and -. The max name length is 80 - /// characters. - /// - /// - /// Snapshot object supplied in the body of the Patch snapshot - /// operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The headers that will be added to request. @@ -85,12 +63,12 @@ public partial interface ISnapshotsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string snapshotName, SnapshotUpdate snapshot, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets information about a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be @@ -115,10 +93,10 @@ public partial interface ISnapshotsOperations /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string snapshotName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes a snapshot. + /// Creates or updates a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be @@ -126,6 +104,9 @@ public partial interface ISnapshotsOperations /// name are a-z, A-Z, 0-9, _ and -. The max name length is 80 /// characters. /// + /// + /// Snapshot object supplied in the body of the Put disk operation. + /// /// /// The headers that will be added to request. /// @@ -135,15 +116,28 @@ public partial interface ISnapshotsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string snapshotName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string snapshotName, Snapshot snapshot, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists snapshots under a resource group. + /// Updates (patches) a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the snapshot that is being created. The name can't be + /// changed after the snapshot is created. Supported characters for the + /// name are a-z, A-Z, 0-9, _ and -. The max name length is 80 + /// characters. + /// + /// + /// Snapshot object supplied in the body of the Patch snapshot + /// operation. /// /// /// The headers that will be added to request. @@ -160,10 +154,19 @@ public partial interface ISnapshotsOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string snapshotName, SnapshotUpdate snapshot, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists snapshots under a subscription. + /// Deletes a snapshot. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the snapshot that is being created. The name can't be + /// changed after the snapshot is created. Supported characters for the + /// name are a-z, A-Z, 0-9, _ and -. The max name length is 80 + /// characters. + /// /// /// The headers that will be added to request. /// @@ -173,18 +176,15 @@ public partial interface ISnapshotsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string snapshotName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Grants access to a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be @@ -216,7 +216,7 @@ public partial interface ISnapshotsOperations /// Revokes access to a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be @@ -241,7 +241,7 @@ public partial interface ISnapshotsOperations /// Creates or updates a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be @@ -272,7 +272,7 @@ public partial interface ISnapshotsOperations /// Updates (patches) a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be @@ -304,7 +304,7 @@ public partial interface ISnapshotsOperations /// Deletes a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be @@ -329,7 +329,7 @@ public partial interface ISnapshotsOperations /// Grants access to a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be @@ -361,7 +361,7 @@ public partial interface ISnapshotsOperations /// Revokes access to a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be @@ -383,7 +383,7 @@ public partial interface ISnapshotsOperations /// Task BeginRevokeAccessWithHttpMessagesAsync(string resourceGroupName, string snapshotName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists snapshots under a resource group. + /// Lists snapshots under a subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -403,9 +403,9 @@ public partial interface ISnapshotsOperations /// /// Thrown when a required parameter is null /// - Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists snapshots under a subscription. + /// Lists snapshots under a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -425,6 +425,6 @@ public partial interface ISnapshotsOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/ISoftDeletedResourceOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ISoftDeletedResourceOperations.cs index 70603beb4450..bb9bda27fd40 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ISoftDeletedResourceOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ISoftDeletedResourceOperations.cs @@ -28,11 +28,10 @@ public partial interface ISoftDeletedResourceOperations /// soft-deleted gallery image version of an image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Gallery in which the soft-deleted resources - /// resides. + /// The name of the Shared Image Gallery. /// /// /// The type of the artifact to be listed, such as gallery image diff --git a/src/Compute/Compute.Management.Sdk/Generated/ISshPublicKeysOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ISshPublicKeysOperations.cs index e911c422eb5d..2d95d94f8cbe 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ISshPublicKeysOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ISshPublicKeysOperations.cs @@ -50,7 +50,7 @@ public partial interface ISshPublicKeysOperations /// SSH public keys. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The headers that will be added to request. @@ -69,17 +69,14 @@ public partial interface ISshPublicKeysOperations /// Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates a new SSH public key resource. + /// Retrieves information about an SSH public key. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. /// - /// - /// Parameters supplied to create the SSH public key. - /// /// /// The headers that will be added to request. /// @@ -95,18 +92,18 @@ public partial interface ISshPublicKeysOperations /// /// Thrown when a required parameter is null /// - Task> CreateWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, SshPublicKeyResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates a new SSH public key resource. + /// Creates a new SSH public key resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. /// /// - /// Parameters supplied to update the SSH public key. + /// Parameters supplied to create the SSH public key. /// /// /// The headers that will be added to request. @@ -123,16 +120,19 @@ public partial interface ISshPublicKeysOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, SshPublicKeyUpdateResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, SshPublicKeyResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete an SSH public key. + /// Updates a new SSH public key resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. /// + /// + /// Parameters supplied to update the SSH public key. + /// /// /// The headers that will be added to request. /// @@ -142,15 +142,18 @@ public partial interface ISshPublicKeysOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, SshPublicKeyUpdateResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about an SSH public key. + /// Delete an SSH public key. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. @@ -164,13 +167,10 @@ public partial interface ISshPublicKeysOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Generates and returns a public/private key pair and populates the /// SSH public key resource with the public key. The length of the key @@ -178,7 +178,7 @@ public partial interface ISshPublicKeysOperations /// SSH public key resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IUsageOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IUsageOperations.cs index 85f01597fb85..d88df59fe8f2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IUsageOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IUsageOperations.cs @@ -29,7 +29,7 @@ public partial interface IUsageOperations /// the subscription. /// /// - /// The location for which resource usage is queried. + /// The name of Azure region. /// /// /// The headers that will be added to request. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineExtensionImagesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineExtensionImagesOperations.cs index f3bf0652823e..2315f6b9a514 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineExtensionImagesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineExtensionImagesOperations.cs @@ -12,7 +12,6 @@ namespace Microsoft.Azure.Management.Compute { using Microsoft.Rest; using Microsoft.Rest.Azure; - using Microsoft.Rest.Azure.OData; using Models; using System.Collections; using System.Collections.Generic; @@ -25,17 +24,13 @@ namespace Microsoft.Azure.Management.Compute public partial interface IVirtualMachineExtensionImagesOperations { /// - /// Gets a virtual machine extension image. + /// Gets a list of virtual machine extension image types. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// - /// - /// - /// - /// /// /// The headers that will be added to request. /// @@ -51,15 +46,24 @@ public partial interface IVirtualMachineExtensionImagesOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string location, string publisherName, string type, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListTypesWithHttpMessagesAsync(string location, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of virtual machine extension image types. + /// Gets a list of virtual machine extension image versions. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// + /// + /// + /// + /// The filter to apply on the operation. + /// + /// + /// + /// + /// /// /// The headers that will be added to request. /// @@ -75,19 +79,18 @@ public partial interface IVirtualMachineExtensionImagesOperations /// /// Thrown when a required parameter is null /// - Task>> ListTypesWithHttpMessagesAsync(string location, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListVersionsWithHttpMessagesAsync(string location, string publisherName, string type, string filter = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of virtual machine extension image versions. + /// Gets a virtual machine extension image. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// /// /// - /// - /// OData parameters to apply to the operation. + /// /// /// /// The headers that will be added to request. @@ -104,6 +107,6 @@ public partial interface IVirtualMachineExtensionImagesOperations /// /// Thrown when a required parameter is null /// - Task>> ListVersionsWithHttpMessagesAsync(string location, string publisherName, string type, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string location, string publisherName, string type, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineExtensionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineExtensionsOperations.cs index 174428de7538..f9df5c547764 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineExtensionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineExtensionsOperations.cs @@ -24,21 +24,16 @@ namespace Microsoft.Azure.Management.Compute public partial interface IVirtualMachineExtensionsOperations { /// - /// The operation to create or update the extension. + /// The operation to get all extensions of a Virtual Machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be - /// created or updated. - /// - /// - /// The name of the virtual machine extension. + /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Create Virtual Machine Extension - /// operation. + /// + /// The expand expression to apply on the operation. /// /// /// The headers that will be added to request. @@ -55,23 +50,21 @@ public partial interface IVirtualMachineExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListWithHttpMessagesAsync(string resourceGroupName, string vmName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to update the extension. + /// The operation to get the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be - /// updated. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. /// - /// - /// Parameters supplied to the Update Virtual Machine Extension - /// operation. + /// + /// The expand expression to apply on the operation. /// /// /// The headers that will be added to request. @@ -88,20 +81,23 @@ public partial interface IVirtualMachineExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to delete the extension. + /// The operation to create or update the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be - /// deleted. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. /// + /// + /// Parameters supplied to the Create Virtual Machine Extension + /// operation. + /// /// /// The headers that will be added to request. /// @@ -111,24 +107,28 @@ public partial interface IVirtualMachineExtensionsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to get the extension. + /// The operation to update the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the extension. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Update Virtual Machine Extension + /// operation. /// /// /// The headers that will be added to request. @@ -145,18 +145,18 @@ public partial interface IVirtualMachineExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to get all extensions of a Virtual Machine. + /// The operation to delete the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the extension. + /// The name of the virtual machine. /// - /// - /// The expand expression to apply on the operation. + /// + /// The name of the virtual machine extension. /// /// /// The headers that will be added to request. @@ -167,22 +167,18 @@ public partial interface IVirtualMachineExtensionsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> ListWithHttpMessagesAsync(string resourceGroupName, string vmName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to create or update the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be - /// created or updated. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. @@ -206,16 +202,15 @@ public partial interface IVirtualMachineExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to update the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be - /// updated. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. @@ -239,16 +234,15 @@ public partial interface IVirtualMachineExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to delete the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be - /// deleted. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineImagesEdgeZoneOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineImagesEdgeZoneOperations.cs index 3beead36a4a6..24f0dc956172 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineImagesEdgeZoneOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineImagesEdgeZoneOperations.cs @@ -24,26 +24,15 @@ namespace Microsoft.Azure.Management.Compute public partial interface IVirtualMachineImagesEdgeZoneOperations { /// - /// Gets a virtual machine image in an edge zone. + /// Gets a list of virtual machine image publishers for the specified + /// Azure location and edge zone. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// A valid image SKU version. - /// /// /// The headers that will be added to request. /// @@ -59,13 +48,13 @@ public partial interface IVirtualMachineImagesEdgeZoneOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListPublishersWithHttpMessagesAsync(string location, string edgeZone, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of all virtual machine image versions for the specified - /// location, edge zone, publisher, offer, and SKU. + /// Gets a list of virtual machine image offers for the specified + /// location, edge zone and publisher. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. @@ -73,23 +62,6 @@ public partial interface IVirtualMachineImagesEdgeZoneOperations /// /// A valid image publisher. /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// The expand expression to apply on the operation. - /// - /// - /// An integer value specifying the number of images to return that - /// matches supplied values. - /// - /// - /// Specifies the order of the results returned. Formatted as an OData - /// query. - /// /// /// The headers that will be added to request. /// @@ -105,13 +77,13 @@ public partial interface IVirtualMachineImagesEdgeZoneOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListOffersWithHttpMessagesAsync(string location, string edgeZone, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of virtual machine image offers for the specified - /// location, edge zone and publisher. + /// Gets a list of virtual machine image SKUs for the specified + /// location, edge zone, publisher, and offer. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. @@ -119,6 +91,9 @@ public partial interface IVirtualMachineImagesEdgeZoneOperations /// /// A valid image publisher. /// + /// + /// A valid image publisher offer. + /// /// /// The headers that will be added to request. /// @@ -134,17 +109,37 @@ public partial interface IVirtualMachineImagesEdgeZoneOperations /// /// Thrown when a required parameter is null /// - Task>> ListOffersWithHttpMessagesAsync(string location, string edgeZone, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListSkusWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of virtual machine image publishers for the specified - /// Azure location and edge zone. + /// Gets a list of all virtual machine image versions for the specified + /// location, edge zone, publisher, offer, and SKU. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// The expand expression to apply on the operation. + /// + /// + /// An integer value specifying the number of images to return that + /// matches supplied values. + /// + /// + /// Specifies the order of the results returned. Formatted as an OData + /// query. + /// /// /// The headers that will be added to request. /// @@ -160,13 +155,12 @@ public partial interface IVirtualMachineImagesEdgeZoneOperations /// /// Thrown when a required parameter is null /// - Task>> ListPublishersWithHttpMessagesAsync(string location, string edgeZone, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of virtual machine image SKUs for the specified - /// location, edge zone, publisher, and offer. + /// Gets a virtual machine image in an edge zone. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. @@ -177,6 +171,12 @@ public partial interface IVirtualMachineImagesEdgeZoneOperations /// /// A valid image publisher offer. /// + /// + /// A valid image SKU. + /// + /// + /// A valid image SKU version. + /// /// /// The headers that will be added to request. /// @@ -192,6 +192,6 @@ public partial interface IVirtualMachineImagesEdgeZoneOperations /// /// Thrown when a required parameter is null /// - Task>> ListSkusWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineImagesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineImagesOperations.cs index 31f047ba5718..de013c393552 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineImagesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineImagesOperations.cs @@ -24,22 +24,14 @@ namespace Microsoft.Azure.Management.Compute public partial interface IVirtualMachineImagesOperations { /// - /// Gets a virtual machine image. + /// Gets a list of all virtual machine image versions for the specified + /// edge zone /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// A valid image SKU version. + /// + /// The name of the edge zone. /// /// /// The headers that will be added to request. @@ -56,29 +48,13 @@ public partial interface IVirtualMachineImagesOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string location, string publisherName, string offer, string skus, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListByEdgeZoneWithHttpMessagesAsync(string location, string edgeZone, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of all virtual machine image versions for the specified - /// location, publisher, offer, and SKU. + /// Gets a list of virtual machine image publishers for the specified + /// Azure location. /// /// - /// The name of a supported Azure region. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// The expand expression to apply on the operation. - /// - /// - /// - /// + /// The name of Azure region. /// /// /// The headers that will be added to request. @@ -95,13 +71,13 @@ public partial interface IVirtualMachineImagesOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string location, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListPublishersWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets a list of virtual machine image offers for the specified /// location and publisher. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// A valid image publisher. @@ -123,11 +99,17 @@ public partial interface IVirtualMachineImagesOperations /// Task>> ListOffersWithHttpMessagesAsync(string location, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of virtual machine image publishers for the specified - /// Azure location. + /// Gets a list of virtual machine image SKUs for the specified + /// location, publisher, and offer. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. + /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. /// /// /// The headers that will be added to request. @@ -144,13 +126,13 @@ public partial interface IVirtualMachineImagesOperations /// /// Thrown when a required parameter is null /// - Task>> ListPublishersWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListSkusWithHttpMessagesAsync(string location, string publisherName, string offer, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of virtual machine image SKUs for the specified - /// location, publisher, and offer. + /// Gets a list of all virtual machine image versions for the specified + /// location, publisher, offer, and SKU. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// A valid image publisher. @@ -158,6 +140,16 @@ public partial interface IVirtualMachineImagesOperations /// /// A valid image publisher offer. /// + /// + /// A valid image SKU. + /// + /// + /// The expand expression to apply on the operation. + /// + /// + /// + /// + /// /// /// The headers that will be added to request. /// @@ -173,16 +165,24 @@ public partial interface IVirtualMachineImagesOperations /// /// Thrown when a required parameter is null /// - Task>> ListSkusWithHttpMessagesAsync(string location, string publisherName, string offer, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string location, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of all virtual machine image versions for the specified - /// edge zone + /// Gets a virtual machine image. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// - /// - /// The name of the edge zone. + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// A valid image SKU version. /// /// /// The headers that will be added to request. @@ -199,9 +199,9 @@ public partial interface IVirtualMachineImagesOperations /// /// Thrown when a required parameter is null /// - Task> ListByEdgeZoneWithHttpMessagesAsync(string location, string edgeZone, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string location, string publisherName, string offer, string skus, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// A valid image publisher. @@ -235,24 +235,5 @@ public partial interface IVirtualMachineImagesOperations /// Thrown when a required parameter is null /// Task>> ListWithPropertiesWithHttpMessagesAsync(string location, string publisherName, string offer, string skus, string expand, int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListWithPropertiesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineRunCommandsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineRunCommandsOperations.cs index 229f8903879e..9e27401c7554 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineRunCommandsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineRunCommandsOperations.cs @@ -27,7 +27,7 @@ public partial interface IVirtualMachineRunCommandsOperations /// Lists all available run commands for a subscription in a location. /// /// - /// The location upon which run commands is queried. + /// The name of Azure region. /// /// /// The headers that will be added to request. @@ -49,7 +49,7 @@ public partial interface IVirtualMachineRunCommandsOperations /// Gets specific run command for a subscription in a location. /// /// - /// The location upon which run commands is queried. + /// The name of Azure region. /// /// /// The command id. @@ -71,21 +71,16 @@ public partial interface IVirtualMachineRunCommandsOperations /// Task> GetWithHttpMessagesAsync(string location, string commandId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to create or update the run command. + /// The operation to get all run commands of a Virtual Machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be - /// created or updated. - /// - /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachine /// - /// - /// Parameters supplied to the Create Virtual Machine RunCommand - /// operation. + /// + /// The expand expression to apply on the operation. /// /// /// The headers that will be added to request. @@ -102,23 +97,21 @@ public partial interface IVirtualMachineRunCommandsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByVirtualMachineWithHttpMessagesAsync(string resourceGroupName, string vmName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to update the run command. + /// The operation to get the run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be - /// updated. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - /// - /// Parameters supplied to the Update Virtual Machine RunCommand - /// operation. + /// + /// The expand expression to apply on the operation. /// /// /// The headers that will be added to request. @@ -135,19 +128,22 @@ public partial interface IVirtualMachineRunCommandsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetByVirtualMachineWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to delete the run command. + /// The operation to create or update the run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be - /// deleted. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand + /// + /// + /// Parameters supplied to the Create Virtual Machine RunCommand + /// operation. /// /// /// The headers that will be added to request. @@ -158,24 +154,28 @@ public partial interface IVirtualMachineRunCommandsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to get the run command. + /// The operation to update the run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the run command. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Update Virtual Machine RunCommand + /// operation. /// /// /// The headers that will be added to request. @@ -192,18 +192,18 @@ public partial interface IVirtualMachineRunCommandsOperations /// /// Thrown when a required parameter is null /// - Task> GetByVirtualMachineWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to get all run commands of a Virtual Machine. + /// The operation to delete the run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the run command. + /// The name of the VirtualMachine /// - /// - /// The expand expression to apply on the operation. + /// + /// The name of the VirtualMachineRunCommand /// /// /// The headers that will be added to request. @@ -214,25 +214,21 @@ public partial interface IVirtualMachineRunCommandsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListByVirtualMachineWithHttpMessagesAsync(string resourceGroupName, string vmName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to create or update the run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be - /// created or updated. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// Parameters supplied to the Create Virtual Machine RunCommand @@ -253,19 +249,18 @@ public partial interface IVirtualMachineRunCommandsOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to update the run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be - /// updated. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// Parameters supplied to the Update Virtual Machine RunCommand @@ -286,19 +281,18 @@ public partial interface IVirtualMachineRunCommandsOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to delete the run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be - /// deleted. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// The headers that will be added to request. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetExtensionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetExtensionsOperations.cs index d07dad068a72..670ba9f458e1 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetExtensionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetExtensionsOperations.cs @@ -24,20 +24,13 @@ namespace Microsoft.Azure.Management.Compute public partial interface IVirtualMachineScaleSetExtensionsOperations { /// - /// The operation to create or update an extension. + /// Gets a list of all extensions in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be create - /// or updated. - /// - /// - /// The name of the VM scale set extension. - /// - /// - /// Parameters supplied to the Create VM scale set Extension operation. + /// The name of the VM scale set. /// /// /// The headers that will be added to request. @@ -54,21 +47,21 @@ public partial interface IVirtualMachineScaleSetExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to update an extension. + /// The operation to get the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be updated. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. /// - /// - /// Parameters supplied to the Update VM scale set Extension operation. + /// + /// The expand expression to apply on the operation. /// /// /// The headers that will be added to request. @@ -85,19 +78,22 @@ public partial interface IVirtualMachineScaleSetExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to delete the extension. + /// The operation to create or update an extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be deleted. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. /// + /// + /// Parameters supplied to the Create VM scale set Extension operation. + /// /// /// The headers that will be added to request. /// @@ -107,24 +103,27 @@ public partial interface IVirtualMachineScaleSetExtensionsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to get the extension. + /// The operation to update an extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set containing the extension. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Update VM scale set Extension operation. /// /// /// The headers that will be added to request. @@ -141,15 +140,18 @@ public partial interface IVirtualMachineScaleSetExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of all extensions in a VM scale set. + /// The operation to delete the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set containing the extension. + /// The name of the VM scale set. + /// + /// + /// The name of the VM scale set extension. /// /// /// The headers that will be added to request. @@ -160,22 +162,18 @@ public partial interface IVirtualMachineScaleSetExtensionsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to create or update an extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be create - /// or updated. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. @@ -198,15 +196,15 @@ public partial interface IVirtualMachineScaleSetExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to update an extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be updated. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. @@ -229,15 +227,15 @@ public partial interface IVirtualMachineScaleSetExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to delete the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be deleted. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetRollingUpgradesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetRollingUpgradesOperations.cs index b866585a44dd..74dc973bce31 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetRollingUpgradesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetRollingUpgradesOperations.cs @@ -24,10 +24,13 @@ namespace Microsoft.Azure.Management.Compute public partial interface IVirtualMachineScaleSetRollingUpgradesOperations { /// - /// Cancels the current virtual machine scale set rolling upgrade. + /// Starts a rolling upgrade to move all extensions for all virtual + /// machine scale set instances to the latest available extension + /// version. Instances which are already running the latest extension + /// versions are not affected. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -44,7 +47,7 @@ public partial interface IVirtualMachineScaleSetRollingUpgradesOperations /// /// Thrown when a required parameter is null /// - Task CancelWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task StartExtensionUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Starts a rolling upgrade to move all virtual machine scale set /// instances to the latest available Platform Image OS version. @@ -52,7 +55,7 @@ public partial interface IVirtualMachineScaleSetRollingUpgradesOperations /// are not affected. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -71,13 +74,10 @@ public partial interface IVirtualMachineScaleSetRollingUpgradesOperations /// Task StartOSUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Starts a rolling upgrade to move all extensions for all virtual - /// machine scale set instances to the latest available extension - /// version. Instances which are already running the latest extension - /// versions are not affected. + /// Cancels the current virtual machine scale set rolling upgrade. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -94,13 +94,13 @@ public partial interface IVirtualMachineScaleSetRollingUpgradesOperations /// /// Thrown when a required parameter is null /// - Task StartExtensionUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CancelWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the status of the latest virtual machine scale set rolling /// upgrade. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -122,10 +122,13 @@ public partial interface IVirtualMachineScaleSetRollingUpgradesOperations /// Task> GetLatestWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Cancels the current virtual machine scale set rolling upgrade. + /// Starts a rolling upgrade to move all extensions for all virtual + /// machine scale set instances to the latest available extension + /// version. Instances which are already running the latest extension + /// versions are not affected. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -142,7 +145,7 @@ public partial interface IVirtualMachineScaleSetRollingUpgradesOperations /// /// Thrown when a required parameter is null /// - Task BeginCancelWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginStartExtensionUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Starts a rolling upgrade to move all virtual machine scale set /// instances to the latest available Platform Image OS version. @@ -150,7 +153,7 @@ public partial interface IVirtualMachineScaleSetRollingUpgradesOperations /// are not affected. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -169,13 +172,10 @@ public partial interface IVirtualMachineScaleSetRollingUpgradesOperations /// Task BeginStartOSUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Starts a rolling upgrade to move all extensions for all virtual - /// machine scale set instances to the latest available extension - /// version. Instances which are already running the latest extension - /// versions are not affected. + /// Cancels the current virtual machine scale set rolling upgrade. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -192,6 +192,6 @@ public partial interface IVirtualMachineScaleSetRollingUpgradesOperations /// /// Thrown when a required parameter is null /// - Task BeginStartExtensionUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginCancelWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetVMExtensionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetVMExtensionsOperations.cs index 1ccfa9151680..76eca9e019ae 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetVMExtensionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetVMExtensionsOperations.cs @@ -24,10 +24,11 @@ namespace Microsoft.Azure.Management.Compute public partial interface IVirtualMachineScaleSetVMExtensionsOperations { /// - /// The operation to create or update the VMSS VM extension. + /// The operation to get all extensions of an instance in Virtual + /// Machine Scaleset. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -35,12 +36,8 @@ public partial interface IVirtualMachineScaleSetVMExtensionsOperations /// /// The instance ID of the virtual machine. /// - /// - /// The name of the virtual machine extension. - /// - /// - /// Parameters supplied to the Create Virtual Machine Extension - /// operation. + /// + /// The expand expression to apply on the operation. /// /// /// The headers that will be added to request. @@ -57,12 +54,12 @@ public partial interface IVirtualMachineScaleSetVMExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to update the VMSS VM extension. + /// The operation to get the VMSS VM extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -73,9 +70,8 @@ public partial interface IVirtualMachineScaleSetVMExtensionsOperations /// /// The name of the virtual machine extension. /// - /// - /// Parameters supplied to the Update Virtual Machine Extension - /// operation. + /// + /// The expand expression to apply on the operation. /// /// /// The headers that will be added to request. @@ -92,12 +88,12 @@ public partial interface IVirtualMachineScaleSetVMExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to delete the VMSS VM extension. + /// The operation to create or update the VMSS VM extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -108,6 +104,10 @@ public partial interface IVirtualMachineScaleSetVMExtensionsOperations /// /// The name of the virtual machine extension. /// + /// + /// Parameters supplied to the Create Virtual Machine Extension + /// operation. + /// /// /// The headers that will be added to request. /// @@ -117,15 +117,18 @@ public partial interface IVirtualMachineScaleSetVMExtensionsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to get the VMSS VM extension. + /// The operation to update the VMSS VM extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -136,8 +139,9 @@ public partial interface IVirtualMachineScaleSetVMExtensionsOperations /// /// The name of the virtual machine extension. /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Update Virtual Machine Extension + /// operation. /// /// /// The headers that will be added to request. @@ -154,13 +158,12 @@ public partial interface IVirtualMachineScaleSetVMExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to get all extensions of an instance in Virtual - /// Machine Scaleset. + /// The operation to delete the VMSS VM extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -168,8 +171,8 @@ public partial interface IVirtualMachineScaleSetVMExtensionsOperations /// /// The instance ID of the virtual machine. /// - /// - /// The expand expression to apply on the operation. + /// + /// The name of the virtual machine extension. /// /// /// The headers that will be added to request. @@ -180,18 +183,15 @@ public partial interface IVirtualMachineScaleSetVMExtensionsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> ListWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to create or update the VMSS VM extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -221,12 +221,12 @@ public partial interface IVirtualMachineScaleSetVMExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to update the VMSS VM extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -256,12 +256,12 @@ public partial interface IVirtualMachineScaleSetVMExtensionsOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to delete the VMSS VM extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetVMRunCommandsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetVMRunCommandsOperations.cs index bab27f051589..18aebbc142c1 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetVMRunCommandsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetVMRunCommandsOperations.cs @@ -24,23 +24,20 @@ namespace Microsoft.Azure.Management.Compute public partial interface IVirtualMachineScaleSetVMRunCommandsOperations { /// - /// The operation to create or update the VMSS VM run command. + /// The operation to get all run commands of an instance in Virtual + /// Machine Scaleset. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// - /// - /// The name of the virtual machine run command. - /// - /// - /// Parameters supplied to the Create Virtual Machine RunCommand - /// operation. + /// + /// The expand expression to apply on the operation. /// /// /// The headers that will be added to request. @@ -57,25 +54,24 @@ public partial interface IVirtualMachineScaleSetVMRunCommandsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to update the VMSS VM run command. + /// The operation to get the VMSS VM run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - /// - /// Parameters supplied to the Update Virtual Machine RunCommand - /// operation. + /// + /// The expand expression to apply on the operation. /// /// /// The headers that will be added to request. @@ -92,21 +88,25 @@ public partial interface IVirtualMachineScaleSetVMRunCommandsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to delete the VMSS VM run command. + /// The operation to create or update the VMSS VM run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand + /// + /// + /// Parameters supplied to the Create Virtual Machine RunCommand + /// operation. /// /// /// The headers that will be added to request. @@ -117,27 +117,30 @@ public partial interface IVirtualMachineScaleSetVMRunCommandsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to get the VMSS VM run command. + /// The operation to update the VMSS VM run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - /// - /// The expand expression to apply on the operation. + /// + /// Resource create parameters. /// /// /// The headers that will be added to request. @@ -154,22 +157,21 @@ public partial interface IVirtualMachineScaleSetVMRunCommandsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to get all run commands of an instance in Virtual - /// Machine Scaleset. + /// The operation to delete the VMSS VM run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// - /// - /// The expand expression to apply on the operation. + /// + /// The name of the VirtualMachineRunCommand /// /// /// The headers that will be added to request. @@ -180,27 +182,24 @@ public partial interface IVirtualMachineScaleSetVMRunCommandsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to create or update the VMSS VM run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// Parameters supplied to the Create Virtual Machine RunCommand @@ -221,25 +220,24 @@ public partial interface IVirtualMachineScaleSetVMRunCommandsOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to update the VMSS VM run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// - /// Parameters supplied to the Update Virtual Machine RunCommand - /// operation. + /// Resource create parameters. /// /// /// The headers that will be added to request. @@ -256,21 +254,21 @@ public partial interface IVirtualMachineScaleSetVMRunCommandsOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to delete the VMSS VM run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// The headers that will be added to request. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetVMsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetVMsOperations.cs index c820ffca5cba..56c9791633e5 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetVMsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetVMsOperations.cs @@ -12,7 +12,6 @@ namespace Microsoft.Azure.Management.Compute { using Microsoft.Rest; using Microsoft.Rest.Azure; - using Microsoft.Rest.Azure.OData; using Models; using System.Collections; using System.Collections.Generic; @@ -25,20 +24,27 @@ namespace Microsoft.Azure.Management.Compute public partial interface IVirtualMachineScaleSetVMsOperations { /// - /// Reimages (upgrade the operating system) a specific virtual machine - /// in a VM scale set. + /// Gets a list of all virtual machines in a VM scale sets. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The name of the VM scale set. + /// + /// The name of the VirtualMachineScaleSet /// - /// - /// The instance ID of the virtual machine. + /// + /// The filter to apply to the operation. Allowed values are + /// 'startswith(instanceView/statuses/code, 'PowerState') eq true', + /// 'properties/latestModelApplied eq true', + /// 'properties/latestModelApplied eq false'. /// - /// - /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// + /// The list parameters. Allowed values are 'instanceView', + /// 'instanceView/statuses'. + /// + /// + /// The expand expression to apply to the operation. Allowed values are + /// 'instanceView'. /// /// /// The headers that will be added to request. @@ -49,17 +55,18 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task ReimageWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string virtualMachineScaleSetName, string filter = default(string), string select = default(string), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Allows you to re-image all the disks ( including data disks ) in - /// the a VM scale set instance. This operation is only supported for - /// managed disks. + /// Gets a virtual machine from a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -67,6 +74,12 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// + /// + /// The expand expression to apply on the operation. 'InstanceView' + /// will retrieve the instance view of the virtual machine. 'UserData' + /// will retrieve the UserData of the virtual machine. Possible values + /// include: 'instanceView', 'userData', 'resiliencyView' + /// /// /// The headers that will be added to request. /// @@ -76,16 +89,18 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task ReimageAllWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VmssVMInstanceViewTypes? expand = default(VmssVMInstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Approve upgrade on deferred rolling upgrade for OS disk on a VM - /// scale set instance. + /// Updates a virtual machine of a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -93,6 +108,20 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// + /// + /// Parameters supplied to the Update Virtual Machine Scale Sets VM + /// operation. + /// + /// + /// The ETag of the transformation. Omit this value to always overwrite + /// the current resource. Specify the last-seen ETag value to prevent + /// accidentally overwriting concurrent changes. + /// + /// + /// Set to '*' to allow a new record set to be created, but to prevent + /// updating an existing record set. Other values will result in error + /// from server as they are not supported. + /// /// /// The headers that will be added to request. /// @@ -102,18 +131,18 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task> ApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deallocates a specific virtual machine in a VM scale set. Shuts - /// down the virtual machine and releases the compute resources it - /// uses. You are not billed for the compute resources of this virtual - /// machine once it is deallocated. + /// Deletes a virtual machine from a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -121,6 +150,10 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// + /// + /// Optional parameter to force delete a virtual machine from a VM + /// scale set. (Feature in Preview) + /// /// /// The headers that will be added to request. /// @@ -133,34 +166,20 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates a virtual machine of a VM scale set. + /// Approve upgrade on deferred rolling upgrade for OS disk on a VM + /// scale set instance. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be create - /// or updated. + /// The name of the VM scale set. /// /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the Update Virtual Machine Scale Sets VM - /// operation. - /// - /// - /// The ETag of the transformation. Omit this value to always overwrite - /// the current resource. Specify the last-seen ETag value to prevent - /// accidentally overwriting concurrent changes. - /// - /// - /// Set to '*' to allow a new record set to be created, but to prevent - /// updating an existing record set. Other values will result in error - /// from server as they are not supported. - /// /// /// The headers that will be added to request. /// @@ -170,18 +189,16 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes a virtual machine from a VM scale set. + /// Attach and detach data disks to/from a virtual machine in a VM + /// scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -189,9 +206,9 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM - /// scale set. (Feature in Preview) + /// + /// Parameters supplied to the attach and detach data disks operation + /// on a Virtual Machine Scale Sets VM. /// /// /// The headers that will be added to request. @@ -202,15 +219,21 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> AttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a virtual machine from a VM scale set. + /// Deallocates a specific virtual machine in a VM scale set. Shuts + /// down the virtual machine and releases the compute resources it + /// uses. You are not billed for the compute resources of this virtual + /// machine once it is deallocated. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -218,15 +241,6 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' - /// will retrieve the instance view of the virtual machine. 'UserData' - /// will retrieve the UserData of the virtual machine. 'resiliencyView' - /// will retrieve the instance view of the Virtual machine (if - /// applicable) and include 'resilientVMDeletionStatus' as part of it. - /// Possible values include: 'instanceView', 'userData', - /// 'resiliencyView' - /// /// /// The headers that will be added to request. /// @@ -236,18 +250,15 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VmssVMInstanceViewTypes? expand = default(VmssVMInstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the status of a virtual machine from a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -272,20 +283,16 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// Task> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of all virtual machines in a VM scale sets. + /// Performs maintenance on a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// + /// /// The name of the VM scale set. /// - /// - /// OData parameters to apply to the operation. - /// - /// - /// The list parameters. Allowed values are 'instanceView', - /// 'instanceView/statuses'. + /// + /// The instance ID of the virtual machine. /// /// /// The headers that will be added to request. @@ -296,22 +303,18 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string virtualMachineScaleSetName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Power off (stop) a virtual machine in a VM scale set. Note that /// resources are still attached and you are getting charged for the /// resources. Instead, use deallocate to release resources and avoid - /// charges. Additionally, this operation is not allowed on a virtual - /// machine that is being deallocated or already has been deallocated. + /// charges. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -336,12 +339,13 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Restarts a virtual machine in a VM scale set. + /// Shuts down the virtual machine in the virtual machine scale set, + /// moves it to a new node, and powers it back on. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -361,12 +365,13 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task RestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task RedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Starts a virtual machine in a VM scale set. + /// Reimages (upgrade the operating system) a specific virtual machine + /// in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -374,6 +379,9 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// + /// + /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// /// /// The headers that will be added to request. /// @@ -386,13 +394,14 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task StartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task ReimageWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Shuts down the virtual machine in the virtual machine scale set, - /// moves it to a new node, and powers it back on. + /// Allows you to re-image all the disks ( including data disks ) in + /// the a VM scale set instance. This operation is only supported for + /// managed disks. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -412,13 +421,38 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task RedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task ReimageAllWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Restarts a virtual machine in a VM scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID of the virtual machine. + /// + /// + /// 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 RestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to retrieve SAS URIs of boot diagnostic logs for a /// virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -449,10 +483,10 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// Task> RetrieveBootDiagnosticsDataWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, int? sasUriExpirationTimeInMinutes = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Performs maintenance on a virtual machine in a VM scale set. + /// Run command on a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -460,6 +494,9 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// + /// + /// Parameters supplied to the Run command operation. + /// /// /// The headers that will be added to request. /// @@ -469,16 +506,19 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> RunCommandWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to simulate the eviction of spot virtual machine in a /// VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -500,11 +540,10 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// Task SimulateEvictionWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Attach and detach data disks to/from a virtual machine in a VM - /// scale set. + /// Starts a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -512,10 +551,6 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the attach and detach data disks operation - /// on a Virtual Machine Scale Sets VM. - /// /// /// The headers that will be added to request. /// @@ -525,18 +560,15 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> AttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task StartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Run command on a virtual machine in a VM scale set. + /// Updates a virtual machine of a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -545,7 +577,18 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// The instance ID of the virtual machine. /// /// - /// Parameters supplied to the Run command operation. + /// Parameters supplied to the Update Virtual Machine Scale Sets VM + /// operation. + /// + /// + /// The ETag of the transformation. Omit this value to always overwrite + /// the current resource. Specify the last-seen ETag value to prevent + /// accidentally overwriting concurrent changes. + /// + /// + /// Set to '*' to allow a new record set to be created, but to prevent + /// updating an existing record set. Other values will result in error + /// from server as they are not supported. /// /// /// The headers that will be added to request. @@ -562,13 +605,12 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task> RunCommandWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Reimages (upgrade the operating system) a specific virtual machine - /// in a VM scale set. + /// Deletes a virtual machine from a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -576,8 +618,9 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// - /// - /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// + /// Optional parameter to force delete a virtual machine from a VM + /// scale set. (Feature in Preview) /// /// /// The headers that will be added to request. @@ -591,14 +634,13 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Allows you to re-image all the disks ( including data disks ) in - /// the a VM scale set instance. This operation is only supported for - /// managed disks. + /// Approve upgrade on deferred rolling upgrade for OS disk on a VM + /// scale set instance. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -618,13 +660,13 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task BeginReimageAllWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Approve upgrade on deferred rolling upgrade for OS disk on a VM - /// scale set instance. + /// Attach and detach data disks to/from a virtual machine in a VM + /// scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -632,6 +674,10 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// + /// + /// Parameters supplied to the attach and detach data disks operation + /// on a Virtual Machine Scale Sets VM. + /// /// /// The headers that will be added to request. /// @@ -641,10 +687,13 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task> BeginApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginAttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deallocates a specific virtual machine in a VM scale set. Shuts /// down the virtual machine and releases the compute resources it @@ -652,7 +701,7 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// machine once it is deallocated. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -674,53 +723,10 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// Task BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates a virtual machine of a VM scale set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set where the extension should be create - /// or updated. - /// - /// - /// The instance ID of the virtual machine. - /// - /// - /// Parameters supplied to the Update Virtual Machine Scale Sets VM - /// operation. - /// - /// - /// The ETag of the transformation. Omit this value to always overwrite - /// the current resource. Specify the last-seen ETag value to prevent - /// accidentally overwriting concurrent changes. - /// - /// - /// Set to '*' to allow a new record set to be created, but to prevent - /// updating an existing record set. Other values will result in error - /// from server as they are not supported. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes a virtual machine from a VM scale set. + /// Performs maintenance on a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -728,10 +734,6 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM - /// scale set. (Feature in Preview) - /// /// /// The headers that will be added to request. /// @@ -744,16 +746,15 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginPerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Power off (stop) a virtual machine in a VM scale set. Note that /// resources are still attached and you are getting charged for the /// resources. Instead, use deallocate to release resources and avoid - /// charges. Additionally, this operation is not allowed on a virtual - /// machine that is being deallocated or already has been deallocated. + /// charges. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -778,12 +779,13 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Restarts a virtual machine in a VM scale set. + /// Shuts down the virtual machine in the virtual machine scale set, + /// moves it to a new node, and powers it back on. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -803,12 +805,13 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Starts a virtual machine in a VM scale set. + /// Reimages (upgrade the operating system) a specific virtual machine + /// in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -816,6 +819,9 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// + /// + /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// /// /// The headers that will be added to request. /// @@ -828,13 +834,14 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Shuts down the virtual machine in the virtual machine scale set, - /// moves it to a new node, and powers it back on. + /// Allows you to re-image all the disks ( including data disks ) in + /// the a VM scale set instance. This operation is only supported for + /// managed disks. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -854,12 +861,12 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginReimageAllWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Performs maintenance on a virtual machine in a VM scale set. + /// Restarts a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -879,13 +886,12 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task BeginPerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Attach and detach data disks to/from a virtual machine in a VM - /// scale set. + /// Run command on a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -894,8 +900,7 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// The instance ID of the virtual machine. /// /// - /// Parameters supplied to the attach and detach data disks operation - /// on a Virtual Machine Scale Sets VM. + /// Parameters supplied to the Run command operation. /// /// /// The headers that will be added to request. @@ -912,12 +917,12 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task> BeginAttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginRunCommandWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Run command on a virtual machine in a VM scale set. + /// Starts a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -925,9 +930,6 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the Run command operation. - /// /// /// The headers that will be added to request. /// @@ -937,13 +939,10 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> BeginRunCommandWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets a list of all virtual machines in a VM scale sets. /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetsOperations.cs index b83a46d2b42b..f78dc4c96656 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineScaleSetsOperations.cs @@ -28,8 +28,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// specified location. /// /// - /// The location for which VM scale sets under the subscription are - /// queried. + /// The name of Azure region. /// /// /// The headers that will be added to request. @@ -48,13 +47,88 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task>> ListByLocationWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Gets a list of all VM Scale Sets in the subscription, regardless of + /// the associated resource group. Use nextLink property in the + /// response to get the next page of VM Scale Sets. Do this till + /// nextLink is null to fetch all the VM Scale Sets. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all VM scale sets under a resource group. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Display information about a virtual machine scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The expand expression to apply on the operation. 'UserData' + /// retrieves the UserData property of the VM scale set that was + /// provided by the user during the VM scale set Create/Update + /// operation. Possible values include: 'userData' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Create or update a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -84,15 +158,15 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSet parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSet parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Update a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -122,12 +196,12 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSetUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSetUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -150,19 +224,19 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Display information about a virtual machine scale set. + /// Approve upgrade on deferred rolling upgrades for OS disks in the + /// virtual machines in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The expand expression to apply on the operation. 'UserData' - /// retrieves the UserData property of the VM scale set that was - /// provided by the user during the VM scale set Create/Update - /// operation. Possible values include: 'userData' + /// + /// The virtual machine scale set instance ids. Omitting the virtual + /// machine scale set instance ids will result in the operation being + /// performed on all virtual machines in the virtual machine scale set. /// /// /// The headers that will be added to request. @@ -173,13 +247,40 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response + /// + /// Thrown when a required parameter is null + /// + Task> ApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Converts SinglePlacementGroup property to false for a existing + /// virtual machine scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// Id of the placement group in which you want future virtual machine + /// instances to be placed. To query placement group Id, please use + /// Virtual Machine Scale Set VMs - Get API. If not provided, the + /// platform will choose one with maximum number of virtual machine + /// instances. + /// + /// + /// 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> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task ConvertToSinglePlacementGroupWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string activePlacementGroupId = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deallocates specific virtual machines in a VM scale set. Shuts down /// the virtual machines and releases the compute resources. You are @@ -187,7 +288,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// scale set deallocates. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -219,7 +320,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// Deletes virtual machines in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -245,35 +346,26 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the status of a VM scale set instance. + /// Manual platform update domain walk to update virtual machines in a + /// service fabric virtual machine scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The headers that will be added to request. + /// + /// The platform update domain for which a manual recovery walk is + /// requested /// - /// - /// The cancellation token. + /// + /// The zone in which the manual recovery walk is requested for cross + /// zone virtual machine scale set /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all VM scale sets under a resource group. - /// - /// - /// The name of the resource group. + /// + /// The placement group id for which the manual recovery walk is + /// requested. /// /// /// The headers that will be added to request. @@ -290,13 +382,16 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ForceRecoveryServiceFabricPlatformUpdateDomainWalkWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, int platformUpdateDomain, string zone = default(string), string placementGroupId = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of all VM Scale Sets in the subscription, regardless of - /// the associated resource group. Use nextLink property in the - /// response to get the next page of VM Scale Sets. Do this till - /// nextLink is null to fetch all the VM Scale Sets. + /// Gets the status of a VM scale set instance. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// /// /// The headers that will be added to request. /// @@ -312,17 +407,20 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of SKUs available for your VM scale set, including the - /// minimum and maximum VM instances allowed for each SKU. + /// Upgrades one or more virtual machines to the latest SKU set in the + /// VM scale set model. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// + /// + /// The virtual machine scale set instance ids. + /// /// /// The headers that will be added to request. /// @@ -332,18 +430,15 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task>> ListSkusWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task UpdateInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets list of OS upgrades on a VM scale set instance. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -365,24 +460,18 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task>> GetOSUpgradeHistoryWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Power off (stop) one or more virtual machines in a VM scale set. - /// Note that resources are still attached and you are getting charged - /// for the resources. Instead, use deallocate to release resources and - /// avoid charges. Additionally, this operation is not allowed on - /// virtual machines in a VM scale set that are being deallocated or - /// have already been deallocated. + /// Perform maintenance on one or more virtual machines in a VM scale + /// set. Operation on instances which are not eligible for perform + /// maintenance will be failed. Please refer to best practices for more + /// details: + /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The parameter to request non-graceful VM shutdown. True value for - /// this flag indicates non-graceful shutdown whereas false indicates - /// otherwise. Default value for this flag is false if not specified - /// /// /// The virtual machine scale set instance ids. Omitting the virtual /// machine scale set instance ids will result in the operation being @@ -400,42 +489,23 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? skipShutdown = false, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Restarts one or more virtual machines in a VM scale set. + /// Power off (stop) one or more virtual machines in a VM scale set. + /// Note that resources are still attached and you are getting charged + /// for the resources. Instead, use deallocate to release resources and + /// avoid charges. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual - /// machine scale set instance ids will result in the operation being - /// performed on all virtual machines in the virtual machine 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 RestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Starts one or more virtual machines in a VM scale set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. + /// + /// The parameter to request non-graceful VM shutdown. True value for + /// this flag indicates non-graceful shutdown whereas false indicates + /// otherwise. Default value for this flag is false if not specified /// /// /// The virtual machine scale set instance ids. Omitting the virtual @@ -454,13 +524,13 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task StartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? skipShutdown = default(bool?), 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 resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -483,7 +553,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// set, moves them to a new node, and powers them back on. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -507,70 +577,13 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task RedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Perform maintenance on one or more virtual machines in a VM scale - /// set. Operation on instances which are not eligible for perform - /// maintenance will be failed. Please refer to best practices for more - /// details: - /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual - /// machine scale set instance ids will result in the operation being - /// performed on all virtual machines in the virtual machine 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 PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Upgrades one or more virtual machines to the latest SKU set in the - /// VM scale set model. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The virtual machine scale set instance ids. - /// - /// - /// 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 UpdateInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// /// Reimages (upgrade the operating system) one or more virtual /// machines in a VM scale set which don't have a ephemeral OS disk, /// for virtual machines who have a ephemeral OS disk the virtual /// machine is reset to initial state. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -597,7 +610,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// managed disks. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -621,11 +634,10 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task ReimageAllWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Approve upgrade on deferred rolling upgrades for OS disks in the - /// virtual machines in a VM scale set. + /// Restarts one or more virtual machines in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -647,28 +659,18 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task> ApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task RestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Manual platform update domain walk to update virtual machines in a - /// service fabric virtual machine scale set. + /// Changes ServiceState property for a given service /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The platform update domain for which a manual recovery walk is - /// requested - /// - /// - /// The zone in which the manual recovery walk is requested for cross - /// zone virtual machine scale set - /// - /// - /// The placement group id for which the manual recovery walk is - /// requested. + /// + /// The input object for SetOrchestrationServiceState API. /// /// /// The headers that will be added to request. @@ -679,29 +681,19 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> ForceRecoveryServiceFabricPlatformUpdateDomainWalkWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, int platformUpdateDomain, string zone = default(string), string placementGroupId = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task SetOrchestrationServiceStateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Converts SinglePlacementGroup property to false for a existing - /// virtual machine scale set. + /// Gets a list of SKUs available for your VM scale set, including the + /// minimum and maximum VM instances allowed for each SKU. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine scale set to create or update. - /// - /// - /// Id of the placement group in which you want future virtual machine - /// instances to be placed. To query placement group Id, please use - /// Virtual Machine Scale Set VMs - Get API. If not provided, the - /// platform will choose one with maximum number of virtual machine - /// instances. + /// The name of the VM scale set. /// /// /// The headers that will be added to request. @@ -712,21 +704,26 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task ConvertToSinglePlacementGroupWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string activePlacementGroupId = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListSkusWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Changes ServiceState property for a given service + /// Starts one or more virtual machines in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine scale set to create or update. + /// The name of the VM scale set. /// - /// - /// The input object for SetOrchestrationServiceState API. + /// + /// The virtual machine scale set instance ids. Omitting the virtual + /// machine scale set instance ids will result in the operation being + /// performed on all virtual machines in the virtual machine scale set. /// /// /// The headers that will be added to request. @@ -740,15 +737,15 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task SetOrchestrationServiceStateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task StartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -778,15 +775,15 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSet parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSet parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Update a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -816,12 +813,12 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSetUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSetUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -844,13 +841,41 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Approve upgrade on deferred rolling upgrades for OS disks in the + /// virtual machines in a VM scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The virtual machine scale set instance ids. Omitting the virtual + /// machine scale set instance ids will result in the operation being + /// performed on all virtual machines in the virtual machine 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> BeginApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Deallocates specific virtual machines in a VM scale set. Shuts down /// the virtual machines and releases the compute resources. You are /// not billed for the compute resources that this virtual machine /// scale set deallocates. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -882,7 +907,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// Deletes virtual machines in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -908,28 +933,17 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Power off (stop) one or more virtual machines in a VM scale set. - /// Note that resources are still attached and you are getting charged - /// for the resources. Instead, use deallocate to release resources and - /// avoid charges. Additionally, this operation is not allowed on - /// virtual machines in a VM scale set that are being deallocated or - /// have already been deallocated. + /// Upgrades one or more virtual machines to the latest SKU set in the + /// VM scale set model. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The parameter to request non-graceful VM shutdown. True value for - /// this flag indicates non-graceful shutdown whereas false indicates - /// otherwise. Default value for this flag is false if not specified - /// /// - /// The virtual machine scale set instance ids. Omitting the virtual - /// machine scale set instance ids will result in the operation being - /// performed on all virtual machines in the virtual machine scale set. + /// The virtual machine scale set instance ids. /// /// /// The headers that will be added to request. @@ -943,12 +957,16 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? skipShutdown = false, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginUpdateInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Restarts one or more virtual machines in a VM scale set. + /// Perform maintenance on one or more virtual machines in a VM scale + /// set. Operation on instances which are not eligible for perform + /// maintenance will be failed. Please refer to best practices for more + /// details: + /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -970,16 +988,24 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginPerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Starts one or more virtual machines in a VM scale set. + /// Power off (stop) one or more virtual machines in a VM scale set. + /// Note that resources are still attached and you are getting charged + /// for the resources. Instead, use deallocate to release resources and + /// avoid charges. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// + /// + /// The parameter to request non-graceful VM shutdown. True value for + /// this flag indicates non-graceful shutdown whereas false indicates + /// otherwise. Default value for this flag is false if not specified + /// /// /// The virtual machine scale set instance ids. Omitting the virtual /// machine scale set instance ids will result in the operation being @@ -997,13 +1023,13 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? skipShutdown = default(bool?), 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 resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1026,7 +1052,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// set, moves them to a new node, and powers them back on. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1050,22 +1076,19 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Perform maintenance on one or more virtual machines in a VM scale - /// set. Operation on instances which are not eligible for perform - /// maintenance will be failed. Please refer to best practices for more - /// details: - /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications + /// Reimages (upgrade the operating system) one or more virtual + /// machines in a VM scale set which don't have a ephemeral OS disk, + /// for virtual machines who have a ephemeral OS disk the virtual + /// machine is reset to initial state. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual - /// machine scale set instance ids will result in the operation being - /// performed on all virtual machines in the virtual machine scale set. + /// + /// Parameters for Reimaging VM ScaleSet. /// /// /// The headers that will be added to request. @@ -1079,19 +1102,22 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task BeginPerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSetReimageParameters vmScaleSetReimageInput = default(VirtualMachineScaleSetReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Upgrades one or more virtual machines to the latest SKU set in the - /// VM scale set model. + /// Reimages all the disks ( including data disks ) in the virtual + /// machines in a VM scale set. This operation is only supported for + /// managed disks. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// /// - /// The virtual machine scale set instance ids. + /// The virtual machine scale set instance ids. Omitting the virtual + /// machine scale set instance ids will result in the operation being + /// performed on all virtual machines in the virtual machine scale set. /// /// /// The headers that will be added to request. @@ -1105,21 +1131,20 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task BeginUpdateInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginReimageAllWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Reimages (upgrade the operating system) one or more virtual - /// machines in a VM scale set which don't have a ephemeral OS disk, - /// for virtual machines who have a ephemeral OS disk the virtual - /// machine is reset to initial state. + /// Restarts one or more virtual machines in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// Parameters for Reimaging VM ScaleSet. + /// + /// The virtual machine scale set instance ids. Omitting the virtual + /// machine scale set instance ids will result in the operation being + /// performed on all virtual machines in the virtual machine scale set. /// /// /// The headers that will be added to request. @@ -1133,22 +1158,18 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSetReimageParameters vmScaleSetReimageInput = default(VirtualMachineScaleSetReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Reimages all the disks ( including data disks ) in the virtual - /// machines in a VM scale set. This operation is only supported for - /// managed disks. + /// Changes ServiceState property for a given service /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual - /// machine scale set instance ids will result in the operation being - /// performed on all virtual machines in the virtual machine scale set. + /// + /// The input object for SetOrchestrationServiceState API. /// /// /// The headers that will be added to request. @@ -1162,13 +1183,12 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task BeginReimageAllWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginSetOrchestrationServiceStateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Approve upgrade on deferred rolling upgrades for OS disks in the - /// virtual machines in a VM scale set. + /// Starts one or more virtual machines in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1190,32 +1210,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task> BeginApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Changes ServiceState property for a given service - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine scale set to create or update. - /// - /// - /// The input object for SetOrchestrationServiceState API. - /// - /// - /// 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 BeginSetOrchestrationServiceStateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets all the VM scale sets under the specified subscription for the /// specified location. @@ -1240,7 +1235,10 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task>> ListByLocationNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of all VM scale sets under a resource group. + /// Gets a list of all VM Scale Sets in the subscription, regardless of + /// the associated resource group. Use nextLink property in the + /// response to get the next page of VM Scale Sets. Do this till + /// nextLink is null to fetch all the VM Scale Sets. /// /// /// The NextLink from the previous successful call to List operation. @@ -1260,12 +1258,9 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of all VM Scale Sets in the subscription, regardless of - /// the associated resource group. Use nextLink property in the - /// response to get the next page of VM Scale Sets. Do this till - /// nextLink is null to fetch all the VM Scale Sets. + /// Gets a list of all VM scale sets under a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -1285,10 +1280,9 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of SKUs available for your VM scale set, including the - /// minimum and maximum VM instances allowed for each SKU. + /// Gets list of OS upgrades on a VM scale set instance. /// /// /// The NextLink from the previous successful call to List operation. @@ -1308,9 +1302,10 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task>> ListSkusNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> GetOSUpgradeHistoryNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets list of OS upgrades on a VM scale set instance. + /// Gets a list of SKUs available for your VM scale set, including the + /// minimum and maximum VM instances allowed for each SKU. /// /// /// The NextLink from the previous successful call to List operation. @@ -1330,6 +1325,6 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task>> GetOSUpgradeHistoryNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListSkusNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineSizesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineSizesOperations.cs index 616cad288333..e5a118c60ea2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineSizesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachineSizesOperations.cs @@ -28,7 +28,7 @@ public partial interface IVirtualMachineSizesOperations /// Skus](https://docs.microsoft.com/rest/api/compute/resourceskus/list) /// /// - /// The location upon which virtual-machine-sizes is queried. + /// The name of Azure region. /// /// /// The headers that will be added to request. diff --git a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachinesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachinesOperations.cs index df11cb3b4bba..87568dae92e1 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachinesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/IVirtualMachinesOperations.cs @@ -28,8 +28,7 @@ public partial interface IVirtualMachinesOperations /// the specified location. /// /// - /// The location for which virtual machines under the subscription are - /// queried. + /// The name of Azure region. /// /// /// The headers that will be added to request. @@ -48,17 +47,94 @@ public partial interface IVirtualMachinesOperations /// Task>> ListByLocationWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Captures the VM by copying virtual hard disks of the VM and outputs - /// a template that can be used to create similar VMs. + /// Lists all of the virtual machines in the specified subscription. + /// Use the nextLink property in the response to get the next page of + /// virtual machines. + /// + /// + /// statusOnly=true enables fetching run time status of all Virtual + /// Machines in the subscription. + /// + /// + /// The system query option to filter VMs returned in the response. + /// Allowed value is 'virtualMachineScaleSet/id' eq + /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' + /// + /// + /// The expand expression to apply on operation. 'instanceView' enables + /// fetching run time status of all Virtual Machines, this can only be + /// specified if a valid $filter option is specified. Possible values + /// include: 'instanceView' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListAllWithHttpMessagesAsync(string statusOnly = default(string), string filter = default(string), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the virtual machines in the specified resource group. + /// Use the nextLink property in the response to get the next page of + /// virtual machines. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The system query option to filter VMs returned in the response. + /// Allowed value is 'virtualMachineScaleSet/id' eq + /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' + /// + /// + /// The expand expression to apply on operation. 'instanceView' enables + /// fetching run time status of all Virtual Machines, this can only be + /// specified if a valid $filter option is specified. Possible values + /// include: 'instanceView' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string filter = default(string), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Retrieves information about the model view or the instance view of + /// a virtual machine. + /// + /// + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Capture Virtual Machine operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' + /// retrieves a snapshot of the runtime properties of the virtual + /// machine that is managed by the platform and can change outside of + /// control plane operations. 'UserData' retrieves the UserData + /// property as part of the VM model view that was provided by the user + /// during the VM Create/Update operation. Possible values include: + /// 'instanceView', 'userData', 'resiliencyView' /// /// /// The headers that will be added to request. @@ -75,13 +151,13 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task> CaptureWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to create or update a virtual machine. Please note /// some properties can be set only during virtual machine creation. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -114,12 +190,12 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachine parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachine parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to update a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -152,28 +228,18 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to delete a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// /// Optional parameter to force delete virtual machines. - /// NOTE: As of api-version 2024-11-01, we are rolling out a feature - /// where if the forceDeletion parameter is unspecified OR not - /// explicitly set to false, AND all of the VM's attached disks - /// including the OS disk are marked with the delete option, then the - /// VM will be force deleted. For more details on how to configure - /// delete options for a VM's resources, see [Delete a VM and attached - /// resources](https://learn.microsoft.com/en-us/azure/virtual-machines/delete). - /// To avoid defaulting to force delete, ensure that the forceDeletion - /// parameter is explicitly set to false. This feature is expected to - /// rollout by end of March 2025. /// /// /// The headers that will be added to request. @@ -189,23 +255,42 @@ public partial interface IVirtualMachinesOperations /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about the model view or the instance view of - /// a virtual machine. + /// Assess patches on the VM. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' - /// retrieves a snapshot of the runtime properties of the virtual - /// machine that is managed by the platform and can change outside of - /// control plane operations. 'UserData' retrieves the UserData - /// property as part of the VM model view that was provided by the user - /// during the VM Create/Update operation. Possible values include: - /// 'instanceView', 'userData' + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> AssessPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Attach and detach data disks to/from the virtual machine. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Parameters supplied to the attach and detach data disks operation + /// on the virtual machine. /// /// /// The headers that will be added to request. @@ -222,17 +307,20 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> AttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about the run-time state of a virtual - /// machine. + /// Captures the VM by copying virtual hard disks of the VM and outputs + /// a template that can be used to create similar VMs. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Parameters supplied to the Capture Virtual Machine operation. + /// /// /// The headers that will be added to request. /// @@ -248,14 +336,14 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task> InstanceViewWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CaptureWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Converts virtual machine disks from blob-based to managed disks. /// Virtual machine must be stop-deallocated before invoking this /// operation. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -279,7 +367,7 @@ public partial interface IVirtualMachinesOperations /// machine uses. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -311,7 +399,7 @@ public partial interface IVirtualMachinesOperations /// VHD](https://docs.microsoft.com/azure/virtual-machines/linux/capture-image). /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -330,59 +418,16 @@ public partial interface IVirtualMachinesOperations /// Task GeneralizeWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all of the virtual machines in the specified resource group. - /// Use the nextLink property in the response to get the next page of - /// virtual machines. + /// Installs patches on the VM. /// /// - /// The name of the resource group. - /// - /// - /// The system query option to filter VMs returned in the response. - /// Allowed value is 'virtualMachineScaleSet/id' eq - /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' - /// - /// - /// The expand expression to apply on operation. 'instanceView' enables - /// fetching run time status of all Virtual Machines, this can only be - /// specified if a valid $filter option is specified. Possible values - /// include: 'instanceView' - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string filter = default(string), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Lists all of the virtual machines in the specified subscription. - /// Use the nextLink property in the response to get the next page of - /// virtual machines. - /// - /// - /// statusOnly=true enables fetching run time status of all Virtual - /// Machines in the subscription. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The system query option to filter VMs returned in the response. - /// Allowed value is 'virtualMachineScaleSet/id' eq - /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' + /// + /// The name of the virtual machine. /// - /// - /// The expand expression to apply on operation. 'instanceView' enables - /// fetching run time status of all Virtual Machines, this can only be - /// specified if a valid $filter option is specified. Possible values - /// include: 'instanceView' + /// + /// Input for InstallPatches as directly received by the API /// /// /// The headers that will be added to request. @@ -399,13 +444,13 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task>> ListAllWithHttpMessagesAsync(string statusOnly = default(string), string filter = default(string), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> InstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all available virtual machine sizes to which the specified - /// virtual machine can be resized. + /// Retrieves information about the run-time state of a virtual + /// machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -425,90 +470,19 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task>> ListAvailableSizesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The operation to power off (stop) a virtual machine. The virtual - /// machine can be restarted with the same provisioned resources. You - /// are still charged for this virtual machine. NOTE: This operation is - /// not allowed on a virtual machine that is being deallocated or has - /// already been deallocated. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// The parameter to request non-graceful VM shutdown. True value for - /// this flag indicates non-graceful shutdown whereas false indicates - /// otherwise. Default value for this flag is false if not specified - /// - /// - /// 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 PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? skipShutdown = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The operation to reapply a virtual machine's state. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// 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 vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> InstanceViewWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to restart a virtual machine. + /// Migrate a virtual machine from availability set to Flexible Virtual + /// Machine Scale Set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// 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 RestartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The operation to start a virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. + /// + /// Parameters supplied to the Migrate Virtual Machine operation. /// /// /// The headers that will be added to request. @@ -522,13 +496,12 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task StartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task MigrateToVMScaleSetWithHttpMessagesAsync(string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Shuts down the virtual machine, moves it to a new node, and powers - /// it back on. + /// The operation to perform maintenance on a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -545,25 +518,22 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task RedeployWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Reimages (upgrade the operating system) a virtual machine which - /// don't have a ephemeral OS disk, for virtual machines who have a - /// ephemeral OS disk the virtual machine is reset to initial state. - /// NOTE: The retaining of old OS disk depends on the value of - /// deleteOption of OS disk. If deleteOption is detach, the old OS disk - /// will be preserved after reimage. If deleteOption is delete, the old - /// OS disk will be deleted after reimage. The deleteOption of the OS - /// disk should be updated accordingly before performing the reimage. + /// The operation to power off (stop) a virtual machine. The virtual + /// machine can be restarted with the same provisioned resources. You + /// are still charged for this virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Reimage Virtual Machine operation. + /// + /// The parameter to request non-graceful VM shutdown. True value for + /// this flag indicates non-graceful shutdown whereas false indicates + /// otherwise. Default value for this flag is false if not specified /// /// /// The headers that will be added to request. @@ -577,23 +547,16 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task ReimageWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? skipShutdown = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to retrieve SAS URIs for a virtual machine's boot - /// diagnostic logs. + /// The operation to reapply a virtual machine's state. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Expiration duration in minutes for the SAS URIs with a value - /// between 1 to 1440 minutes. **Note:** If not specified, SAS URIs - /// will be generated with a default expiration duration of 120 - /// minutes. - /// /// /// The headers that will be added to request. /// @@ -603,18 +566,16 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> RetrieveBootDiagnosticsDataWithHttpMessagesAsync(string resourceGroupName, string vmName, int? sasUriExpirationTimeInMinutes = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task ReapplyWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to perform maintenance on a virtual machine. + /// Shuts down the virtual machine, moves it to a new node, and powers + /// it back on. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -631,16 +592,26 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task RedeployWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to simulate the eviction of spot virtual machine. + /// Reimages (upgrade the operating system) a virtual machine which + /// don't have a ephemeral OS disk, for virtual machines who have a + /// ephemeral OS disk the virtual machine is reset to initial state. + /// NOTE: The retaining of old OS disk depends on the value of + /// deleteOption of OS disk. If deleteOption is detach, the old OS disk + /// will be preserved after reimage. If deleteOption is delete, the old + /// OS disk will be deleted after reimage. The deleteOption of the OS + /// disk should be updated accordingly before performing the reimage. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Parameters supplied to the Reimage Virtual Machine operation. + /// /// /// The headers that will be added to request. /// @@ -653,12 +624,12 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task SimulateEvictionWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task ReimageWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Assess patches on the VM. + /// The operation to restart a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -672,24 +643,25 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> AssessPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task RestartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Installs patches on the VM. + /// The operation to retrieve SAS URIs for a virtual machine's boot + /// diagnostic logs. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Input for InstallPatches as directly received by the API + /// + /// Expiration duration in minutes for the SAS URIs with a value + /// between 1 to 1440 minutes. **Note:** If not specified, SAS URIs + /// will be generated with a default expiration duration of 120 + /// minutes. /// /// /// The headers that will be added to request. @@ -706,19 +678,18 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task> InstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> RetrieveBootDiagnosticsDataWithHttpMessagesAsync(string resourceGroupName, string vmName, int? sasUriExpirationTimeInMinutes = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Attach and detach data disks to/from the virtual machine. + /// Run command on the VM. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// - /// Parameters supplied to the attach and detach data disks operation - /// on the virtual machine. + /// Parameters supplied to the Run command operation. /// /// /// The headers that will be added to request. @@ -735,20 +706,16 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task> AttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> RunCommandWithHttpMessagesAsync(string resourceGroupName, string vmName, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Migrate a virtual machine from availability set to Flexible Virtual - /// Machine Scale Set. + /// The operation to simulate the eviction of spot virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Migrate Virtual Machine operation. - /// /// /// The headers that will be added to request. /// @@ -761,19 +728,16 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task MigrateToVMScaleSetWithHttpMessagesAsync(string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task SimulateEvictionWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Run command on the VM. + /// The operation to start a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Run command operation. - /// /// /// The headers that will be added to request. /// @@ -783,26 +747,20 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> RunCommandWithHttpMessagesAsync(string resourceGroupName, string vmName, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task StartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Captures the VM by copying virtual hard disks of the VM and outputs - /// a template that can be used to create similar VMs. + /// Lists all available virtual machine sizes to which the specified + /// virtual machine can be resized. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Capture Virtual Machine operation. - /// /// /// The headers that will be added to request. /// @@ -818,13 +776,13 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task> BeginCaptureWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListAvailableSizesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to create or update a virtual machine. Please note /// some properties can be set only during virtual machine creation. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -857,12 +815,12 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachine parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachine parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to update a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -895,28 +853,18 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The operation to delete a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// /// Optional parameter to force delete virtual machines. - /// NOTE: As of api-version 2024-11-01, we are rolling out a feature - /// where if the forceDeletion parameter is unspecified OR not - /// explicitly set to false, AND all of the VM's attached disks - /// including the OS disk are marked with the delete option, then the - /// VM will be force deleted. For more details on how to configure - /// delete options for a VM's resources, see [Delete a VM and attached - /// resources](https://learn.microsoft.com/en-us/azure/virtual-machines/delete). - /// To avoid defaulting to force delete, ensure that the forceDeletion - /// parameter is explicitly set to false. This feature is expected to - /// rollout by end of March 2025. /// /// /// The headers that will be added to request. @@ -932,12 +880,10 @@ public partial interface IVirtualMachinesOperations /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Converts virtual machine disks from blob-based to managed disks. - /// Virtual machine must be stop-deallocated before invoking this - /// operation. + /// Assess patches on the VM. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -951,23 +897,25 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task BeginConvertToManagedDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginAssessPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Shuts down the virtual machine and releases the compute resources. - /// You are not billed for the compute resources that this virtual - /// machine uses. + /// Attach and detach data disks to/from the virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Optional parameter to hibernate a virtual machine. + /// + /// Parameters supplied to the attach and detach data disks operation + /// on the virtual machine. /// /// /// The headers that will be added to request. @@ -978,27 +926,25 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? hibernate = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginAttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to power off (stop) a virtual machine. The virtual - /// machine can be restarted with the same provisioned resources. You - /// are still charged for this virtual machine. NOTE: This operation is - /// not allowed on a virtual machine that is being deallocated or has - /// already been deallocated. + /// Captures the VM by copying virtual hard disks of the VM and outputs + /// a template that can be used to create similar VMs. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// The parameter to request non-graceful VM shutdown. True value for - /// this flag indicates non-graceful shutdown whereas false indicates - /// otherwise. Default value for this flag is false if not specified + /// + /// Parameters supplied to the Capture Virtual Machine operation. /// /// /// The headers that will be added to request. @@ -1009,15 +955,20 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? skipShutdown = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCaptureWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to reapply a virtual machine's state. + /// Converts virtual machine disks from blob-based to managed disks. + /// Virtual machine must be stop-deallocated before invoking this + /// operation. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1034,16 +985,21 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task BeginReapplyWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginConvertToManagedDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to restart a virtual machine. + /// Shuts down the virtual machine and releases the compute resources. + /// You are not billed for the compute resources that this virtual + /// machine uses. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Optional parameter to hibernate a virtual machine. + /// /// /// The headers that will be added to request. /// @@ -1056,16 +1012,19 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? hibernate = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to start a virtual machine. + /// Installs patches on the VM. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Input for InstallPatches as directly received by the API + /// /// /// The headers that will be added to request. /// @@ -1075,20 +1034,26 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginInstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Shuts down the virtual machine, moves it to a new node, and powers - /// it back on. + /// Migrate a virtual machine from availability set to Flexible Virtual + /// Machine Scale Set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Parameters supplied to the Migrate Virtual Machine operation. + /// /// /// The headers that will be added to request. /// @@ -1101,26 +1066,16 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginMigrateToVMScaleSetWithHttpMessagesAsync(string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Reimages (upgrade the operating system) a virtual machine which - /// don't have a ephemeral OS disk, for virtual machines who have a - /// ephemeral OS disk the virtual machine is reset to initial state. - /// NOTE: The retaining of old OS disk depends on the value of - /// deleteOption of OS disk. If deleteOption is detach, the old OS disk - /// will be preserved after reimage. If deleteOption is delete, the old - /// OS disk will be deleted after reimage. The deleteOption of the OS - /// disk should be updated accordingly before performing the reimage. + /// The operation to perform maintenance on a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Reimage Virtual Machine operation. - /// /// /// The headers that will be added to request. /// @@ -1133,16 +1088,23 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginPerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to perform maintenance on a virtual machine. + /// The operation to power off (stop) a virtual machine. The virtual + /// machine can be restarted with the same provisioned resources. You + /// are still charged for this virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// The parameter to request non-graceful VM shutdown. True value for + /// this flag indicates non-graceful shutdown whereas false indicates + /// otherwise. Default value for this flag is false if not specified + /// /// /// The headers that will be added to request. /// @@ -1155,12 +1117,12 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task BeginPerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? skipShutdown = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Assess patches on the VM. + /// The operation to reapply a virtual machine's state. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1174,25 +1136,20 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> BeginAssessPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginReapplyWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Installs patches on the VM. + /// Shuts down the virtual machine, moves it to a new node, and powers + /// it back on. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Input for InstallPatches as directly received by the API - /// /// /// The headers that will be added to request. /// @@ -1202,25 +1159,28 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> BeginInstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Attach and detach data disks to/from the virtual machine. + /// Reimages (upgrade the operating system) a virtual machine which + /// don't have a ephemeral OS disk, for virtual machines who have a + /// ephemeral OS disk the virtual machine is reset to initial state. + /// NOTE: The retaining of old OS disk depends on the value of + /// deleteOption of OS disk. If deleteOption is detach, the old OS disk + /// will be preserved after reimage. If deleteOption is delete, the old + /// OS disk will be deleted after reimage. The deleteOption of the OS + /// disk should be updated accordingly before performing the reimage. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// - /// Parameters supplied to the attach and detach data disks operation - /// on the virtual machine. + /// Parameters supplied to the Reimage Virtual Machine operation. /// /// /// The headers that will be added to request. @@ -1231,26 +1191,19 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> BeginAttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Migrate a virtual machine from availability set to Flexible Virtual - /// Machine Scale Set. + /// The operation to restart a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Migrate Virtual Machine operation. - /// /// /// The headers that will be added to request. /// @@ -1263,12 +1216,12 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task BeginMigrateToVMScaleSetWithHttpMessagesAsync(string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Run command on the VM. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1293,6 +1246,28 @@ public partial interface IVirtualMachinesOperations /// Task> BeginRunCommandWithHttpMessagesAsync(string resourceGroupName, string vmName, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// The operation to start a virtual machine. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// 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 BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets all the virtual machines under the specified subscription for /// the specified location. /// @@ -1316,7 +1291,7 @@ public partial interface IVirtualMachinesOperations /// Task>> ListByLocationNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all of the virtual machines in the specified resource group. + /// Lists all of the virtual machines in the specified subscription. /// Use the nextLink property in the response to get the next page of /// virtual machines. /// @@ -1338,9 +1313,9 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all of the virtual machines in the specified subscription. + /// Lists all of the virtual machines in the specified resource group. /// Use the nextLink property in the response to get the next page of /// virtual machines. /// @@ -1362,6 +1337,6 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/ImagesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ImagesOperations.cs index 1286ec203a19..516c401ae296 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ImagesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ImagesOperations.cs @@ -51,89 +51,10 @@ internal ImagesOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update an image. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the image. - /// - /// - /// Parameters supplied to the Create Image operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, Image parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, imageName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Update an image. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the image. - /// - /// - /// Parameters supplied to the Update Image operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, ImageUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, imageName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Deletes an Image. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the image. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string imageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, imageName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets an image. + /// Gets the list of Images in the subscription. Use nextLink property in the + /// response to get the next page of Images. Do this till nextLink is null to + /// fetch all the Images. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the image. - /// - /// - /// The expand expression to apply on the operation. - /// /// /// Headers that will be added to request. /// @@ -155,16 +76,8 @@ internal ImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string imageName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (imageName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "imageName"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -177,24 +90,15 @@ internal ImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("imageName", imageName); - tracingParameters.Add("expand", expand); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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/images/{imageName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{imageName}", System.Uri.EscapeDataString(imageName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/images").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -292,7 +196,7 @@ internal ImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -305,7 +209,7 @@ internal ImagesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -330,7 +234,7 @@ internal ImagesOperations(ComputeManagementClient client) /// to fetch all the Images. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -355,13 +259,24 @@ internal ImagesOperations(ComputeManagementClient client) /// public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } string apiVersion = "2024-11-01"; // Tracing @@ -371,16 +286,16 @@ internal ImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", 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/images").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -512,10 +427,17 @@ internal ImagesOperations(ComputeManagementClient client) } /// - /// Gets the list of Images in the subscription. Use nextLink property in the - /// response to get the next page of Images. Do this till nextLink is null to - /// fetch all the Images. + /// Gets an image. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the image. + /// + /// + /// The expand expression to apply on the operation. + /// /// /// Headers that will be added to request. /// @@ -537,12 +459,31 @@ internal ImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string imageName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (imageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "imageName"); + } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -552,18 +493,27 @@ internal ImagesOperations(ComputeManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("imageName", imageName); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/images").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images/{imageName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{imageName}", System.Uri.EscapeDataString(imageName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -657,7 +607,7 @@ internal ImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -670,7 +620,7 @@ internal ImagesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -693,7 +643,79 @@ internal ImagesOperations(ComputeManagementClient client) /// Create or update an image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the image. + /// + /// + /// Parameters supplied to the Create Image operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, Image parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, imageName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update an image. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the image. + /// + /// + /// Parameters supplied to the Update Image operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, ImageUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, imageName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes an Image. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the image. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string imageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, imageName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Create or update an image. + /// + /// + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. @@ -722,12 +744,27 @@ internal ImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, Image parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, Image parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (imageName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "imageName"); @@ -740,10 +777,6 @@ internal ImagesOperations(ComputeManagementClient client) { parameters.Validate(); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -752,19 +785,19 @@ internal ImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("imageName", imageName); tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", 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/images/{imageName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{imageName}", System.Uri.EscapeDataString(imageName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -869,7 +902,7 @@ internal ImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -912,6 +945,19 @@ internal ImagesOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -923,7 +969,7 @@ internal ImagesOperations(ComputeManagementClient client) /// Update an image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. @@ -952,12 +998,27 @@ internal ImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, ImageUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string imageName, ImageUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (imageName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "imageName"); @@ -966,10 +1027,6 @@ internal ImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -978,19 +1035,19 @@ internal ImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("imageName", imageName); tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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/images/{imageName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{imageName}", System.Uri.EscapeDataString(imageName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1095,7 +1152,7 @@ internal ImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1138,6 +1195,19 @@ internal ImagesOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1149,7 +1219,7 @@ internal ImagesOperations(ComputeManagementClient client) /// Deletes an Image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. @@ -1174,17 +1244,28 @@ internal ImagesOperations(ComputeManagementClient client) /// public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string imageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (imageName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "imageName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (imageName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "imageName"); } string apiVersion = "2024-11-01"; // Tracing @@ -1194,18 +1275,18 @@ internal ImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("imageName", imageName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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/images/{imageName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{imageName}", System.Uri.EscapeDataString(imageName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1319,9 +1400,9 @@ internal ImagesOperations(ComputeManagementClient client) } /// - /// Gets the list of images under a resource group. Use nextLink property in - /// the response to get the next page of Images. Do this till nextLink is null - /// to fetch all the Images. + /// Gets the list of Images in the subscription. Use nextLink property in the + /// response to get the next page of Images. Do this till nextLink is null to + /// fetch all the Images. /// /// /// The NextLink from the previous successful call to List operation. @@ -1347,7 +1428,7 @@ internal ImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1362,7 +1443,7 @@ internal ImagesOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -1494,9 +1575,9 @@ internal ImagesOperations(ComputeManagementClient client) } /// - /// Gets the list of Images in the subscription. Use nextLink property in the - /// response to get the next page of Images. Do this till nextLink is null to - /// fetch all the Images. + /// Gets the list of images under a resource group. Use nextLink property in + /// the response to get the next page of Images. Do this till nextLink is null + /// to fetch all the Images. /// /// /// The NextLink from the previous successful call to List operation. @@ -1522,7 +1603,7 @@ internal ImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1537,7 +1618,7 @@ internal ImagesOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/Compute/Compute.Management.Sdk/Generated/ImagesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/ImagesOperationsExtensions.cs index 486dffbb0b10..4d431d36a9c2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ImagesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ImagesOperationsExtensions.cs @@ -22,248 +22,248 @@ namespace Microsoft.Azure.Management.Compute public static partial class ImagesOperationsExtensions { /// - /// Create or update an image. + /// Gets the list of Images in the subscription. Use nextLink property in the + /// response to get the next page of Images. Do this till nextLink is null to + /// fetch all the Images. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the image. - /// - /// - /// Parameters supplied to the Create Image operation. - /// - public static Image CreateOrUpdate(this IImagesOperations operations, string resourceGroupName, string imageName, Image parameters) + public static IPage List(this IImagesOperations operations) { - return operations.CreateOrUpdateAsync(resourceGroupName, imageName, parameters).GetAwaiter().GetResult(); + return operations.ListAsync().GetAwaiter().GetResult(); } /// - /// Create or update an image. + /// Gets the list of Images in the subscription. Use nextLink property in the + /// response to get the next page of Images. Do this till nextLink is null to + /// fetch all the Images. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the image. - /// - /// - /// Parameters supplied to the Create Image operation. - /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IImagesOperations operations, string resourceGroupName, string imageName, Image parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IImagesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, imageName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Update an image. + /// Gets the list of images under a resource group. Use nextLink property in + /// the response to get the next page of Images. Do this till nextLink is null + /// to fetch all the Images. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The name of the image. - /// - /// - /// Parameters supplied to the Update Image operation. - /// - public static Image Update(this IImagesOperations operations, string resourceGroupName, string imageName, ImageUpdate parameters) + public static IPage ListByResourceGroup(this IImagesOperations operations, string resourceGroupName) { - return operations.UpdateAsync(resourceGroupName, imageName, parameters).GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); } /// - /// Update an image. + /// Gets the list of images under a resource group. Use nextLink property in + /// the response to get the next page of Images. Do this till nextLink is null + /// to fetch all the Images. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the image. - /// - /// - /// Parameters supplied to the Update Image operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IImagesOperations operations, string resourceGroupName, string imageName, ImageUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IImagesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, imageName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Deletes an Image. + /// Gets an image. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. /// - public static void Delete(this IImagesOperations operations, string resourceGroupName, string imageName) + /// + /// The expand expression to apply on the operation. + /// + public static Image Get(this IImagesOperations operations, string resourceGroupName, string imageName, string expand = default(string)) { - operations.DeleteAsync(resourceGroupName, imageName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, imageName, expand).GetAwaiter().GetResult(); } /// - /// Deletes an Image. + /// Gets an image. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. /// + /// + /// The expand expression to apply on the operation. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IImagesOperations operations, string resourceGroupName, string imageName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IImagesOperations operations, string resourceGroupName, string imageName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, imageName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, imageName, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Gets an image. + /// Create or update an image. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Create Image operation. /// - public static Image Get(this IImagesOperations operations, string resourceGroupName, string imageName, string expand = default(string)) + public static Image CreateOrUpdate(this IImagesOperations operations, string resourceGroupName, string imageName, Image parameters) { - return operations.GetAsync(resourceGroupName, imageName, expand).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, imageName, parameters).GetAwaiter().GetResult(); } /// - /// Gets an image. + /// Create or update an image. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Create Image operation. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IImagesOperations operations, string resourceGroupName, string imageName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IImagesOperations operations, string resourceGroupName, string imageName, Image parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, imageName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, imageName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the list of images under a resource group. Use nextLink property in - /// the response to get the next page of Images. Do this till nextLink is null - /// to fetch all the Images. + /// Update an image. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - public static IPage ListByResourceGroup(this IImagesOperations operations, string resourceGroupName) + /// + /// The name of the image. + /// + /// + /// Parameters supplied to the Update Image operation. + /// + public static Image Update(this IImagesOperations operations, string resourceGroupName, string imageName, ImageUpdate parameters) { - return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, imageName, parameters).GetAwaiter().GetResult(); } /// - /// Gets the list of images under a resource group. Use nextLink property in - /// the response to get the next page of Images. Do this till nextLink is null - /// to fetch all the Images. + /// Update an image. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the image. + /// + /// + /// Parameters supplied to the Update Image operation. /// /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IImagesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IImagesOperations operations, string resourceGroupName, string imageName, ImageUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, imageName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the list of Images in the subscription. Use nextLink property in the - /// response to get the next page of Images. Do this till nextLink is null to - /// fetch all the Images. + /// Deletes an Image. /// /// /// The operations group for this extension method. /// - public static IPage List(this IImagesOperations operations) + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the image. + /// + public static void Delete(this IImagesOperations operations, string resourceGroupName, string imageName) { - return operations.ListAsync().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, imageName).GetAwaiter().GetResult(); } /// - /// Gets the list of Images in the subscription. Use nextLink property in the - /// response to get the next page of Images. Do this till nextLink is null to - /// fetch all the Images. + /// Deletes an Image. /// /// /// The operations group for this extension method. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the image. + /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IImagesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IImagesOperations operations, string resourceGroupName, string imageName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, imageName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -273,7 +273,7 @@ public static IPage List(this IImagesOperations operations) /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. @@ -293,7 +293,7 @@ public static Image BeginCreateOrUpdate(this IImagesOperations operations, strin /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. @@ -319,7 +319,7 @@ public static Image BeginCreateOrUpdate(this IImagesOperations operations, strin /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. @@ -339,7 +339,7 @@ public static Image BeginUpdate(this IImagesOperations operations, string resour /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. @@ -365,7 +365,7 @@ public static Image BeginUpdate(this IImagesOperations operations, string resour /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. @@ -382,7 +382,7 @@ public static void BeginDelete(this IImagesOperations operations, string resourc /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the image. @@ -396,9 +396,9 @@ public static void BeginDelete(this IImagesOperations operations, string resourc } /// - /// Gets the list of images under a resource group. Use nextLink property in - /// the response to get the next page of Images. Do this till nextLink is null - /// to fetch all the Images. + /// Gets the list of Images in the subscription. Use nextLink property in the + /// response to get the next page of Images. Do this till nextLink is null to + /// fetch all the Images. /// /// /// The operations group for this extension method. @@ -406,15 +406,15 @@ public static void BeginDelete(this IImagesOperations operations, string resourc /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByResourceGroupNext(this IImagesOperations operations, string nextPageLink) + public static IPage ListNext(this IImagesOperations operations, string nextPageLink) { - return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Gets the list of images under a resource group. Use nextLink property in - /// the response to get the next page of Images. Do this till nextLink is null - /// to fetch all the Images. + /// Gets the list of Images in the subscription. Use nextLink property in the + /// response to get the next page of Images. Do this till nextLink is null to + /// fetch all the Images. /// /// /// The operations group for this extension method. @@ -425,18 +425,18 @@ public static IPage ListByResourceGroupNext(this IImagesOperations operat /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this IImagesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this IImagesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the list of Images in the subscription. Use nextLink property in the - /// response to get the next page of Images. Do this till nextLink is null to - /// fetch all the Images. + /// Gets the list of images under a resource group. Use nextLink property in + /// the response to get the next page of Images. Do this till nextLink is null + /// to fetch all the Images. /// /// /// The operations group for this extension method. @@ -444,15 +444,15 @@ public static IPage ListByResourceGroupNext(this IImagesOperations operat /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IImagesOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this IImagesOperations operations, string nextPageLink) { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Gets the list of Images in the subscription. Use nextLink property in the - /// response to get the next page of Images. Do this till nextLink is null to - /// fetch all the Images. + /// Gets the list of images under a resource group. Use nextLink property in + /// the response to get the next page of Images. Do this till nextLink is null + /// to fetch all the Images. /// /// /// The operations group for this extension method. @@ -463,9 +463,9 @@ public static IPage ListNext(this IImagesOperations operations, string ne /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IImagesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this IImagesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/LogAnalyticsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/LogAnalyticsOperations.cs index 76dda2c9f83e..0566ab455f26 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/LogAnalyticsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/LogAnalyticsOperations.cs @@ -54,22 +54,22 @@ internal LogAnalyticsOperations(ComputeManagementClient client) /// Export logs that show Api requests made by this subscription in the given /// time window to show throttling activities. /// + /// + /// The name of Azure region. + /// /// /// Parameters supplied to the LogAnalytics getRequestRateByInterval Api. /// - /// - /// The location upon which virtual-machine-sizes is queried. - /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task> ExportRequestRateByIntervalWithHttpMessagesAsync(RequestRateByIntervalInput parameters, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ExportRequestRateByIntervalWithHttpMessagesAsync(string location, RequestRateByIntervalInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginExportRequestRateByIntervalWithHttpMessagesAsync(parameters, location, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginExportRequestRateByIntervalWithHttpMessagesAsync(location, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -77,11 +77,11 @@ internal LogAnalyticsOperations(ComputeManagementClient client) /// Export logs that show total throttled Api requests for this subscription in /// the given time window. /// - /// - /// Parameters supplied to the LogAnalytics getThrottledRequests Api. - /// /// - /// The location upon which virtual-machine-sizes is queried. + /// The name of Azure region. + /// + /// + /// The request body /// /// /// The headers that will be added to request. @@ -89,10 +89,10 @@ internal LogAnalyticsOperations(ComputeManagementClient client) /// /// The cancellation token. /// - public async Task> ExportThrottledRequestsWithHttpMessagesAsync(ThrottledRequestsInput parameters, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ExportThrottledRequestsWithHttpMessagesAsync(string location, ThrottledRequestsInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginExportThrottledRequestsWithHttpMessagesAsync(parameters, location, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginExportThrottledRequestsWithHttpMessagesAsync(location, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -100,12 +100,12 @@ internal LogAnalyticsOperations(ComputeManagementClient client) /// Export logs that show Api requests made by this subscription in the given /// time window to show throttling activities. /// + /// + /// The name of Azure region. + /// /// /// Parameters supplied to the LogAnalytics getRequestRateByInterval Api. /// - /// - /// The location upon which virtual-machine-sizes is queried. - /// /// /// Headers that will be added to request. /// @@ -127,15 +127,11 @@ internal LogAnalyticsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginExportRequestRateByIntervalWithHttpMessagesAsync(RequestRateByIntervalInput parameters, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginExportRequestRateByIntervalWithHttpMessagesAsync(string location, RequestRateByIntervalInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) + if (Client.SubscriptionId == null) { - parameters.Validate(); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (location == null) { @@ -143,14 +139,18 @@ internal LogAnalyticsOperations(ComputeManagementClient client) } if (location != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(location, "^[-\\w\\._]+$")) + if (location.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "location", "^[-\\w\\._]+$"); + throw new ValidationException(ValidationRules.MinLength, "location", 1); } } - if (Client.SubscriptionId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2024-11-01"; // Tracing @@ -160,17 +160,17 @@ internal LogAnalyticsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginExportRequestRateByInterval", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/logAnalytics/apiAccess/getRequestRateByInterval").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); List _queryParameters = new List(); if (apiVersion != null) { @@ -311,11 +311,11 @@ internal LogAnalyticsOperations(ComputeManagementClient client) /// Export logs that show total throttled Api requests for this subscription in /// the given time window. /// - /// - /// Parameters supplied to the LogAnalytics getThrottledRequests Api. - /// /// - /// The location upon which virtual-machine-sizes is queried. + /// The name of Azure region. + /// + /// + /// The request body /// /// /// Headers that will be added to request. @@ -338,15 +338,11 @@ internal LogAnalyticsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginExportThrottledRequestsWithHttpMessagesAsync(ThrottledRequestsInput parameters, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginExportThrottledRequestsWithHttpMessagesAsync(string location, ThrottledRequestsInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) + if (Client.SubscriptionId == null) { - parameters.Validate(); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (location == null) { @@ -354,14 +350,18 @@ internal LogAnalyticsOperations(ComputeManagementClient client) } if (location != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(location, "^[-\\w\\._]+$")) + if (location.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "location", "^[-\\w\\._]+$"); + throw new ValidationException(ValidationRules.MinLength, "location", 1); } } - if (Client.SubscriptionId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2024-11-01"; // Tracing @@ -371,17 +371,17 @@ internal LogAnalyticsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginExportThrottledRequests", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/logAnalytics/apiAccess/getThrottledRequests").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); List _queryParameters = new List(); if (apiVersion != null) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/LogAnalyticsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/LogAnalyticsOperationsExtensions.cs index de07f1b3d5fd..426c8d810d29 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/LogAnalyticsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/LogAnalyticsOperationsExtensions.cs @@ -28,15 +28,15 @@ public static partial class LogAnalyticsOperationsExtensions /// /// The operations group for this extension method. /// + /// + /// The name of Azure region. + /// /// /// Parameters supplied to the LogAnalytics getRequestRateByInterval Api. /// - /// - /// The location upon which virtual-machine-sizes is queried. - /// - public static LogAnalyticsOperationResult ExportRequestRateByInterval(this ILogAnalyticsOperations operations, RequestRateByIntervalInput parameters, string location) + public static LogAnalyticsOperationResult ExportRequestRateByInterval(this ILogAnalyticsOperations operations, string location, RequestRateByIntervalInput parameters) { - return operations.ExportRequestRateByIntervalAsync(parameters, location).GetAwaiter().GetResult(); + return operations.ExportRequestRateByIntervalAsync(location, parameters).GetAwaiter().GetResult(); } /// @@ -46,18 +46,18 @@ public static LogAnalyticsOperationResult ExportRequestRateByInterval(this ILogA /// /// The operations group for this extension method. /// + /// + /// The name of Azure region. + /// /// /// Parameters supplied to the LogAnalytics getRequestRateByInterval Api. /// - /// - /// The location upon which virtual-machine-sizes is queried. - /// /// /// The cancellation token. /// - public static async Task ExportRequestRateByIntervalAsync(this ILogAnalyticsOperations operations, RequestRateByIntervalInput parameters, string location, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ExportRequestRateByIntervalAsync(this ILogAnalyticsOperations operations, string location, RequestRateByIntervalInput parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ExportRequestRateByIntervalWithHttpMessagesAsync(parameters, location, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ExportRequestRateByIntervalWithHttpMessagesAsync(location, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -70,15 +70,15 @@ public static LogAnalyticsOperationResult ExportRequestRateByInterval(this ILogA /// /// The operations group for this extension method. /// - /// - /// Parameters supplied to the LogAnalytics getThrottledRequests Api. - /// /// - /// The location upon which virtual-machine-sizes is queried. + /// The name of Azure region. + /// + /// + /// The request body /// - public static LogAnalyticsOperationResult ExportThrottledRequests(this ILogAnalyticsOperations operations, ThrottledRequestsInput parameters, string location) + public static LogAnalyticsOperationResult ExportThrottledRequests(this ILogAnalyticsOperations operations, string location, ThrottledRequestsInput parameters) { - return operations.ExportThrottledRequestsAsync(parameters, location).GetAwaiter().GetResult(); + return operations.ExportThrottledRequestsAsync(location, parameters).GetAwaiter().GetResult(); } /// @@ -88,18 +88,18 @@ public static LogAnalyticsOperationResult ExportThrottledRequests(this ILogAnaly /// /// The operations group for this extension method. /// - /// - /// Parameters supplied to the LogAnalytics getThrottledRequests Api. - /// /// - /// The location upon which virtual-machine-sizes is queried. + /// The name of Azure region. + /// + /// + /// The request body /// /// /// The cancellation token. /// - public static async Task ExportThrottledRequestsAsync(this ILogAnalyticsOperations operations, ThrottledRequestsInput parameters, string location, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ExportThrottledRequestsAsync(this ILogAnalyticsOperations operations, string location, ThrottledRequestsInput parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ExportThrottledRequestsWithHttpMessagesAsync(parameters, location, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ExportThrottledRequestsWithHttpMessagesAsync(location, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -112,15 +112,15 @@ public static LogAnalyticsOperationResult ExportThrottledRequests(this ILogAnaly /// /// The operations group for this extension method. /// + /// + /// The name of Azure region. + /// /// /// Parameters supplied to the LogAnalytics getRequestRateByInterval Api. /// - /// - /// The location upon which virtual-machine-sizes is queried. - /// - public static LogAnalyticsOperationResult BeginExportRequestRateByInterval(this ILogAnalyticsOperations operations, RequestRateByIntervalInput parameters, string location) + public static LogAnalyticsOperationResult BeginExportRequestRateByInterval(this ILogAnalyticsOperations operations, string location, RequestRateByIntervalInput parameters) { - return operations.BeginExportRequestRateByIntervalAsync(parameters, location).GetAwaiter().GetResult(); + return operations.BeginExportRequestRateByIntervalAsync(location, parameters).GetAwaiter().GetResult(); } /// @@ -130,18 +130,18 @@ public static LogAnalyticsOperationResult BeginExportRequestRateByInterval(this /// /// The operations group for this extension method. /// + /// + /// The name of Azure region. + /// /// /// Parameters supplied to the LogAnalytics getRequestRateByInterval Api. /// - /// - /// The location upon which virtual-machine-sizes is queried. - /// /// /// The cancellation token. /// - public static async Task BeginExportRequestRateByIntervalAsync(this ILogAnalyticsOperations operations, RequestRateByIntervalInput parameters, string location, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginExportRequestRateByIntervalAsync(this ILogAnalyticsOperations operations, string location, RequestRateByIntervalInput parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginExportRequestRateByIntervalWithHttpMessagesAsync(parameters, location, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginExportRequestRateByIntervalWithHttpMessagesAsync(location, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -154,15 +154,15 @@ public static LogAnalyticsOperationResult BeginExportRequestRateByInterval(this /// /// The operations group for this extension method. /// - /// - /// Parameters supplied to the LogAnalytics getThrottledRequests Api. - /// /// - /// The location upon which virtual-machine-sizes is queried. + /// The name of Azure region. + /// + /// + /// The request body /// - public static LogAnalyticsOperationResult BeginExportThrottledRequests(this ILogAnalyticsOperations operations, ThrottledRequestsInput parameters, string location) + public static LogAnalyticsOperationResult BeginExportThrottledRequests(this ILogAnalyticsOperations operations, string location, ThrottledRequestsInput parameters) { - return operations.BeginExportThrottledRequestsAsync(parameters, location).GetAwaiter().GetResult(); + return operations.BeginExportThrottledRequestsAsync(location, parameters).GetAwaiter().GetResult(); } /// @@ -172,18 +172,18 @@ public static LogAnalyticsOperationResult BeginExportThrottledRequests(this ILog /// /// The operations group for this extension method. /// - /// - /// Parameters supplied to the LogAnalytics getThrottledRequests Api. - /// /// - /// The location upon which virtual-machine-sizes is queried. + /// The name of Azure region. + /// + /// + /// The request body /// /// /// The cancellation token. /// - public static async Task BeginExportThrottledRequestsAsync(this ILogAnalyticsOperations operations, ThrottledRequestsInput parameters, string location, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginExportThrottledRequestsAsync(this ILogAnalyticsOperations operations, string location, ThrottledRequestsInput parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginExportThrottledRequestsWithHttpMessagesAsync(parameters, location, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginExportThrottledRequestsWithHttpMessagesAsync(location, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/AccessUri.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/AccessUri.cs index 722ecd930dce..66610d618fe2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/AccessUri.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/AccessUri.cs @@ -32,10 +32,13 @@ public AccessUri() /// A SAS uri for accessing a disk. /// A SAS uri for accessing a VM /// guest state. - public AccessUri(string accessSAS = default(string), string securityDataAccessSAS = default(string)) + /// A SAS uri for accessing a + /// VM metadata. + public AccessUri(string accessSAS = default(string), string securityDataAccessSAS = default(string), string securityMetadataAccessSAS = default(string)) { AccessSAS = accessSAS; SecurityDataAccessSAS = securityDataAccessSAS; + SecurityMetadataAccessSAS = securityMetadataAccessSAS; CustomInit(); } @@ -56,5 +59,11 @@ public AccessUri() [JsonProperty(PropertyName = "securityDataAccessSAS")] public string SecurityDataAccessSAS { get; private set; } + /// + /// Gets a SAS uri for accessing a VM metadata. + /// + [JsonProperty(PropertyName = "securityMetadataAccessSAS")] + public string SecurityMetadataAccessSAS { get; private set; } + } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceOsProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/AvailabilityPolicy.cs similarity index 50% rename from src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceOsProfile.cs rename to src/Compute/Compute.Management.Sdk/Generated/Models/AvailabilityPolicy.cs index 012e60e27a47..24b267cad5a8 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceOsProfile.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/AvailabilityPolicy.cs @@ -11,31 +11,31 @@ namespace Microsoft.Azure.Management.Compute.Models { using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; using System.Linq; /// - /// Describes the OS profile for the cloud service. + /// In the case of an availability or connectivity issue with the data + /// disk, specify the behavior of your VM /// - public partial class CloudServiceOsProfile + public partial class AvailabilityPolicy { /// - /// Initializes a new instance of the CloudServiceOsProfile class. + /// Initializes a new instance of the AvailabilityPolicy class. /// - public CloudServiceOsProfile() + public AvailabilityPolicy() { CustomInit(); } /// - /// Initializes a new instance of the CloudServiceOsProfile class. + /// Initializes a new instance of the AvailabilityPolicy class. /// - /// Specifies set of certificates that should be - /// installed onto the role instances. - public CloudServiceOsProfile(IList secrets = default(IList)) + /// Determines on how to handle disks + /// with slow I/O. Possible values include: 'None', + /// 'AutomaticReattach' + public AvailabilityPolicy(string actionOnDiskDelay = default(string)) { - Secrets = secrets; + ActionOnDiskDelay = actionOnDiskDelay; CustomInit(); } @@ -45,11 +45,11 @@ public CloudServiceOsProfile() partial void CustomInit(); /// - /// Gets or sets specifies set of certificates that should be installed - /// onto the role instances. + /// Gets or sets determines on how to handle disks with slow I/O. + /// Possible values include: 'None', 'AutomaticReattach' /// - [JsonProperty(PropertyName = "secrets")] - public IList Secrets { get; set; } + [JsonProperty(PropertyName = "actionOnDiskDelay")] + public string ActionOnDiskDelay { get; set; } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/AvailabilityPolicyDiskDelay.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/AvailabilityPolicyDiskDelay.cs new file mode 100644 index 000000000000..7bba456136fe --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/AvailabilityPolicyDiskDelay.cs @@ -0,0 +1,30 @@ +// +// 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 +{ + + /// + /// Defines values for AvailabilityPolicyDiskDelay. + /// + public static class AvailabilityPolicyDiskDelay + { + /// + /// Defaults to behavior without av policy specified, which is VM + /// restart upon slow disk io. + /// + public const string None = "None"; + /// + /// Upon a disk io failure or slow response, try detaching then + /// reattaching the disk. + /// + public const string AutomaticReattach = "AutomaticReattach"; + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/AzureEntityResource.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/AzureEntityResource.cs new file mode 100644 index 000000000000..cf6fcf922afc --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/AzureEntityResource.cs @@ -0,0 +1,73 @@ +// +// 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.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Entity Resource + /// + /// + /// The resource model definition for an Azure Resource Manager resource + /// with an etag. + /// + public partial class AzureEntityResource : ResourceOriginal + { + /// + /// Initializes a new instance of the AzureEntityResource class. + /// + public AzureEntityResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AzureEntityResource class. + /// + /// Resource location + /// Resource Id + /// Resource name + /// Resource type + /// Resource tags. + /// Resource Etag. + public AzureEntityResource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string etag = default(string)) + : base(location, id, name, type, tags) + { + Etag = etag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource Etag. + /// + [JsonProperty(PropertyName = "etag")] + public string Etag { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CapacityReservation.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CapacityReservation.cs index e3292cf78002..d23bd2fb6d48 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CapacityReservation.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/CapacityReservation.cs @@ -67,13 +67,7 @@ public CapacityReservation() /// Specifies the time at which the Capacity /// Reservation resource was created. Minimum api-version: /// 2021-11-01. - /// Availability Zone to use for this capacity - /// reservation. The zone has to be single value and also should be - /// part for the list of zones specified during the capacity - /// reservation group creation. The zone can be assigned only during - /// creation. If not provided, the reservation supports only non-zonal - /// deployments. If provided, enforces VM/VMSS using this capacity - /// reservation to be in same zone. + /// The availability zones. public CapacityReservation(string location, Sku sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string reservationId = default(string), int? platformFaultDomainCount = default(int?), IList virtualMachinesAssociated = default(IList), System.DateTime? provisioningTime = default(System.DateTime?), string provisioningState = default(string), CapacityReservationInstanceView instanceView = default(CapacityReservationInstanceView), System.DateTime? timeCreated = default(System.DateTime?), IList zones = default(IList)) : base(location, id, name, type, tags) { @@ -157,13 +151,7 @@ public CapacityReservation() public Sku Sku { get; set; } /// - /// Gets or sets availability Zone to use for this capacity - /// reservation. The zone has to be single value and also should be - /// part for the list of zones specified during the capacity - /// reservation group creation. The zone can be assigned only during - /// creation. If not provided, the reservation supports only non-zonal - /// deployments. If provided, enforces VM/VMSS using this capacity - /// reservation to be in same zone. + /// Gets or sets the availability zones. /// [JsonProperty(PropertyName = "zones")] public IList Zones { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CapacityReservationGroup.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CapacityReservationGroup.cs index a565ecfbaee3..f81176fd4841 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CapacityReservationGroup.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/CapacityReservationGroup.cs @@ -60,11 +60,7 @@ public CapacityReservationGroup() /// relationship established between the AAD tenants. **Note:** Minimum /// api-version: 2023-09-01. Please refer to /// https://aka.ms/computereservationsharing for more details. - /// Availability Zones to use for this capacity - /// reservation group. The zones can be assigned only during creation. - /// If not provided, the group supports only regional resources in the - /// region. If provided, enforces each capacity reservation in the - /// group to be in one of the zones. + /// The availability zones. public CapacityReservationGroup(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList capacityReservations = default(IList), IList virtualMachinesAssociated = default(IList), CapacityReservationGroupInstanceView instanceView = default(CapacityReservationGroupInstanceView), ResourceSharingProfile sharingProfile = default(ResourceSharingProfile), IList zones = default(IList)) : base(location, id, name, type, tags) { @@ -117,11 +113,7 @@ public CapacityReservationGroup() public ResourceSharingProfile SharingProfile { get; set; } /// - /// Gets or sets availability Zones to use for this capacity - /// reservation group. The zones can be assigned only during creation. - /// If not provided, the group supports only regional resources in the - /// region. If provided, enforces each capacity reservation in the - /// group to be in one of the zones. + /// Gets or sets the availability zones. /// [JsonProperty(PropertyName = "zones")] public IList Zones { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CapacityReservationsCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CapacityReservationsCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..4d4ab8af6544 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/CapacityReservationsCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class CapacityReservationsCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// CapacityReservationsCreateOrUpdateHeaders class. + /// + public CapacityReservationsCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// CapacityReservationsCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public CapacityReservationsCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceSlotType.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CheckNameAvailabilityReason.cs similarity index 67% rename from src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceSlotType.cs rename to src/Compute/Compute.Management.Sdk/Generated/Models/CheckNameAvailabilityReason.cs index c6254132936e..37cabfa8315e 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceSlotType.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/CheckNameAvailabilityReason.cs @@ -12,11 +12,11 @@ namespace Microsoft.Azure.Management.Compute.Models { /// - /// Defines values for CloudServiceSlotType. + /// Defines values for CheckNameAvailabilityReason. /// - public static class CloudServiceSlotType + public static class CheckNameAvailabilityReason { - public const string Production = "Production"; - public const string Staging = "Staging"; + public const string Invalid = "Invalid"; + public const string AlreadyExists = "AlreadyExists"; } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRoleProfileProperties.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CheckNameAvailabilityRequest.cs similarity index 56% rename from src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRoleProfileProperties.cs rename to src/Compute/Compute.Management.Sdk/Generated/Models/CheckNameAvailabilityRequest.cs index 47db1e0408aa..539b17b58c46 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRoleProfileProperties.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/CheckNameAvailabilityRequest.cs @@ -14,28 +14,30 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Describes the role properties. + /// The check availability request body. /// - public partial class CloudServiceRoleProfileProperties + public partial class CheckNameAvailabilityRequest { /// - /// Initializes a new instance of the CloudServiceRoleProfileProperties + /// Initializes a new instance of the CheckNameAvailabilityRequest /// class. /// - public CloudServiceRoleProfileProperties() + public CheckNameAvailabilityRequest() { CustomInit(); } /// - /// Initializes a new instance of the CloudServiceRoleProfileProperties + /// Initializes a new instance of the CheckNameAvailabilityRequest /// class. /// - /// Resource name. - public CloudServiceRoleProfileProperties(string name = default(string), CloudServiceRoleSku sku = default(CloudServiceRoleSku)) + /// The name of the resource for which availability + /// needs to be checked. + /// The resource type. + public CheckNameAvailabilityRequest(string name = default(string), string type = default(string)) { Name = name; - Sku = sku; + Type = type; CustomInit(); } @@ -45,15 +47,17 @@ public CloudServiceRoleProfileProperties() partial void CustomInit(); /// - /// Gets or sets resource name. + /// Gets or sets the name of the resource for which availability needs + /// to be checked. /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// + /// Gets or sets the resource type. /// - [JsonProperty(PropertyName = "sku")] - public CloudServiceRoleSku Sku { get; set; } + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CheckNameAvailabilityResponse.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CheckNameAvailabilityResponse.cs new file mode 100644 index 000000000000..b1c9c28aa1d9 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/CheckNameAvailabilityResponse.cs @@ -0,0 +1,74 @@ +// +// 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; + + /// + /// The check availability result. + /// + public partial class CheckNameAvailabilityResponse + { + /// + /// Initializes a new instance of the CheckNameAvailabilityResponse + /// class. + /// + public CheckNameAvailabilityResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CheckNameAvailabilityResponse + /// class. + /// + /// Indicates if the resource name is + /// available. + /// The reason why the given name is not + /// available. Possible values include: 'Invalid', + /// 'AlreadyExists' + /// Detailed reason why the given name is + /// available. + public CheckNameAvailabilityResponse(bool? nameAvailable = default(bool?), string reason = default(string), string message = default(string)) + { + NameAvailable = nameAvailable; + Reason = reason; + Message = message; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets indicates if the resource name is available. + /// + [JsonProperty(PropertyName = "nameAvailable")] + public bool? NameAvailable { get; set; } + + /// + /// Gets or sets the reason why the given name is not available. + /// Possible values include: 'Invalid', 'AlreadyExists' + /// + [JsonProperty(PropertyName = "reason")] + public string Reason { get; set; } + + /// + /// Gets or sets detailed reason why the given name is available. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudService.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CloudService.cs deleted file mode 100644 index eb81b080bd4c..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudService.cs +++ /dev/null @@ -1,124 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Describes the cloud service. - /// - public partial class CloudService : IResource - { - /// - /// Initializes a new instance of the CloudService class. - /// - public CloudService() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudService class. - /// - /// Resource location. - /// Resource Id. - /// Resource name. - /// Resource type. - /// Resource tags. - /// List of logical availability zone of the - /// resource. List should contain only 1 zone where cloud service - /// should be provisioned. This field is optional. - public CloudService(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), CloudServiceProperties properties = default(CloudServiceProperties), SystemData systemData = default(SystemData), IList zones = default(IList)) - { - Id = id; - Name = name; - Type = type; - Location = location; - Tags = tags; - Properties = properties; - SystemData = systemData; - Zones = zones; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets resource Id. - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } - - /// - /// Gets resource name. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets resource type. - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } - - /// - /// Gets or sets resource location. - /// - [JsonProperty(PropertyName = "location")] - public string Location { get; set; } - - /// - /// Gets or sets resource tags. - /// - [JsonProperty(PropertyName = "tags")] - public IDictionary Tags { get; set; } - - /// - /// - [JsonProperty(PropertyName = "properties")] - public CloudServiceProperties Properties { get; set; } - - /// - /// - [JsonProperty(PropertyName = "systemData")] - public SystemData SystemData { get; set; } - - /// - /// Gets or sets list of logical availability zone of the resource. - /// List should contain only 1 zone where cloud service should be - /// provisioned. This field is optional. - /// - [JsonProperty(PropertyName = "zones")] - public IList Zones { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Location"); - } - } - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceExtensionProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceExtensionProfile.cs deleted file mode 100644 index 4458559f7cbc..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceExtensionProfile.cs +++ /dev/null @@ -1,56 +0,0 @@ -// -// 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.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Describes a cloud service extension profile. - /// - public partial class CloudServiceExtensionProfile - { - /// - /// Initializes a new instance of the CloudServiceExtensionProfile - /// class. - /// - public CloudServiceExtensionProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceExtensionProfile - /// class. - /// - /// List of extensions for the cloud - /// service. - public CloudServiceExtensionProfile(IList extensions = default(IList)) - { - Extensions = extensions; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets list of extensions for the cloud service. - /// - [JsonProperty(PropertyName = "extensions")] - public IList Extensions { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceExtensionProperties.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceExtensionProperties.cs deleted file mode 100644 index 0b77cdb93eaf..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceExtensionProperties.cs +++ /dev/null @@ -1,179 +0,0 @@ -// -// 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.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Extension Properties. - /// - public partial class CloudServiceExtensionProperties - { - /// - /// Initializes a new instance of the CloudServiceExtensionProperties - /// class. - /// - public CloudServiceExtensionProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceExtensionProperties - /// class. - /// - /// The name of the extension handler - /// publisher. - /// Specifies the type of the extension. - /// Specifies the version of the - /// extension. Specifies the version of the extension. If this element - /// is not specified or an asterisk (*) is used as the value, the - /// latest version of the extension is used. If the value is specified - /// with a major version number and an asterisk as the minor version - /// number (X.), the latest minor version of the specified major - /// version is selected. If a major version number and a minor version - /// number are specified (X.Y), the specific extension version is - /// selected. If a version is specified, an auto-upgrade is performed - /// on the role instance. - /// Explicitly specify whether - /// platform can automatically upgrade typeHandlerVersion to higher - /// minor versions when they become available. - /// Public settings for the extension. For JSON - /// extensions, this is the JSON settings for the extension. For XML - /// Extension (like RDP), this is the XML setting for the - /// extension. - /// Protected settings for the - /// extension which are encrypted before sent to the role - /// instance. - /// Tag to force apply the provided public - /// and protected settings. - /// Changing the tag value allows for re-running the extension without - /// changing any of the public or protected settings. - /// If forceUpdateTag is not changed, updates to public or protected - /// settings would still be applied by the handler. - /// If neither forceUpdateTag nor any of public or protected settings - /// change, extension would flow to the role instance with the same - /// sequence-number, and - /// it is up to handler implementation whether to re-run it or - /// not - /// The provisioning state, which only - /// appears in the response. - /// Optional list of roles to apply this - /// extension. If property is not specified or '*' is specified, - /// extension is applied to all roles in the cloud service. - public CloudServiceExtensionProperties(string publisher = default(string), string type = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), object settings = default(object), object protectedSettings = default(object), CloudServiceVaultAndSecretReference protectedSettingsFromKeyVault = default(CloudServiceVaultAndSecretReference), string forceUpdateTag = default(string), string provisioningState = default(string), IList rolesAppliedTo = default(IList)) - { - Publisher = publisher; - Type = type; - TypeHandlerVersion = typeHandlerVersion; - AutoUpgradeMinorVersion = autoUpgradeMinorVersion; - Settings = settings; - ProtectedSettings = protectedSettings; - ProtectedSettingsFromKeyVault = protectedSettingsFromKeyVault; - ForceUpdateTag = forceUpdateTag; - ProvisioningState = provisioningState; - RolesAppliedTo = rolesAppliedTo; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the name of the extension handler publisher. - /// - [JsonProperty(PropertyName = "publisher")] - public string Publisher { get; set; } - - /// - /// Gets or sets specifies the type of the extension. - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; set; } - - /// - /// Gets or sets specifies the version of the extension. Specifies the - /// version of the extension. If this element is not specified or an - /// asterisk (*) is used as the value, the latest version of the - /// extension is used. If the value is specified with a major version - /// number and an asterisk as the minor version number (X.), the latest - /// minor version of the specified major version is selected. If a - /// major version number and a minor version number are specified - /// (X.Y), the specific extension version is selected. If a version is - /// specified, an auto-upgrade is performed on the role instance. - /// - [JsonProperty(PropertyName = "typeHandlerVersion")] - public string TypeHandlerVersion { get; set; } - - /// - /// Gets or sets explicitly specify whether platform can automatically - /// upgrade typeHandlerVersion to higher minor versions when they - /// become available. - /// - [JsonProperty(PropertyName = "autoUpgradeMinorVersion")] - public bool? AutoUpgradeMinorVersion { get; set; } - - /// - /// Gets or sets public settings for the extension. For JSON - /// extensions, this is the JSON settings for the extension. For XML - /// Extension (like RDP), this is the XML setting for the extension. - /// - [JsonProperty(PropertyName = "settings")] - public object Settings { get; set; } - - /// - /// Gets or sets protected settings for the extension which are - /// encrypted before sent to the role instance. - /// - [JsonProperty(PropertyName = "protectedSettings")] - public object ProtectedSettings { get; set; } - - /// - /// - [JsonProperty(PropertyName = "protectedSettingsFromKeyVault")] - public CloudServiceVaultAndSecretReference ProtectedSettingsFromKeyVault { get; set; } - - /// - /// Gets or sets tag to force apply the provided public and protected - /// settings. - /// Changing the tag value allows for re-running the extension without - /// changing any of the public or protected settings. - /// If forceUpdateTag is not changed, updates to public or protected - /// settings would still be applied by the handler. - /// If neither forceUpdateTag nor any of public or protected settings - /// change, extension would flow to the role instance with the same - /// sequence-number, and - /// it is up to handler implementation whether to re-run it or not - /// - [JsonProperty(PropertyName = "forceUpdateTag")] - public string ForceUpdateTag { get; set; } - - /// - /// Gets the provisioning state, which only appears in the response. - /// - [JsonProperty(PropertyName = "provisioningState")] - public string ProvisioningState { get; private set; } - - /// - /// Gets or sets optional list of roles to apply this extension. If - /// property is not specified or '*' is specified, extension is applied - /// to all roles in the cloud service. - /// - [JsonProperty(PropertyName = "rolesAppliedTo")] - public IList RolesAppliedTo { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceInstanceView.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceInstanceView.cs deleted file mode 100644 index 8aec884b94ef..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceInstanceView.cs +++ /dev/null @@ -1,82 +0,0 @@ -// -// 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.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// InstanceView of CloudService as a whole - /// - public partial class CloudServiceInstanceView - { - /// - /// Initializes a new instance of the CloudServiceInstanceView class. - /// - public CloudServiceInstanceView() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceInstanceView class. - /// - /// The version of the SDK that was used to - /// generate the package for the cloud service. - /// Specifies a list of unique identifiers - /// generated internally for the cloud service. <br /><br - /// /> NOTE: If you are using Azure Diagnostics extension, this - /// property can be used as 'DeploymentId' for querying - /// details. - public CloudServiceInstanceView(InstanceViewStatusesSummary roleInstance = default(InstanceViewStatusesSummary), string sdkVersion = default(string), IList privateIds = default(IList), IList statuses = default(IList)) - { - RoleInstance = roleInstance; - SdkVersion = sdkVersion; - PrivateIds = privateIds; - Statuses = statuses; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// - [JsonProperty(PropertyName = "roleInstance")] - public InstanceViewStatusesSummary RoleInstance { get; set; } - - /// - /// Gets the version of the SDK that was used to generate the package - /// for the cloud service. - /// - [JsonProperty(PropertyName = "sdkVersion")] - public string SdkVersion { get; private set; } - - /// - /// Gets specifies a list of unique identifiers generated internally - /// for the cloud service. &lt;br /&gt;&lt;br /&gt; - /// NOTE: If you are using Azure Diagnostics extension, this property - /// can be used as 'DeploymentId' for querying details. - /// - [JsonProperty(PropertyName = "privateIds")] - public IList PrivateIds { get; private set; } - - /// - /// - [JsonProperty(PropertyName = "statuses")] - public IList Statuses { get; private set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceNetworkProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceNetworkProfile.cs deleted file mode 100644 index 2e4e4607d809..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceNetworkProfile.cs +++ /dev/null @@ -1,83 +0,0 @@ -// -// 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.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Network Profile for the cloud service. - /// - public partial class CloudServiceNetworkProfile - { - /// - /// Initializes a new instance of the CloudServiceNetworkProfile class. - /// - public CloudServiceNetworkProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceNetworkProfile class. - /// - /// List of Load balancer - /// configurations. Cloud service can have up to two load balancer - /// configurations, corresponding to a Public Load Balancer and an - /// Internal Load Balancer. - /// Possible values include: 'Production', - /// 'Staging' - /// The id reference of the cloud - /// service containing the target IP with which the subject cloud - /// service can perform a swap. This property cannot be updated once it - /// is set. The swappable cloud service referred by this id must be - /// present otherwise an error will be thrown. - public CloudServiceNetworkProfile(IList loadBalancerConfigurations = default(IList), string slotType = default(string), SubResource swappableCloudService = default(SubResource)) - { - LoadBalancerConfigurations = loadBalancerConfigurations; - SlotType = slotType; - SwappableCloudService = swappableCloudService; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets list of Load balancer configurations. Cloud service - /// can have up to two load balancer configurations, corresponding to a - /// Public Load Balancer and an Internal Load Balancer. - /// - [JsonProperty(PropertyName = "loadBalancerConfigurations")] - public IList LoadBalancerConfigurations { get; set; } - - /// - /// Gets or sets possible values include: 'Production', 'Staging' - /// - [JsonProperty(PropertyName = "slotType")] - public string SlotType { get; set; } - - /// - /// Gets or sets the id reference of the cloud service containing the - /// target IP with which the subject cloud service can perform a swap. - /// This property cannot be updated once it is set. The swappable cloud - /// service referred by this id must be present otherwise an error will - /// be thrown. - /// - [JsonProperty(PropertyName = "swappableCloudService")] - public SubResource SwappableCloudService { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceProperties.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceProperties.cs deleted file mode 100644 index 487ee426d013..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceProperties.cs +++ /dev/null @@ -1,173 +0,0 @@ -// -// 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; - - /// - /// Cloud service properties - /// - public partial class CloudServiceProperties - { - /// - /// Initializes a new instance of the CloudServiceProperties class. - /// - public CloudServiceProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceProperties class. - /// - /// Specifies a URL that refers to the - /// location of the service package in the Blob service. The service - /// package URL can be Shared Access Signature (SAS) URI from any - /// storage account. - /// This is a write-only property and is not returned in GET - /// calls. - /// Specifies the XML service configuration - /// (.cscfg) for the cloud service. - /// Specifies a URL that refers to the - /// location of the service configuration in the Blob service. The - /// service package URL can be Shared Access Signature (SAS) URI from - /// any storage account. - /// This is a write-only property and is not returned in GET - /// calls. - /// (Optional) Indicates whether to - /// start the cloud service immediately after it is created. The - /// default value is `true`. - /// If false, the service model is still deployed, but the code is not - /// run immediately. Instead, the service is PoweredOff until you call - /// Start, at which time the service will be started. A deployed - /// service still incurs charges, even if it is poweredoff. - /// (Optional) Indicates whether the - /// role sku properties (roleProfile.roles.sku) specified in the - /// model/template should override the role instance count and vm size - /// specified in the .cscfg and .csdef respectively. - /// The default value is `false`. - /// Possible values include: 'Auto', - /// 'Manual', 'Simultaneous' - /// The provisioning state, which only - /// appears in the response. - /// The unique identifier for the cloud - /// service. - public CloudServiceProperties(string packageUrl = default(string), string configuration = default(string), string configurationUrl = default(string), bool? startCloudService = default(bool?), bool? allowModelOverride = default(bool?), string upgradeMode = default(string), CloudServiceRoleProfile roleProfile = default(CloudServiceRoleProfile), CloudServiceOsProfile osProfile = default(CloudServiceOsProfile), CloudServiceNetworkProfile networkProfile = default(CloudServiceNetworkProfile), CloudServiceExtensionProfile extensionProfile = default(CloudServiceExtensionProfile), string provisioningState = default(string), string uniqueId = default(string)) - { - PackageUrl = packageUrl; - Configuration = configuration; - ConfigurationUrl = configurationUrl; - StartCloudService = startCloudService; - AllowModelOverride = allowModelOverride; - UpgradeMode = upgradeMode; - RoleProfile = roleProfile; - OsProfile = osProfile; - NetworkProfile = networkProfile; - ExtensionProfile = extensionProfile; - ProvisioningState = provisioningState; - UniqueId = uniqueId; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets specifies a URL that refers to the location of the - /// service package in the Blob service. The service package URL can be - /// Shared Access Signature (SAS) URI from any storage account. - /// This is a write-only property and is not returned in GET calls. - /// - [JsonProperty(PropertyName = "packageUrl")] - public string PackageUrl { get; set; } - - /// - /// Gets or sets specifies the XML service configuration (.cscfg) for - /// the cloud service. - /// - [JsonProperty(PropertyName = "configuration")] - public string Configuration { get; set; } - - /// - /// Gets or sets specifies a URL that refers to the location of the - /// service configuration in the Blob service. The service package URL - /// can be Shared Access Signature (SAS) URI from any storage account. - /// This is a write-only property and is not returned in GET calls. - /// - [JsonProperty(PropertyName = "configurationUrl")] - public string ConfigurationUrl { get; set; } - - /// - /// Gets or sets (Optional) Indicates whether to start the cloud - /// service immediately after it is created. The default value is - /// `true`. - /// If false, the service model is still deployed, but the code is not - /// run immediately. Instead, the service is PoweredOff until you call - /// Start, at which time the service will be started. A deployed - /// service still incurs charges, even if it is poweredoff. - /// - [JsonProperty(PropertyName = "startCloudService")] - public bool? StartCloudService { get; set; } - - /// - /// Gets or sets (Optional) Indicates whether the role sku properties - /// (roleProfile.roles.sku) specified in the model/template should - /// override the role instance count and vm size specified in the - /// .cscfg and .csdef respectively. - /// The default value is `false`. - /// - [JsonProperty(PropertyName = "allowModelOverride")] - public bool? AllowModelOverride { get; set; } - - /// - /// Gets or sets possible values include: 'Auto', 'Manual', - /// 'Simultaneous' - /// - [JsonProperty(PropertyName = "upgradeMode")] - public string UpgradeMode { get; set; } - - /// - /// - [JsonProperty(PropertyName = "roleProfile")] - public CloudServiceRoleProfile RoleProfile { get; set; } - - /// - /// - [JsonProperty(PropertyName = "osProfile")] - public CloudServiceOsProfile OsProfile { get; set; } - - /// - /// - [JsonProperty(PropertyName = "networkProfile")] - public CloudServiceNetworkProfile NetworkProfile { get; set; } - - /// - /// - [JsonProperty(PropertyName = "extensionProfile")] - public CloudServiceExtensionProfile ExtensionProfile { get; set; } - - /// - /// Gets the provisioning state, which only appears in the response. - /// - [JsonProperty(PropertyName = "provisioningState")] - public string ProvisioningState { get; private set; } - - /// - /// Gets the unique identifier for the cloud service. - /// - [JsonProperty(PropertyName = "uniqueId")] - public string UniqueId { get; private set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRole.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRole.cs deleted file mode 100644 index ed30d6cb8090..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRole.cs +++ /dev/null @@ -1,87 +0,0 @@ -// -// 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; - - /// - /// Describes a role of the cloud service. - /// - public partial class CloudServiceRole - { - /// - /// Initializes a new instance of the CloudServiceRole class. - /// - public CloudServiceRole() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceRole class. - /// - /// Resource id - /// Resource name - /// Resource type - /// Resource location - public CloudServiceRole(string id = default(string), string name = default(string), string type = default(string), string location = default(string), CloudServiceRoleSku sku = default(CloudServiceRoleSku), CloudServiceRoleProperties properties = default(CloudServiceRoleProperties)) - { - Id = id; - Name = name; - Type = type; - Location = location; - Sku = sku; - Properties = properties; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets resource id - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } - - /// - /// Gets resource name - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets resource type - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } - - /// - /// Gets resource location - /// - [JsonProperty(PropertyName = "location")] - public string Location { get; private set; } - - /// - /// - [JsonProperty(PropertyName = "sku")] - public CloudServiceRoleSku Sku { get; set; } - - /// - /// - [JsonProperty(PropertyName = "properties")] - public CloudServiceRoleProperties Properties { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRoleProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRoleProfile.cs deleted file mode 100644 index 6ec87974a474..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRoleProfile.cs +++ /dev/null @@ -1,53 +0,0 @@ -// -// 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.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Describes the role profile for the cloud service. - /// - public partial class CloudServiceRoleProfile - { - /// - /// Initializes a new instance of the CloudServiceRoleProfile class. - /// - public CloudServiceRoleProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceRoleProfile class. - /// - /// List of roles for the cloud service. - public CloudServiceRoleProfile(IList roles = default(IList)) - { - Roles = roles; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets list of roles for the cloud service. - /// - [JsonProperty(PropertyName = "roles")] - public IList Roles { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRoleSku.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRoleSku.cs deleted file mode 100644 index b0bbae8e08a5..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRoleSku.cs +++ /dev/null @@ -1,78 +0,0 @@ -// -// 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; - - /// - /// Describes the cloud service role sku. - /// - public partial class CloudServiceRoleSku - { - /// - /// Initializes a new instance of the CloudServiceRoleSku class. - /// - public CloudServiceRoleSku() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceRoleSku class. - /// - /// The sku name. NOTE: If the new SKU is not - /// supported on the hardware the cloud service is currently on, you - /// need to delete and recreate the cloud service or move back to the - /// old sku. - /// Specifies the tier of the cloud service. - /// Possible Values are <br /><br /> **Standard** <br - /// /><br /> **Basic** - /// Specifies the number of role instances in - /// the cloud service. - public CloudServiceRoleSku(string name = default(string), string tier = default(string), long? capacity = default(long?)) - { - Name = name; - Tier = tier; - Capacity = capacity; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the sku name. NOTE: If the new SKU is not supported on - /// the hardware the cloud service is currently on, you need to delete - /// and recreate the cloud service or move back to the old sku. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// Gets or sets specifies the tier of the cloud service. Possible - /// Values are &lt;br /&gt;&lt;br /&gt; **Standard** - /// &lt;br /&gt;&lt;br /&gt; **Basic** - /// - [JsonProperty(PropertyName = "tier")] - public string Tier { get; set; } - - /// - /// Gets or sets specifies the number of role instances in the cloud - /// service. - /// - [JsonProperty(PropertyName = "capacity")] - public long? Capacity { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceUpdate.cs deleted file mode 100644 index 6d1c6f76be04..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceUpdate.cs +++ /dev/null @@ -1,50 +0,0 @@ -// -// 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.Collections; - using System.Collections.Generic; - using System.Linq; - - public partial class CloudServiceUpdate - { - /// - /// Initializes a new instance of the CloudServiceUpdate class. - /// - public CloudServiceUpdate() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceUpdate class. - /// - /// Resource tags - public CloudServiceUpdate(IDictionary tags = default(IDictionary)) - { - Tags = tags; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets resource tags - /// - [JsonProperty(PropertyName = "tags")] - public IDictionary Tags { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceVaultAndSecretReference.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceVaultAndSecretReference.cs deleted file mode 100644 index 432c3e8bac84..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceVaultAndSecretReference.cs +++ /dev/null @@ -1,65 +0,0 @@ -// -// 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; - - /// - /// Protected settings for the extension, referenced using KeyVault which - /// are encrypted before sent to the role instance. - /// - public partial class CloudServiceVaultAndSecretReference - { - /// - /// Initializes a new instance of the - /// CloudServiceVaultAndSecretReference class. - /// - public CloudServiceVaultAndSecretReference() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// CloudServiceVaultAndSecretReference class. - /// - /// The ARM Resource ID of the Key - /// Vault - /// Secret URL which contains the protected - /// settings of the extension - public CloudServiceVaultAndSecretReference(SubResource sourceVault = default(SubResource), string secretUrl = default(string)) - { - SourceVault = sourceVault; - SecretUrl = secretUrl; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the ARM Resource ID of the Key Vault - /// - [JsonProperty(PropertyName = "sourceVault")] - public SubResource SourceVault { get; set; } - - /// - /// Gets or sets secret URL which contains the protected settings of - /// the extension - /// - [JsonProperty(PropertyName = "secretUrl")] - public string SecretUrl { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceVaultCertificate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceVaultCertificate.cs deleted file mode 100644 index d5643600aa3c..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceVaultCertificate.cs +++ /dev/null @@ -1,56 +0,0 @@ -// -// 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; - - /// - /// Describes a single certificate reference in a Key Vault, and where the - /// certificate should reside on the role instance. - /// - public partial class CloudServiceVaultCertificate - { - /// - /// Initializes a new instance of the CloudServiceVaultCertificate - /// class. - /// - public CloudServiceVaultCertificate() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceVaultCertificate - /// class. - /// - /// This is the URL of a certificate that - /// has been uploaded to Key Vault as a secret. - public CloudServiceVaultCertificate(string certificateUrl = default(string)) - { - CertificateUrl = certificateUrl; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets this is the URL of a certificate that has been - /// uploaded to Key Vault as a secret. - /// - [JsonProperty(PropertyName = "certificateUrl")] - public string CertificateUrl { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceVaultSecretGroup.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceVaultSecretGroup.cs deleted file mode 100644 index 38b9d2224c25..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceVaultSecretGroup.cs +++ /dev/null @@ -1,67 +0,0 @@ -// -// 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.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Describes a set of certificates which are all in the same Key Vault. - /// - public partial class CloudServiceVaultSecretGroup - { - /// - /// Initializes a new instance of the CloudServiceVaultSecretGroup - /// class. - /// - public CloudServiceVaultSecretGroup() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceVaultSecretGroup - /// class. - /// - /// The relative URL of the Key Vault - /// containing all of the certificates in VaultCertificates. - /// The list of key vault references in - /// SourceVault which contain certificates. - public CloudServiceVaultSecretGroup(SubResource sourceVault = default(SubResource), IList vaultCertificates = default(IList)) - { - SourceVault = sourceVault; - VaultCertificates = vaultCertificates; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the relative URL of the Key Vault containing all of - /// the certificates in VaultCertificates. - /// - [JsonProperty(PropertyName = "sourceVault")] - public SubResource SourceVault { get; set; } - - /// - /// Gets or sets the list of key vault references in SourceVault which - /// contain certificates. - /// - [JsonProperty(PropertyName = "vaultCertificates")] - public IList VaultCertificates { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CommunityGallery.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CommunityGallery.cs index e08e305d5bd6..2798ace25a98 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CommunityGallery.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/CommunityGallery.cs @@ -42,6 +42,10 @@ public CommunityGallery() /// gallery. /// The disclaimer for a community gallery /// resource. + /// The artifact tags of a community gallery + /// resource. + /// The metadata of community + /// gallery. public CommunityGallery(string name = default(string), string location = default(string), string type = default(string), string uniqueId = default(string), string disclaimer = default(string), IDictionary artifactTags = default(IDictionary), CommunityGalleryMetadata communityMetadata = default(CommunityGalleryMetadata)) : base(name, location, type, uniqueId) { @@ -63,11 +67,13 @@ public CommunityGallery() public string Disclaimer { get; set; } /// + /// Gets or sets the artifact tags of a community gallery resource. /// [JsonProperty(PropertyName = "properties.artifactTags")] public IDictionary ArtifactTags { get; set; } /// + /// Gets or sets the metadata of community gallery. /// [JsonProperty(PropertyName = "properties.communityMetadata")] public CommunityGalleryMetadata CommunityMetadata { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CommunityGalleryImage.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CommunityGalleryImage.cs index 7d5160916759..4db51730a94c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CommunityGalleryImage.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/CommunityGalleryImage.cs @@ -43,6 +43,8 @@ public CommunityGalleryImage() /// whether the virtual machines created under this image are /// 'Generalized' or 'Specialized'. Possible values include: /// 'Generalized', 'Specialized' + /// This is the community + /// gallery image definition identifier. /// Resource name /// Resource location /// Resource type @@ -51,11 +53,19 @@ public CommunityGalleryImage() /// The end of life date of the gallery /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. + /// The properties describe the recommended + /// machine configuration for this Image Definition. These properties + /// are updatable. + /// Describes the disallowed disk + /// types. /// The hypervisor generation of the /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' /// A list of gallery image features. - /// Possible values include: 'x64', + /// Describes the gallery image definition + /// purchase plan. This is used by marketplace images. + /// The architecture of the image. + /// Applicable to OS disks only. Possible values include: 'x64', /// 'Arm64' /// Privacy statement URI for the /// current community gallery image. @@ -63,13 +73,15 @@ public CommunityGalleryImage() /// community gallery image. /// The disclaimer for a community gallery /// resource. - public CommunityGalleryImage(OperatingSystemTypes osType, OperatingSystemStateTypes osState, CommunityGalleryImageIdentifier identifier, string name = default(string), string location = default(string), string type = default(string), string uniqueId = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), string hyperVGeneration = default(string), IList features = default(IList), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string architecture = default(string), string privacyStatementUri = default(string), string eula = default(string), string disclaimer = default(string), IDictionary artifactTags = default(IDictionary)) + /// The artifact tags of a community gallery + /// resource. + public CommunityGalleryImage(OperatingSystemTypes osType, OperatingSystemStateTypes osState, CommunityGalleryImageIdentifier communityGalleryImageIdentifier, string name = default(string), string location = default(string), string type = default(string), string uniqueId = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), string hyperVGeneration = default(string), IList features = default(IList), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string architecture = default(string), string privacyStatementUri = default(string), string eula = default(string), string disclaimer = default(string), IDictionary artifactTags = default(IDictionary)) : base(name, location, type, uniqueId) { OsType = osType; OsState = osState; EndOfLifeDate = endOfLifeDate; - Identifier = identifier; + CommunityGalleryImageIdentifier = communityGalleryImageIdentifier; Recommended = recommended; Disallowed = disallowed; HyperVGeneration = hyperVGeneration; @@ -115,16 +127,22 @@ public CommunityGalleryImage() public System.DateTime? EndOfLifeDate { get; set; } /// + /// Gets or sets this is the community gallery image definition + /// identifier. /// [JsonProperty(PropertyName = "properties.identifier")] - public CommunityGalleryImageIdentifier Identifier { get; set; } + public CommunityGalleryImageIdentifier CommunityGalleryImageIdentifier { get; set; } /// + /// Gets or sets the properties describe the recommended machine + /// configuration for this Image Definition. These properties are + /// updatable. /// [JsonProperty(PropertyName = "properties.recommended")] public RecommendedMachineConfiguration Recommended { get; set; } /// + /// Gets or sets describes the disallowed disk types. /// [JsonProperty(PropertyName = "properties.disallowed")] public Disallowed Disallowed { get; set; } @@ -143,12 +161,15 @@ public CommunityGalleryImage() public IList Features { get; set; } /// + /// Gets or sets describes the gallery image definition purchase plan. + /// This is used by marketplace images. /// [JsonProperty(PropertyName = "properties.purchasePlan")] public ImagePurchasePlan PurchasePlan { get; set; } /// - /// Gets or sets possible values include: 'x64', 'Arm64' + /// Gets or sets the architecture of the image. Applicable to OS disks + /// only. Possible values include: 'x64', 'Arm64' /// [JsonProperty(PropertyName = "properties.architecture")] public string Architecture { get; set; } @@ -174,6 +195,7 @@ public CommunityGalleryImage() public string Disclaimer { get; set; } /// + /// Gets or sets the artifact tags of a community gallery resource. /// [JsonProperty(PropertyName = "properties.artifactTags")] public IDictionary ArtifactTags { get; set; } @@ -186,9 +208,9 @@ public CommunityGalleryImage() /// public virtual void Validate() { - if (Identifier == null) + if (CommunityGalleryImageIdentifier == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "Identifier"); + throw new ValidationException(ValidationRules.CannotBeNull, "CommunityGalleryImageIdentifier"); } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CommunityGalleryImageVersion.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CommunityGalleryImageVersion.cs index bc15e894dec9..64e5c6e4a2e2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CommunityGalleryImageVersion.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/CommunityGalleryImageVersion.cs @@ -55,6 +55,8 @@ public CommunityGalleryImageVersion() /// image version. /// The disclaimer for a community gallery /// resource. + /// The artifact tags of a community gallery + /// resource. public CommunityGalleryImageVersion(string name = default(string), string location = default(string), string type = default(string), string uniqueId = default(string), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? endOfLifeDate = default(System.DateTime?), bool? excludeFromLatest = default(bool?), SharedGalleryImageVersionStorageProfile storageProfile = default(SharedGalleryImageVersionStorageProfile), string disclaimer = default(string), IDictionary artifactTags = default(IDictionary)) : base(name, location, type, uniqueId) { @@ -109,6 +111,7 @@ public CommunityGalleryImageVersion() public string Disclaimer { get; set; } /// + /// Gets or sets the artifact tags of a community gallery resource. /// [JsonProperty(PropertyName = "properties.artifactTags")] public IDictionary ArtifactTags { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/ComputeOperationValue.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ComputeOperationValue.cs deleted file mode 100644 index 56229fc0bdf1..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/ComputeOperationValue.cs +++ /dev/null @@ -1,97 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Describes the properties of a Compute Operation value. - /// - [Rest.Serialization.JsonTransformation] - public partial class ComputeOperationValue - { - /// - /// Initializes a new instance of the ComputeOperationValue class. - /// - public ComputeOperationValue() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ComputeOperationValue class. - /// - /// The origin of the compute operation. - /// The name of the compute operation. - /// The display name of the compute - /// operation. - /// The display name of the resource the - /// operation applies to. - /// The description of the operation. - /// The resource provider for the - /// operation. - public ComputeOperationValue(string origin = default(string), string name = default(string), string operation = default(string), string resource = default(string), string description = default(string), string provider = default(string)) - { - Origin = origin; - Name = name; - Operation = operation; - Resource = resource; - Description = description; - Provider = provider; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the origin of the compute operation. - /// - [JsonProperty(PropertyName = "origin")] - public string Origin { get; private set; } - - /// - /// Gets the name of the compute operation. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets the display name of the compute operation. - /// - [JsonProperty(PropertyName = "display.operation")] - public string Operation { get; private set; } - - /// - /// Gets the display name of the resource the operation applies to. - /// - [JsonProperty(PropertyName = "display.resource")] - public string Resource { get; private set; } - - /// - /// Gets the description of the operation. - /// - [JsonProperty(PropertyName = "display.description")] - public string Description { get; private set; } - - /// - /// Gets the resource provider for the operation. - /// - [JsonProperty(PropertyName = "display.provider")] - public string Provider { get; private set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CopyCompletionErrorReason.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CopyCompletionErrorReason.cs new file mode 100644 index 000000000000..e7bb79f42e13 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/CopyCompletionErrorReason.cs @@ -0,0 +1,26 @@ +// +// 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 +{ + + /// + /// Defines values for CopyCompletionErrorReason. + /// + public static class CopyCompletionErrorReason + { + /// + /// Indicates that the source snapshot was deleted while the background + /// copy of the resource created via CopyStart operation was in + /// progress. + /// + public const string CopySourceNotFound = "CopySourceNotFound"; + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceUpgradeMode.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CreatedByType.cs similarity index 61% rename from src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceUpgradeMode.cs rename to src/Compute/Compute.Management.Sdk/Generated/Models/CreatedByType.cs index 6d25f3f7cd7d..0d5f2c86410c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceUpgradeMode.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/CreatedByType.cs @@ -12,12 +12,13 @@ namespace Microsoft.Azure.Management.Compute.Models { /// - /// Defines values for CloudServiceUpgradeMode. + /// Defines values for CreatedByType. /// - public static class CloudServiceUpgradeMode + public static class CreatedByType { - public const string Auto = "Auto"; - public const string Manual = "Manual"; - public const string Simultaneous = "Simultaneous"; + public const string User = "User"; + public const string Application = "Application"; + public const string ManagedIdentity = "ManagedIdentity"; + public const string Key = "Key"; } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CreationData.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/CreationData.cs index eed6b7728889..ed2d7c36a969 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CreationData.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/CreationData.cs @@ -60,6 +60,9 @@ public CreationData() /// default. /// If createOption is ImportSecure, this /// is the URI of a blob to be imported into VM guest state. + /// If createOption is ImportSecure, + /// this is the URI of a blob to be imported into VM metadata for + /// Confidential VM. /// Set this flag to true to get a boost /// on the performance target of the disk deployed, see here on the /// respective performance target. This flag can only be set on disk @@ -71,7 +74,11 @@ public CreationData() /// a snapshot and createOption is CopyStart, the snapshot will be /// copied at a quicker speed. Possible values include: 'None', /// 'Enhanced' - public CreationData(string createOption, string storageAccountId = default(string), ImageDiskReference imageReference = default(ImageDiskReference), ImageDiskReference galleryImageReference = default(ImageDiskReference), string sourceUri = default(string), string sourceResourceId = default(string), string sourceUniqueId = default(string), long? uploadSizeBytes = default(long?), int? logicalSectorSize = default(int?), string securityDataUri = default(string), bool? performancePlus = default(bool?), string elasticSanResourceId = default(string), string provisionedBandwidthCopySpeed = default(string)) + /// For snapshots created + /// from Premium SSD v2 or Ultra disk, this property determines the + /// time in minutes the snapshot is retained for instant access to + /// enable faster restore. + public CreationData(string createOption, string storageAccountId = default(string), ImageDiskReference imageReference = default(ImageDiskReference), ImageDiskReference galleryImageReference = default(ImageDiskReference), string sourceUri = default(string), string sourceResourceId = default(string), string sourceUniqueId = default(string), long? uploadSizeBytes = default(long?), int? logicalSectorSize = default(int?), string securityDataUri = default(string), string securityMetadataUri = default(string), bool? performancePlus = default(bool?), string elasticSanResourceId = default(string), string provisionedBandwidthCopySpeed = default(string), long? instantAccessDurationMinutes = default(long?)) { CreateOption = createOption; StorageAccountId = storageAccountId; @@ -83,9 +90,11 @@ public CreationData() UploadSizeBytes = uploadSizeBytes; LogicalSectorSize = logicalSectorSize; SecurityDataUri = securityDataUri; + SecurityMetadataUri = securityMetadataUri; PerformancePlus = performancePlus; ElasticSanResourceId = elasticSanResourceId; ProvisionedBandwidthCopySpeed = provisionedBandwidthCopySpeed; + InstantAccessDurationMinutes = instantAccessDurationMinutes; CustomInit(); } @@ -170,6 +179,13 @@ public CreationData() [JsonProperty(PropertyName = "securityDataUri")] public string SecurityDataUri { get; set; } + /// + /// Gets or sets if createOption is ImportSecure, this is the URI of a + /// blob to be imported into VM metadata for Confidential VM. + /// + [JsonProperty(PropertyName = "securityMetadataUri")] + public string SecurityMetadataUri { get; set; } + /// /// Gets or sets set this flag to true to get a boost on the /// performance target of the disk deployed, see here on the respective @@ -194,6 +210,14 @@ public CreationData() [JsonProperty(PropertyName = "provisionedBandwidthCopySpeed")] public string ProvisionedBandwidthCopySpeed { get; set; } + /// + /// Gets or sets for snapshots created from Premium SSD v2 or Ultra + /// disk, this property determines the time in minutes the snapshot is + /// retained for instant access to enable faster restore. + /// + [JsonProperty(PropertyName = "instantAccessDurationMinutes")] + public long? InstantAccessDurationMinutes { get; set; } + /// /// Validate the object. /// @@ -206,6 +230,13 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "CreateOption"); } + if (InstantAccessDurationMinutes != null) + { + if (InstantAccessDurationMinutes < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "InstantAccessDurationMinutes", 1); + } + } } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DataDisk.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DataDisk.cs index f671c70659f5..a9775b05d134 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DataDisk.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DataDisk.cs @@ -90,9 +90,10 @@ public DataDisk() /// virtual machine and the disk is still not released then use /// force-detach as a last resort option to detach the disk forcibly /// from the VM. All writes might not have been flushed when using this - /// detach behavior. To force-detach a data disk update toBeDetached to - /// 'true' along with setting detachOption: 'ForceDetach'. Possible - /// values include: 'ForceDetach' + /// detach behavior. **This feature is still in preview**. To + /// force-detach a data disk update toBeDetached to 'true' along with + /// setting detachOption: 'ForceDetach'. Possible values include: + /// 'ForceDetach' /// Specifies whether data disk should be /// deleted or detached upon VM deletion. Possible values are: /// **Delete.** If this value is used, the data disk is deleted when VM @@ -244,10 +245,10 @@ public DataDisk() /// complete due to an unexpected failure from the virtual machine and /// the disk is still not released then use force-detach as a last /// resort option to detach the disk forcibly from the VM. All writes - /// might not have been flushed when using this detach behavior. To - /// force-detach a data disk update toBeDetached to 'true' along with - /// setting detachOption: 'ForceDetach'. Possible values include: - /// 'ForceDetach' + /// might not have been flushed when using this detach behavior. **This + /// feature is still in preview**. To force-detach a data disk update + /// toBeDetached to 'true' along with setting detachOption: + /// 'ForceDetach'. Possible values include: 'ForceDetach' /// [JsonProperty(PropertyName = "detachOption")] public string DetachOption { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHost.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHost.cs index 6416b3b817ff..dccf79220311 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHost.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHost.cs @@ -173,13 +173,6 @@ public override void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "Sku"); } - if (PlatformFaultDomain != null) - { - if (PlatformFaultDomain < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "PlatformFaultDomain", 0); - } - } } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostGroup.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostGroup.cs index 046adc9f55a4..de0c564743c5 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostGroup.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostGroup.cs @@ -58,11 +58,7 @@ public DedicatedHostGroup() /// Enables or disables a /// capability on the dedicated host group. Minimum api-version: /// 2022-03-01. - /// Availability Zone to use for this host group. - /// Only single zone is supported. The zone can be assigned only during - /// creation. If not provided, the group supports all zones in the - /// region. If provided, enforces each host in the group to be in the - /// same zone. + /// The availability zones. public DedicatedHostGroup(string location, int platformFaultDomainCount, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList hosts = default(IList), DedicatedHostGroupInstanceView instanceView = default(DedicatedHostGroupInstanceView), bool? supportAutomaticPlacement = default(bool?), DedicatedHostGroupPropertiesAdditionalCapabilities additionalCapabilities = default(DedicatedHostGroupPropertiesAdditionalCapabilities), IList zones = default(IList)) : base(location, id, name, type, tags) { @@ -120,11 +116,7 @@ public DedicatedHostGroup() public DedicatedHostGroupPropertiesAdditionalCapabilities AdditionalCapabilities { get; set; } /// - /// Gets or sets availability Zone to use for this host group. Only - /// single zone is supported. The zone can be assigned only during - /// creation. If not provided, the group supports all zones in the - /// region. If provided, enforces each host in the group to be in the - /// same zone. + /// Gets or sets the availability zones. /// [JsonProperty(PropertyName = "zones")] public IList Zones { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostUpdate.cs index e0ce0761c029..f96ff3fe275c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostUpdate.cs @@ -64,7 +64,7 @@ public DedicatedHostUpdate() /// resizing] /// (https://docs.microsoft.com/rest/api/compute/dedicated-hosts/listavailablesizes). /// Resizing can be only used to scale up DedicatedHost. Only name is - /// required to be set. + /// required to be set. public DedicatedHostUpdate(IDictionary tags = default(IDictionary), int? platformFaultDomain = default(int?), bool? autoReplaceOnFailure = default(bool?), string hostId = default(string), IList virtualMachines = default(IList), DedicatedHostLicenseTypes? licenseType = default(DedicatedHostLicenseTypes?), System.DateTime? provisioningTime = default(System.DateTime?), string provisioningState = default(string), DedicatedHostInstanceView instanceView = default(DedicatedHostInstanceView), System.DateTime? timeCreated = default(System.DateTime?), Sku sku = default(Sku)) : base(tags) { @@ -160,21 +160,5 @@ public DedicatedHostUpdate() [JsonProperty(PropertyName = "sku")] public Sku Sku { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (PlatformFaultDomain != null) - { - if (PlatformFaultDomain < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "PlatformFaultDomain", 0); - } - } - } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostsCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostsCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..a12372f2bf5f --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostsCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class DedicatedHostsCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// DedicatedHostsCreateOrUpdateHeaders class. + /// + public DedicatedHostsCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// DedicatedHostsCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public DedicatedHostsCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostsRedeployHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostsRedeployHeaders.cs index 5de5ce24d709..51029f382882 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostsRedeployHeaders.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostsRedeployHeaders.cs @@ -31,9 +31,15 @@ public DedicatedHostsRedeployHeaders() /// Initializes a new instance of the DedicatedHostsRedeployHeaders /// class. /// - public DedicatedHostsRedeployHeaders(string location = default(string)) + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public DedicatedHostsRedeployHeaders(string location = default(string), int? retryAfter = default(int?)) { Location = location; + RetryAfter = retryAfter; CustomInit(); } @@ -43,9 +49,18 @@ public DedicatedHostsRedeployHeaders() partial void CustomInit(); /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. /// [JsonProperty(PropertyName = "Location")] public string Location { get; set; } + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostsRestartHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostsRestartHeaders.cs new file mode 100644 index 000000000000..d020597d6393 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostsRestartHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Restart operation. + /// + public partial class DedicatedHostsRestartHeaders + { + /// + /// Initializes a new instance of the DedicatedHostsRestartHeaders + /// class. + /// + public DedicatedHostsRestartHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DedicatedHostsRestartHeaders + /// class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public DedicatedHostsRestartHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostsUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostsUpdateHeaders.cs new file mode 100644 index 000000000000..7952d4c38ae7 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DedicatedHostsUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Update operation. + /// + public partial class DedicatedHostsUpdateHeaders + { + /// + /// Initializes a new instance of the DedicatedHostsUpdateHeaders + /// class. + /// + public DedicatedHostsUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DedicatedHostsUpdateHeaders + /// class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public DedicatedHostsUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DefaultVirtualMachineScaleSetInfo.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DefaultVirtualMachineScaleSetInfo.cs index 40467cada639..6e4fd884866f 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DefaultVirtualMachineScaleSetInfo.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DefaultVirtualMachineScaleSetInfo.cs @@ -33,11 +33,11 @@ public DefaultVirtualMachineScaleSetInfo() /// Initializes a new instance of the DefaultVirtualMachineScaleSetInfo /// class. /// - /// Indicates if the the + /// Indicates if the the /// maximum capacity of the default migrated Virtual Machine Scale Set /// after its migration will be constrained to a limited number of /// VMs. - /// The default Virtual + /// The default Virtual /// Machine ScaleSet Uri that the Availability Set will be moved to /// upon triggering a seamless migration via the /// ConvertToVirtualMachineScaleSet API. @@ -54,7 +54,7 @@ public DefaultVirtualMachineScaleSetInfo() partial void CustomInit(); /// - /// Gets Indicates if the the maximum capacity of the default migrated + /// Gets indicates if the the maximum capacity of the default migrated /// Virtual Machine Scale Set after its migration will be constrained /// to a limited number of VMs. /// @@ -62,9 +62,9 @@ public DefaultVirtualMachineScaleSetInfo() public bool? ConstrainedMaximumCapacity { get; private set; } /// - /// Gets The default Virtual Machine ScaleSet Uri that the - /// Availability Set will be moved to upon triggering a seamless - /// migration via the ConvertToVirtualMachineScaleSet API. + /// Gets the default Virtual Machine ScaleSet Uri that the Availability + /// Set will be moved to upon triggering a seamless migration via the + /// ConvertToVirtualMachineScaleSet API. /// [JsonProperty(PropertyName = "defaultVirtualMachineScaleSet")] public SubResource DefaultVirtualMachineScaleSet { get; private set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/Disk.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/Disk.cs index cd8d34b12757..44c2d93233d9 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/Disk.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/Disk.cs @@ -42,15 +42,6 @@ public Disk() /// Resource name /// Resource type /// Resource tags - /// A relative URI containing the ID of the VM - /// that has the disk attached. - /// List of relative URIs containing - /// the IDs of the VMs that have the disk attached. maxShares should be - /// set to a value greater than one for disks to allow attaching them - /// to multiple VMs. - /// The Logical zone list for Disk. - /// The extended location where the disk - /// will be created. Extended location cannot be changed. /// The time when the disk was /// created. /// The Operating System type. Possible values @@ -106,8 +97,9 @@ public Disk() /// Details of the list of all VMs that have /// the disk attached. maxShares should be set to a value greater than /// one for disks to allow attaching them to multiple VMs. - /// Possible values include: - /// 'AllowAll', 'AllowPrivate', 'DenyAll' + /// Policy for accessing the disk via + /// network. Possible values include: 'AllowAll', 'AllowPrivate', + /// 'DenyAll' /// ARM id of the DiskAccess resource for /// using private endpoints on disks. /// Latest time when bursting was @@ -128,10 +120,11 @@ public Disk() /// Percentage complete for the /// background copy when a resource is created via the CopyStart /// operation. - /// Possible values include: - /// 'Enabled', 'Disabled' - /// Possible values include: - /// 'AzureActiveDirectory', 'None' + /// Policy for controlling export on + /// the disk. Possible values include: 'Enabled', 'Disabled' + /// Additional authentication + /// requirements when exporting or uploading to a disk or snapshot. + /// Possible values include: 'AzureActiveDirectory', 'None' /// Setting this property to /// true improves reliability and performance of data disks that are /// frequently (more than 5 times a day) by detached from one virtual @@ -144,14 +137,23 @@ public Disk() /// disk was last attached or detached from a VM or the time when the /// VM to which the disk was attached was deallocated or /// started. - public Disk(string location, CreationData creationData, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string managedBy = default(string), IList managedByExtended = default(IList), DiskSku sku = default(DiskSku), IList zones = default(IList), ExtendedLocation extendedLocation = default(ExtendedLocation), System.DateTime? timeCreated = default(System.DateTime?), OperatingSystemTypes? osType = default(OperatingSystemTypes?), string hyperVGeneration = default(string), PurchasePlan purchasePlan = default(PurchasePlan), SupportedCapabilities supportedCapabilities = default(SupportedCapabilities), int? diskSizeGB = default(int?), long? diskSizeBytes = default(long?), string uniqueId = default(string), EncryptionSettingsCollection encryptionSettingsCollection = default(EncryptionSettingsCollection), string provisioningState = default(string), long? diskIOPSReadWrite = default(long?), long? diskMBpsReadWrite = default(long?), long? diskIOPSReadOnly = default(long?), long? diskMBpsReadOnly = default(long?), string diskState = default(string), Encryption encryption = default(Encryption), int? maxShares = default(int?), IList shareInfo = default(IList), string networkAccessPolicy = default(string), string diskAccessId = default(string), System.DateTime? burstingEnabledTime = default(System.DateTime?), string tier = default(string), bool? burstingEnabled = default(bool?), PropertyUpdatesInProgress propertyUpdatesInProgress = default(PropertyUpdatesInProgress), bool? supportsHibernation = default(bool?), DiskSecurityProfile securityProfile = default(DiskSecurityProfile), double? completionPercent = default(double?), string publicNetworkAccess = default(string), string dataAccessAuthMode = default(string), bool? optimizedForFrequentAttach = default(bool?), System.DateTime? lastOwnershipUpdateTime = default(System.DateTime?)) + /// Determines how platform treats + /// disk failures + /// A relative URI containing the ID of the VM + /// that has the disk attached. + /// List of relative URIs containing + /// the IDs of the VMs that have the disk attached. maxShares should be + /// set to a value greater than one for disks to allow attaching them + /// to multiple VMs. + /// The disks sku name. Can be Standard_LRS, + /// Premium_LRS, StandardSSD_LRS, UltraSSD_LRS, Premium_ZRS, + /// StandardSSD_ZRS, or PremiumV2_LRS. + /// The Logical zone list for Disk. + /// The extended location where the disk + /// will be created. Extended location cannot be changed. + public Disk(string location, CreationData creationData, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), System.DateTime? timeCreated = default(System.DateTime?), OperatingSystemTypes? osType = default(OperatingSystemTypes?), string hyperVGeneration = default(string), PurchasePlan purchasePlan = default(PurchasePlan), SupportedCapabilities supportedCapabilities = default(SupportedCapabilities), int? diskSizeGB = default(int?), long? diskSizeBytes = default(long?), string uniqueId = default(string), EncryptionSettingsCollection encryptionSettingsCollection = default(EncryptionSettingsCollection), string provisioningState = default(string), long? diskIOPSReadWrite = default(long?), long? diskMBpsReadWrite = default(long?), long? diskIOPSReadOnly = default(long?), long? diskMBpsReadOnly = default(long?), string diskState = default(string), Encryption encryption = default(Encryption), int? maxShares = default(int?), IList shareInfo = default(IList), string networkAccessPolicy = default(string), string diskAccessId = default(string), System.DateTime? burstingEnabledTime = default(System.DateTime?), string tier = default(string), bool? burstingEnabled = default(bool?), PropertyUpdatesInProgress propertyUpdatesInProgress = default(PropertyUpdatesInProgress), bool? supportsHibernation = default(bool?), DiskSecurityProfile securityProfile = default(DiskSecurityProfile), double? completionPercent = default(double?), string publicNetworkAccess = default(string), string dataAccessAuthMode = default(string), bool? optimizedForFrequentAttach = default(bool?), System.DateTime? lastOwnershipUpdateTime = default(System.DateTime?), AvailabilityPolicy availabilityPolicy = default(AvailabilityPolicy), string managedBy = default(string), IList managedByExtended = default(IList), DiskSku sku = default(DiskSku), IList zones = default(IList), ExtendedLocation extendedLocation = default(ExtendedLocation)) : base(location, id, name, type, tags) { - ManagedBy = managedBy; - ManagedByExtended = managedByExtended; - Sku = sku; - Zones = zones; - ExtendedLocation = extendedLocation; TimeCreated = timeCreated; OsType = osType; HyperVGeneration = hyperVGeneration; @@ -184,6 +186,12 @@ public Disk() DataAccessAuthMode = dataAccessAuthMode; OptimizedForFrequentAttach = optimizedForFrequentAttach; LastOwnershipUpdateTime = lastOwnershipUpdateTime; + AvailabilityPolicy = availabilityPolicy; + ManagedBy = managedBy; + ManagedByExtended = managedByExtended; + Sku = sku; + Zones = zones; + ExtendedLocation = extendedLocation; CustomInit(); } @@ -192,39 +200,6 @@ public Disk() /// partial void CustomInit(); - /// - /// Gets a relative URI containing the ID of the VM that has the disk - /// attached. - /// - [JsonProperty(PropertyName = "managedBy")] - public string ManagedBy { get; private set; } - - /// - /// Gets list of relative URIs containing the IDs of the VMs that have - /// the disk attached. maxShares should be set to a value greater than - /// one for disks to allow attaching them to multiple VMs. - /// - [JsonProperty(PropertyName = "managedByExtended")] - public IList ManagedByExtended { get; private set; } - - /// - /// - [JsonProperty(PropertyName = "sku")] - public DiskSku Sku { get; set; } - - /// - /// Gets or sets the Logical zone list for Disk. - /// - [JsonProperty(PropertyName = "zones")] - public IList Zones { get; set; } - - /// - /// Gets or sets the extended location where the disk will be created. - /// Extended location cannot be changed. - /// - [JsonProperty(PropertyName = "extendedLocation")] - public ExtendedLocation ExtendedLocation { get; set; } - /// /// Gets the time when the disk was created. /// @@ -337,12 +312,12 @@ public Disk() public long? DiskMBpsReadOnly { get; set; } /// - /// Gets or sets the state of the disk. Possible values include: - /// 'Unattached', 'Attached', 'Reserved', 'Frozen', 'ActiveSAS', - /// 'ActiveSASFrozen', 'ReadyToUpload', 'ActiveUpload' + /// Gets the state of the disk. Possible values include: 'Unattached', + /// 'Attached', 'Reserved', 'Frozen', 'ActiveSAS', 'ActiveSASFrozen', + /// 'ReadyToUpload', 'ActiveUpload' /// [JsonProperty(PropertyName = "properties.diskState")] - public string DiskState { get; set; } + public string DiskState { get; private set; } /// /// Gets or sets encryption property can be used to encrypt data at @@ -368,8 +343,8 @@ public Disk() public IList ShareInfo { get; private set; } /// - /// Gets or sets possible values include: 'AllowAll', 'AllowPrivate', - /// 'DenyAll' + /// Gets or sets policy for accessing the disk via network. Possible + /// values include: 'AllowAll', 'AllowPrivate', 'DenyAll' /// [JsonProperty(PropertyName = "properties.networkAccessPolicy")] public string NetworkAccessPolicy { get; set; } @@ -431,14 +406,16 @@ public Disk() public double? CompletionPercent { get; set; } /// - /// Gets or sets possible values include: 'Enabled', 'Disabled' + /// Gets or sets policy for controlling export on the disk. Possible + /// values include: 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.publicNetworkAccess")] public string PublicNetworkAccess { get; set; } /// - /// Gets or sets possible values include: 'AzureActiveDirectory', - /// 'None' + /// Gets or sets additional authentication requirements when exporting + /// or uploading to a disk or snapshot. Possible values include: + /// 'AzureActiveDirectory', 'None' /// [JsonProperty(PropertyName = "properties.dataAccessAuthMode")] public string DataAccessAuthMode { get; set; } @@ -463,6 +440,48 @@ public Disk() [JsonProperty(PropertyName = "properties.LastOwnershipUpdateTime")] public System.DateTime? LastOwnershipUpdateTime { get; private set; } + /// + /// Gets or sets determines how platform treats disk failures + /// + [JsonProperty(PropertyName = "properties.availabilityPolicy")] + public AvailabilityPolicy AvailabilityPolicy { get; set; } + + /// + /// Gets a relative URI containing the ID of the VM that has the disk + /// attached. + /// + [JsonProperty(PropertyName = "managedBy")] + public string ManagedBy { get; private set; } + + /// + /// Gets list of relative URIs containing the IDs of the VMs that have + /// the disk attached. maxShares should be set to a value greater than + /// one for disks to allow attaching them to multiple VMs. + /// + [JsonProperty(PropertyName = "managedByExtended")] + public IList ManagedByExtended { get; private set; } + + /// + /// Gets or sets the disks sku name. Can be Standard_LRS, Premium_LRS, + /// StandardSSD_LRS, UltraSSD_LRS, Premium_ZRS, StandardSSD_ZRS, or + /// PremiumV2_LRS. + /// + [JsonProperty(PropertyName = "sku")] + public DiskSku Sku { get; set; } + + /// + /// Gets or sets the Logical zone list for Disk. + /// + [JsonProperty(PropertyName = "zones")] + public IList Zones { get; set; } + + /// + /// Gets or sets the extended location where the disk will be created. + /// Extended location cannot be changed. + /// + [JsonProperty(PropertyName = "extendedLocation")] + public ExtendedLocation ExtendedLocation { get; set; } + /// /// Validate the object. /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskCreateOption.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskCreateOption.cs index dc062e280326..346eb1519c01 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskCreateOption.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskCreateOption.cs @@ -56,15 +56,20 @@ public static class DiskCreateOption public const string CopyStart = "CopyStart"; /// /// Similar to Import create option. Create a new Trusted Launch VM or - /// Confidential VM supported disk by importing additional blob for VM - /// guest state specified by securityDataUri in storage account - /// specified by storageAccountId + /// Confidential VM supported disk by importing additional blobs for VM + /// guest state specified by securityDataUri and VM metadata specified + /// by securityMetadataUri in storage account specified by + /// storageAccountId. The VM metadata is optional and only required for + /// certain Confidential VM configurations and not required for Trusted + /// Launch VM. /// public const string ImportSecure = "ImportSecure"; /// /// Similar to Upload create option. Create a new Trusted Launch VM or - /// Confidential VM supported disk and upload using write token in both - /// disk and VM guest state + /// Confidential VM supported disk and upload using write token in + /// disk, VM guest state and VM metadata. The VM metadata is optional + /// and only required for certain Confidential VM configurations and + /// not required for Trusted Launch VM. /// public const string UploadPreparedSecure = "UploadPreparedSecure"; /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskEncryptionSet.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskEncryptionSet.cs index d760c6523d8f..6a0d72bb2f6c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskEncryptionSet.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskEncryptionSet.cs @@ -39,7 +39,8 @@ public DiskEncryptionSet() /// Resource name /// Resource type /// Resource tags - /// Possible values include: + /// The type of key used to encrypt the + /// data of the disk. Possible values include: /// 'EncryptionAtRestWithCustomerKey', /// 'EncryptionAtRestWithPlatformAndCustomerKeys', /// 'ConfidentialVmEncryptedWithCustomerKey' @@ -63,10 +64,12 @@ public DiskEncryptionSet() /// Multi-tenant application client id /// to access key vault in a different tenant. Setting the value to /// 'None' will clear the property. - public DiskEncryptionSet(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), EncryptionSetIdentity identity = default(EncryptionSetIdentity), string encryptionType = default(string), KeyForDiskEncryptionSet activeKey = default(KeyForDiskEncryptionSet), IList previousKeys = default(IList), string provisioningState = default(string), bool? rotationToLatestKeyVersionEnabled = default(bool?), System.DateTime? lastKeyRotationTimestamp = default(System.DateTime?), ApiError autoKeyRotationError = default(ApiError), string federatedClientId = default(string)) + /// The managed identity for the disk encryption + /// set. It should be given permission on the key vault before it can + /// be used to encrypt disks. + public DiskEncryptionSet(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string encryptionType = default(string), KeyForDiskEncryptionSet activeKey = default(KeyForDiskEncryptionSet), IList previousKeys = default(IList), string provisioningState = default(string), bool? rotationToLatestKeyVersionEnabled = default(bool?), System.DateTime? lastKeyRotationTimestamp = default(System.DateTime?), ApiError autoKeyRotationError = default(ApiError), string federatedClientId = default(string), EncryptionSetIdentity identity = default(EncryptionSetIdentity)) : base(location, id, name, type, tags) { - Identity = identity; EncryptionType = encryptionType; ActiveKey = activeKey; PreviousKeys = previousKeys; @@ -75,6 +78,7 @@ public DiskEncryptionSet() LastKeyRotationTimestamp = lastKeyRotationTimestamp; AutoKeyRotationError = autoKeyRotationError; FederatedClientId = federatedClientId; + Identity = identity; CustomInit(); } @@ -84,13 +88,8 @@ public DiskEncryptionSet() partial void CustomInit(); /// - /// - [JsonProperty(PropertyName = "identity")] - public EncryptionSetIdentity Identity { get; set; } - - /// - /// Gets or sets possible values include: - /// 'EncryptionAtRestWithCustomerKey', + /// Gets or sets the type of key used to encrypt the data of the disk. + /// Possible values include: 'EncryptionAtRestWithCustomerKey', /// 'EncryptionAtRestWithPlatformAndCustomerKeys', /// 'ConfidentialVmEncryptedWithCustomerKey' /// @@ -148,6 +147,14 @@ public DiskEncryptionSet() [JsonProperty(PropertyName = "properties.federatedClientId")] public string FederatedClientId { get; set; } + /// + /// Gets or sets the managed identity for the disk encryption set. It + /// should be given permission on the key vault before it can be used + /// to encrypt disks. + /// + [JsonProperty(PropertyName = "identity")] + public EncryptionSetIdentity Identity { get; set; } + /// /// Validate the object. /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskEncryptionSetParameters.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskEncryptionSetParameters.cs index d8b225b923be..11ab87456efa 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskEncryptionSetParameters.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskEncryptionSetParameters.cs @@ -10,8 +10,6 @@ namespace Microsoft.Azure.Management.Compute.Models { - using Microsoft.Rest; - using Microsoft.Rest.Azure; using System.Linq; /// @@ -20,7 +18,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// encryption set resource id can only be specified for managed disk. /// Please refer https://aka.ms/mdssewithcmkoverview for more details. /// - public partial class DiskEncryptionSetParameters : IResource + public partial class DiskEncryptionSetParameters : SubResource { /// /// Initializes a new instance of the DiskEncryptionSetParameters @@ -31,6 +29,16 @@ public DiskEncryptionSetParameters() CustomInit(); } + /// + /// Initializes a new instance of the DiskEncryptionSetParameters + /// class. + /// + /// Resource Id + public DiskEncryptionSetParameters(string id = default(string)) + : base(id) + { + CustomInit(); + } /// /// An initialization method that performs custom operations like setting defaults diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskEncryptionSetUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskEncryptionSetUpdate.cs index 410b7750b334..8ff8bce3a2de 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskEncryptionSetUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskEncryptionSetUpdate.cs @@ -34,10 +34,13 @@ public DiskEncryptionSetUpdate() /// /// Initializes a new instance of the DiskEncryptionSetUpdate class. /// - /// Possible values include: + /// The type of key used to encrypt the + /// data of the disk. Possible values include: /// 'EncryptionAtRestWithCustomerKey', /// 'EncryptionAtRestWithPlatformAndCustomerKeys', /// 'ConfidentialVmEncryptedWithCustomerKey' + /// Key Vault Key Url to be used for server + /// side encryption of Managed Disks and Snapshots /// Set this flag to /// true to enable auto-updating of this disk encryption set to the /// latest key version. @@ -45,6 +48,9 @@ public DiskEncryptionSetUpdate() /// to access key vault in a different tenant. Setting the value to /// 'None' will clear the property. /// Resource tags + /// The managed identity for the disk encryption + /// set. It should be given permission on the key vault before it can + /// be used to encrypt disks. public DiskEncryptionSetUpdate(string encryptionType = default(string), KeyForDiskEncryptionSet activeKey = default(KeyForDiskEncryptionSet), bool? rotationToLatestKeyVersionEnabled = default(bool?), string federatedClientId = default(string), IDictionary tags = default(IDictionary), EncryptionSetIdentity identity = default(EncryptionSetIdentity)) { EncryptionType = encryptionType; @@ -62,8 +68,8 @@ public DiskEncryptionSetUpdate() partial void CustomInit(); /// - /// Gets or sets possible values include: - /// 'EncryptionAtRestWithCustomerKey', + /// Gets or sets the type of key used to encrypt the data of the disk. + /// Possible values include: 'EncryptionAtRestWithCustomerKey', /// 'EncryptionAtRestWithPlatformAndCustomerKeys', /// 'ConfidentialVmEncryptedWithCustomerKey' /// @@ -71,6 +77,8 @@ public DiskEncryptionSetUpdate() public string EncryptionType { get; set; } /// + /// Gets or sets key Vault Key Url to be used for server side + /// encryption of Managed Disks and Snapshots /// [JsonProperty(PropertyName = "properties.activeKey")] public KeyForDiskEncryptionSet ActiveKey { get; set; } @@ -97,6 +105,9 @@ public DiskEncryptionSetUpdate() public IDictionary Tags { get; set; } /// + /// Gets or sets the managed identity for the disk encryption set. It + /// should be given permission on the key vault before it can be used + /// to encrypt disks. /// [JsonProperty(PropertyName = "identity")] public EncryptionSetIdentity Identity { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskRestorePoint.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskRestorePoint.cs index 0d34ce5f7c02..a1277de01303 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskRestorePoint.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskRestorePoint.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// Properties of disk restore point /// [Rest.Serialization.JsonTransformation] - public partial class DiskRestorePoint : ProxyOnlyResource + public partial class DiskRestorePoint : ProxyResource { /// /// Initializes a new instance of the DiskRestorePoint class. @@ -57,10 +57,11 @@ public DiskRestorePoint() /// keys. /// Indicates the OS on a disk /// supports hibernation. - /// Possible values include: - /// 'AllowAll', 'AllowPrivate', 'DenyAll' - /// Possible values include: - /// 'Enabled', 'Disabled' + /// Policy for accessing the disk via + /// network. Possible values include: 'AllowAll', 'AllowPrivate', + /// 'DenyAll' + /// Policy for controlling export on + /// the disk. Possible values include: 'Enabled', 'Disabled' /// ARM id of the DiskAccess resource for /// using private endpoints on disks. /// Percentage complete for the @@ -171,14 +172,15 @@ public DiskRestorePoint() public bool? SupportsHibernation { get; set; } /// - /// Gets or sets possible values include: 'AllowAll', 'AllowPrivate', - /// 'DenyAll' + /// Gets or sets policy for accessing the disk via network. Possible + /// values include: 'AllowAll', 'AllowPrivate', 'DenyAll' /// [JsonProperty(PropertyName = "properties.networkAccessPolicy")] public string NetworkAccessPolicy { get; set; } /// - /// Gets or sets possible values include: 'Enabled', 'Disabled' + /// Gets or sets policy for controlling export on the disk. Possible + /// values include: 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.publicNetworkAccess")] public string PublicNetworkAccess { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskRestorePointAttributes.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskRestorePointAttributes.cs index 9c8e88698b97..c9d6ad197ffa 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskRestorePointAttributes.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskRestorePointAttributes.cs @@ -30,6 +30,9 @@ public DiskRestorePointAttributes() /// Initializes a new instance of the DiskRestorePointAttributes class. /// /// Resource Id + /// Encryption at rest settings for disk + /// restore point. It is an optional property that can be specified in + /// the input while creating a restore point. /// Resource Id of the source disk /// restore point. public DiskRestorePointAttributes(string id = default(string), RestorePointEncryption encryption = default(RestorePointEncryption), ApiEntityReference sourceDiskRestorePoint = default(ApiEntityReference)) @@ -46,6 +49,9 @@ public DiskRestorePointAttributes() partial void CustomInit(); /// + /// Gets or sets encryption at rest settings for disk restore point. It + /// is an optional property that can be specified in the input while + /// creating a restore point. /// [JsonProperty(PropertyName = "encryption")] public RestorePointEncryption Encryption { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskSecurityProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskSecurityProfile.cs index 44100d3a5aa4..985d1790ce60 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskSecurityProfile.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskSecurityProfile.cs @@ -29,7 +29,8 @@ public DiskSecurityProfile() /// /// Initializes a new instance of the DiskSecurityProfile class. /// - /// Possible values include: + /// Specifies the SecurityType of the VM. + /// Applicable for OS disks only. Possible values include: /// 'TrustedLaunch', /// 'ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKey', /// 'ConfidentialVM_DiskEncryptedWithPlatformKey', @@ -51,7 +52,8 @@ public DiskSecurityProfile() partial void CustomInit(); /// - /// Gets or sets possible values include: 'TrustedLaunch', + /// Gets or sets specifies the SecurityType of the VM. Applicable for + /// OS disks only. Possible values include: 'TrustedLaunch', /// 'ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKey', /// 'ConfidentialVM_DiskEncryptedWithPlatformKey', /// 'ConfidentialVM_DiskEncryptedWithCustomerKey', diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskUpdate.cs index 67b0788fea49..4868c02a788e 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/DiskUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/DiskUpdate.cs @@ -65,8 +65,9 @@ public DiskUpdate() /// Encryption property can be used to encrypt /// data at rest with customer managed keys or platform managed /// keys. - /// Possible values include: - /// 'AllowAll', 'AllowPrivate', 'DenyAll' + /// Policy for accessing the disk via + /// network. Possible values include: 'AllowAll', 'AllowPrivate', + /// 'DenyAll' /// ARM id of the DiskAccess resource for /// using private endpoints on disks. /// Performance tier of the disk (e.g, P4, S10) as @@ -84,10 +85,11 @@ public DiskUpdate() /// which update is pending. /// Indicates the OS on a disk /// supports hibernation. - /// Possible values include: - /// 'Enabled', 'Disabled' - /// Possible values include: - /// 'AzureActiveDirectory', 'None' + /// Policy for controlling export on + /// the disk. Possible values include: 'Enabled', 'Disabled' + /// Additional authentication + /// requirements when exporting or uploading to a disk or snapshot. + /// Possible values include: 'AzureActiveDirectory', 'None' /// Setting this property to /// true improves reliability and performance of data disks that are /// frequently (more than 5 times a day) by detached from one virtual @@ -95,8 +97,13 @@ public DiskUpdate() /// for disks that are not detached and attached frequently as it /// causes the disks to not align with the fault domain of the virtual /// machine. + /// Determines how platform treats + /// disk failures /// Resource tags - public DiskUpdate(OperatingSystemTypes? osType = default(OperatingSystemTypes?), int? diskSizeGB = default(int?), EncryptionSettingsCollection encryptionSettingsCollection = default(EncryptionSettingsCollection), long? diskIOPSReadWrite = default(long?), long? diskMBpsReadWrite = default(long?), long? diskIOPSReadOnly = default(long?), long? diskMBpsReadOnly = default(long?), int? maxShares = default(int?), Encryption encryption = default(Encryption), string networkAccessPolicy = default(string), string diskAccessId = default(string), string tier = default(string), bool? burstingEnabled = default(bool?), PurchasePlan purchasePlan = default(PurchasePlan), SupportedCapabilities supportedCapabilities = default(SupportedCapabilities), PropertyUpdatesInProgress propertyUpdatesInProgress = default(PropertyUpdatesInProgress), bool? supportsHibernation = default(bool?), string publicNetworkAccess = default(string), string dataAccessAuthMode = default(string), bool? optimizedForFrequentAttach = default(bool?), IDictionary tags = default(IDictionary), DiskSku sku = default(DiskSku)) + /// The disks sku name. Can be Standard_LRS, + /// Premium_LRS, StandardSSD_LRS, UltraSSD_LRS, Premium_ZRS, + /// StandardSSD_ZRS, or PremiumV2_LRS. + public DiskUpdate(OperatingSystemTypes? osType = default(OperatingSystemTypes?), int? diskSizeGB = default(int?), EncryptionSettingsCollection encryptionSettingsCollection = default(EncryptionSettingsCollection), long? diskIOPSReadWrite = default(long?), long? diskMBpsReadWrite = default(long?), long? diskIOPSReadOnly = default(long?), long? diskMBpsReadOnly = default(long?), int? maxShares = default(int?), Encryption encryption = default(Encryption), string networkAccessPolicy = default(string), string diskAccessId = default(string), string tier = default(string), bool? burstingEnabled = default(bool?), PurchasePlan purchasePlan = default(PurchasePlan), SupportedCapabilities supportedCapabilities = default(SupportedCapabilities), PropertyUpdatesInProgress propertyUpdatesInProgress = default(PropertyUpdatesInProgress), bool? supportsHibernation = default(bool?), string publicNetworkAccess = default(string), string dataAccessAuthMode = default(string), bool? optimizedForFrequentAttach = default(bool?), AvailabilityPolicy availabilityPolicy = default(AvailabilityPolicy), IDictionary tags = default(IDictionary), DiskSku sku = default(DiskSku)) { OsType = osType; DiskSizeGB = diskSizeGB; @@ -118,6 +125,7 @@ public DiskUpdate() PublicNetworkAccess = publicNetworkAccess; DataAccessAuthMode = dataAccessAuthMode; OptimizedForFrequentAttach = optimizedForFrequentAttach; + AvailabilityPolicy = availabilityPolicy; Tags = tags; Sku = sku; CustomInit(); @@ -202,8 +210,8 @@ public DiskUpdate() public Encryption Encryption { get; set; } /// - /// Gets or sets possible values include: 'AllowAll', 'AllowPrivate', - /// 'DenyAll' + /// Gets or sets policy for accessing the disk via network. Possible + /// values include: 'AllowAll', 'AllowPrivate', 'DenyAll' /// [JsonProperty(PropertyName = "properties.networkAccessPolicy")] public string NetworkAccessPolicy { get; set; } @@ -258,14 +266,16 @@ public DiskUpdate() public bool? SupportsHibernation { get; set; } /// - /// Gets or sets possible values include: 'Enabled', 'Disabled' + /// Gets or sets policy for controlling export on the disk. Possible + /// values include: 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.publicNetworkAccess")] public string PublicNetworkAccess { get; set; } /// - /// Gets or sets possible values include: 'AzureActiveDirectory', - /// 'None' + /// Gets or sets additional authentication requirements when exporting + /// or uploading to a disk or snapshot. Possible values include: + /// 'AzureActiveDirectory', 'None' /// [JsonProperty(PropertyName = "properties.dataAccessAuthMode")] public string DataAccessAuthMode { get; set; } @@ -281,6 +291,12 @@ public DiskUpdate() [JsonProperty(PropertyName = "properties.optimizedForFrequentAttach")] public bool? OptimizedForFrequentAttach { get; set; } + /// + /// Gets or sets determines how platform treats disk failures + /// + [JsonProperty(PropertyName = "properties.availabilityPolicy")] + public AvailabilityPolicy AvailabilityPolicy { get; set; } + /// /// Gets or sets resource tags /// @@ -288,6 +304,9 @@ public DiskUpdate() public IDictionary Tags { get; set; } /// + /// Gets or sets the disks sku name. Can be Standard_LRS, Premium_LRS, + /// StandardSSD_LRS, UltraSSD_LRS, Premium_ZRS, StandardSSD_ZRS, or + /// PremiumV2_LRS. /// [JsonProperty(PropertyName = "sku")] public DiskSku Sku { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/Encryption.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/Encryption.cs index 345dec01e4c3..917358980174 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/Encryption.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/Encryption.cs @@ -31,8 +31,8 @@ public Encryption() /// /// ResourceId of the disk encryption /// set to use for enabling encryption at rest. - /// Possible values include: - /// 'EncryptionAtRestWithPlatformKey', + /// The type of key used to encrypt the data of the + /// disk. Possible values include: 'EncryptionAtRestWithPlatformKey', /// 'EncryptionAtRestWithCustomerKey', /// 'EncryptionAtRestWithPlatformAndCustomerKeys' public Encryption(string diskEncryptionSetId = default(string), string type = default(string)) @@ -55,8 +55,8 @@ public Encryption() public string DiskEncryptionSetId { get; set; } /// - /// Gets or sets possible values include: - /// 'EncryptionAtRestWithPlatformKey', + /// Gets or sets the type of key used to encrypt the data of the disk. + /// Possible values include: 'EncryptionAtRestWithPlatformKey', /// 'EncryptionAtRestWithCustomerKey', /// 'EncryptionAtRestWithPlatformAndCustomerKeys' /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/EncryptionImages.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/EncryptionImages.cs index de2b2529bdfe..41607dd6fb71 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/EncryptionImages.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/EncryptionImages.cs @@ -32,6 +32,8 @@ public EncryptionImages() /// /// Initializes a new instance of the EncryptionImages class. /// + /// Contains encryption settings for an OS + /// disk image. /// A list of encryption specifications /// for data disk images. public EncryptionImages(OSDiskImageEncryption osDiskImage = default(OSDiskImageEncryption), IList dataDiskImages = default(IList)) @@ -47,6 +49,7 @@ public EncryptionImages() partial void CustomInit(); /// + /// Gets or sets contains encryption settings for an OS disk image. /// [JsonProperty(PropertyName = "osDiskImage")] public OSDiskImageEncryption OsDiskImage { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/EncryptionProperties.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/EncryptionProperties.cs new file mode 100644 index 000000000000..88cb9382309a --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/EncryptionProperties.cs @@ -0,0 +1,62 @@ +// +// 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; + + /// + /// Configuration of key for data encryption + /// + public partial class EncryptionProperties + { + /// + /// Initializes a new instance of the EncryptionProperties class. + /// + public EncryptionProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EncryptionProperties class. + /// + /// Indicates whether or not the encryption is + /// enabled for container registry. Possible values include: 'enabled', + /// 'disabled' + /// Key vault properties. + public EncryptionProperties(string status = default(string), KeyVaultProperties keyVaultProperties = default(KeyVaultProperties)) + { + Status = status; + KeyVaultProperties = keyVaultProperties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets indicates whether or not the encryption is enabled for + /// container registry. Possible values include: 'enabled', 'disabled' + /// + [JsonProperty(PropertyName = "status")] + public string Status { get; set; } + + /// + /// Gets or sets key vault properties. + /// + [JsonProperty(PropertyName = "keyVaultProperties")] + public KeyVaultProperties KeyVaultProperties { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/ExtendedLocationTypes.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/EncryptionStatus.cs similarity index 71% rename from src/Compute/Compute.Management.Sdk/Generated/Models/ExtendedLocationTypes.cs rename to src/Compute/Compute.Management.Sdk/Generated/Models/EncryptionStatus.cs index 77e0b2c66958..d29669e36742 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/ExtendedLocationTypes.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/EncryptionStatus.cs @@ -12,10 +12,11 @@ namespace Microsoft.Azure.Management.Compute.Models { /// - /// Defines values for ExtendedLocationTypes. + /// Defines values for EncryptionStatus. /// - public static class ExtendedLocationTypes + public static class EncryptionStatus { - public const string EdgeZone = "EdgeZone"; + public const string Enabled = "enabled"; + public const string Disabled = "disabled"; } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/ProxyOnlyResource.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ErrorAdditionalInfo.cs similarity index 54% rename from src/Compute/Compute.Management.Sdk/Generated/Models/ProxyOnlyResource.cs rename to src/Compute/Compute.Management.Sdk/Generated/Models/ErrorAdditionalInfo.cs index 757a9e381e44..acd677d64f04 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/ProxyOnlyResource.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/ErrorAdditionalInfo.cs @@ -14,29 +14,27 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// The ProxyOnly Resource model definition. + /// The resource management error additional info. /// - public partial class ProxyOnlyResource + public partial class ErrorAdditionalInfo { /// - /// Initializes a new instance of the ProxyOnlyResource class. + /// Initializes a new instance of the ErrorAdditionalInfo class. /// - public ProxyOnlyResource() + public ErrorAdditionalInfo() { CustomInit(); } /// - /// Initializes a new instance of the ProxyOnlyResource class. + /// Initializes a new instance of the ErrorAdditionalInfo class. /// - /// Resource Id - /// Resource name - /// Resource type - public ProxyOnlyResource(string id = default(string), string name = default(string), string type = default(string)) + /// The additional info type. + /// The additional info. + public ErrorAdditionalInfo(string type = default(string), object info = default(object)) { - Id = id; - Name = name; Type = type; + Info = info; CustomInit(); } @@ -46,22 +44,16 @@ public ProxyOnlyResource() partial void CustomInit(); /// - /// Gets resource Id + /// Gets the additional info type. /// - [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } - - /// - /// Gets resource name - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } /// - /// Gets resource type + /// Gets the additional info. /// - [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + [JsonProperty(PropertyName = "info")] + public object Info { get; private set; } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/ErrorDetail.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ErrorDetail.cs new file mode 100644 index 000000000000..216ee7a0231c --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/ErrorDetail.cs @@ -0,0 +1,85 @@ +// +// 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.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The error detail. + /// + public partial class ErrorDetail + { + /// + /// Initializes a new instance of the ErrorDetail class. + /// + public ErrorDetail() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorDetail class. + /// + /// The error code. + /// The error message. + /// The error target. + /// The error details. + /// The error additional info. + public ErrorDetail(string code = default(string), string message = default(string), string target = default(string), IList details = default(IList), IList additionalInfo = default(IList)) + { + Code = code; + Message = message; + Target = target; + Details = details; + AdditionalInfo = additionalInfo; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the error code. + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; private set; } + + /// + /// Gets the error message. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } + + /// + /// Gets the error target. + /// + [JsonProperty(PropertyName = "target")] + public string Target { get; private set; } + + /// + /// Gets the error details. + /// + [JsonProperty(PropertyName = "details")] + public IList Details { get; private set; } + + /// + /// Gets the error additional info. + /// + [JsonProperty(PropertyName = "additionalInfo")] + public IList AdditionalInfo { get; private set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRoleProperties.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ErrorResponse.cs similarity index 55% rename from src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRoleProperties.cs rename to src/Compute/Compute.Management.Sdk/Generated/Models/ErrorResponse.cs index d7c28624b0d9..69e72efcf26c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/CloudServiceRoleProperties.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/ErrorResponse.cs @@ -14,26 +14,30 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// The cloud service role properties. + /// Error response /// - public partial class CloudServiceRoleProperties + /// + /// Common error response for all Azure Resource Manager APIs to return + /// error details for failed operations. (This also follows the OData error + /// response format.). + /// + public partial class ErrorResponse { /// - /// Initializes a new instance of the CloudServiceRoleProperties class. + /// Initializes a new instance of the ErrorResponse class. /// - public CloudServiceRoleProperties() + public ErrorResponse() { CustomInit(); } /// - /// Initializes a new instance of the CloudServiceRoleProperties class. + /// Initializes a new instance of the ErrorResponse class. /// - /// Specifies the ID which uniquely identifies a - /// cloud service role. - public CloudServiceRoleProperties(string uniqueId = default(string)) + /// The error object. + public ErrorResponse(ErrorDetail error = default(ErrorDetail)) { - UniqueId = uniqueId; + Error = error; CustomInit(); } @@ -43,11 +47,10 @@ public CloudServiceRoleProperties() partial void CustomInit(); /// - /// Gets specifies the ID which uniquely identifies a cloud service - /// role. + /// Gets or sets the error object. /// - [JsonProperty(PropertyName = "uniqueId")] - public string UniqueId { get; private set; } + [JsonProperty(PropertyName = "error")] + public ErrorDetail Error { get; set; } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/ErrorResponseException.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ErrorResponseException.cs new file mode 100644 index 000000000000..5bc5eb0986b4 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/ErrorResponseException.cs @@ -0,0 +1,62 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + + /// + /// Exception thrown for an invalid response with ErrorResponse + /// information. + /// + public partial class ErrorResponseException : RestException + { + /// + /// Gets information about the associated HTTP request. + /// + public HttpRequestMessageWrapper Request { get; set; } + + /// + /// Gets information about the associated HTTP response. + /// + public HttpResponseMessageWrapper Response { get; set; } + + /// + /// Gets or sets the body object. + /// + public ErrorResponse Body { get; set; } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + public ErrorResponseException() + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + public ErrorResponseException(string message) + : this(message, null) + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + /// Inner exception. + public ErrorResponseException(string message, System.Exception innerException) + : base(message, innerException) + { + } + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/Extension.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/Extension.cs deleted file mode 100644 index 66db804aec3f..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/Extension.cs +++ /dev/null @@ -1,57 +0,0 @@ -// -// 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; - - /// - /// Describes a cloud service Extension. - /// - public partial class Extension - { - /// - /// Initializes a new instance of the Extension class. - /// - public Extension() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the Extension class. - /// - /// The name of the extension. - public Extension(string name = default(string), CloudServiceExtensionProperties properties = default(CloudServiceExtensionProperties)) - { - Name = name; - Properties = properties; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the name of the extension. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// - [JsonProperty(PropertyName = "properties")] - public CloudServiceExtensionProperties Properties { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleriesCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleriesCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..609a99470153 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleriesCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class GalleriesCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the GalleriesCreateOrUpdateHeaders + /// class. + /// + public GalleriesCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the GalleriesCreateOrUpdateHeaders + /// class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleriesCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleriesUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleriesUpdateHeaders.cs new file mode 100644 index 000000000000..a03191e3aaa3 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleriesUpdateHeaders.cs @@ -0,0 +1,64 @@ +// +// 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 Update operation. + /// + public partial class GalleriesUpdateHeaders + { + /// + /// Initializes a new instance of the GalleriesUpdateHeaders class. + /// + public GalleriesUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the GalleriesUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleriesUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/Gallery.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/Gallery.cs index 6483ca440a22..d6cad93bcf05 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/Gallery.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/Gallery.cs @@ -42,9 +42,16 @@ public Gallery() /// Resource tags /// The description of this Shared Image /// Gallery resource. This property is updatable. - /// Possible values include: - /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', - /// 'Migrating' + /// Describes the gallery unique name. + /// The provisioning state, which only + /// appears in the response. Possible values include: 'Creating', + /// 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' + /// Profile for gallery sharing to + /// subscription or tenant + /// Contains information about the soft + /// deletion policy of the gallery. + /// Sharing status of current + /// gallery. /// The identity of the gallery, if /// configured. public Gallery(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), GalleryIdentifier identifier = default(GalleryIdentifier), string provisioningState = default(string), SharingProfile sharingProfile = default(SharingProfile), SoftDeletePolicy softDeletePolicy = default(SoftDeletePolicy), SharingStatus sharingStatus = default(SharingStatus), GalleryIdentity identity = default(GalleryIdentity)) @@ -73,28 +80,34 @@ public Gallery() public string Description { get; set; } /// + /// Gets or sets describes the gallery unique name. /// [JsonProperty(PropertyName = "properties.identifier")] public GalleryIdentifier Identifier { get; set; } /// - /// Gets possible values include: 'Creating', 'Updating', 'Failed', + /// Gets the provisioning state, which only appears in the response. + /// Possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } /// + /// Gets or sets profile for gallery sharing to subscription or tenant /// [JsonProperty(PropertyName = "properties.sharingProfile")] public SharingProfile SharingProfile { get; set; } /// + /// Gets or sets contains information about the soft deletion policy of + /// the gallery. /// [JsonProperty(PropertyName = "properties.softDeletePolicy")] public SoftDeletePolicy SoftDeletePolicy { get; set; } /// + /// Gets sharing status of current gallery. /// [JsonProperty(PropertyName = "properties.sharingStatus")] public SharingStatus SharingStatus { get; private set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersion.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersion.cs index 5ee29c949334..9d581e08eb19 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersion.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersion.cs @@ -36,13 +36,19 @@ public GalleryApplicationVersion() /// Initializes a new instance of the GalleryApplicationVersion class. /// /// Resource location + /// The publishing profile of a gallery + /// image version. /// Resource Id /// Resource name /// Resource type /// Resource tags - /// Possible values include: - /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', - /// 'Migrating' + /// The safety profile of the Gallery + /// Application Version. + /// The provisioning state, which only + /// appears in the response. Possible values include: 'Creating', + /// 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' + /// This is the replication status of + /// the gallery image version. public GalleryApplicationVersion(string location, GalleryApplicationVersionPublishingProfile publishingProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryApplicationVersionSafetyProfile safetyProfile = default(GalleryApplicationVersionSafetyProfile), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus)) : base(location, id, name, type, tags) { @@ -59,23 +65,27 @@ public GalleryApplicationVersion() partial void CustomInit(); /// + /// Gets or sets the publishing profile of a gallery image version. /// [JsonProperty(PropertyName = "properties.publishingProfile")] public GalleryApplicationVersionPublishingProfile PublishingProfile { get; set; } /// + /// Gets or sets the safety profile of the Gallery Application Version. /// [JsonProperty(PropertyName = "properties.safetyProfile")] public GalleryApplicationVersionSafetyProfile SafetyProfile { get; set; } /// - /// Gets possible values include: 'Creating', 'Updating', 'Failed', + /// Gets the provisioning state, which only appears in the response. + /// Possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } /// + /// Gets this is the replication status of the gallery image version. /// [JsonProperty(PropertyName = "properties.replicationStatus")] public ReplicationStatus ReplicationStatus { get; private set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionPublishingProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionPublishingProfile.cs index 8280cb4a15a6..a5a47fed6eae 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionPublishingProfile.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionPublishingProfile.cs @@ -34,6 +34,8 @@ public GalleryApplicationVersionPublishingProfile() /// Initializes a new instance of the /// GalleryApplicationVersionPublishingProfile class. /// + /// The source image from which the Image Version + /// is going to be created. /// The target regions where the Image /// Version is going to be replicated to. This property is /// updatable. @@ -59,6 +61,9 @@ public GalleryApplicationVersionPublishingProfile() /// The target extended locations /// where the Image Version is going to be replicated to. This property /// is updatable. + /// Additional settings for the VM app that + /// contains the target package and config file name when it is + /// deployed to target VM or VM scale set. /// Optional. Additional settings to /// pass to the vm-application-manager extension. For advanced use /// only. @@ -84,6 +89,8 @@ public GalleryApplicationVersionPublishingProfile() partial void CustomInit(); /// + /// Gets or sets the source image from which the Image Version is going + /// to be created. /// [JsonProperty(PropertyName = "source")] public UserArtifactSource Source { get; set; } @@ -94,6 +101,9 @@ public GalleryApplicationVersionPublishingProfile() public UserArtifactManage ManageActions { get; set; } /// + /// Gets or sets additional settings for the VM app that contains the + /// target package and config file name when it is deployed to target + /// VM or VM scale set. /// [JsonProperty(PropertyName = "settings")] public UserArtifactSettings Settings { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionUpdate.cs index 3c6b3c2b4605..5e20c71565d8 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionUpdate.cs @@ -37,13 +37,19 @@ public GalleryApplicationVersionUpdate() /// Initializes a new instance of the GalleryApplicationVersionUpdate /// class. /// + /// The publishing profile of a gallery + /// image version. /// Resource Id /// Resource name /// Resource type /// Resource tags - /// Possible values include: - /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', - /// 'Migrating' + /// The safety profile of the Gallery + /// Application Version. + /// The provisioning state, which only + /// appears in the response. Possible values include: 'Creating', + /// 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' + /// This is the replication status of + /// the gallery image version. public GalleryApplicationVersionUpdate(GalleryApplicationVersionPublishingProfile publishingProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryApplicationVersionSafetyProfile safetyProfile = default(GalleryApplicationVersionSafetyProfile), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus)) : base(id, name, type, tags) { @@ -60,23 +66,27 @@ public GalleryApplicationVersionUpdate() partial void CustomInit(); /// + /// Gets or sets the publishing profile of a gallery image version. /// [JsonProperty(PropertyName = "properties.publishingProfile")] public GalleryApplicationVersionPublishingProfile PublishingProfile { get; set; } /// + /// Gets or sets the safety profile of the Gallery Application Version. /// [JsonProperty(PropertyName = "properties.safetyProfile")] public GalleryApplicationVersionSafetyProfile SafetyProfile { get; set; } /// - /// Gets possible values include: 'Creating', 'Updating', 'Failed', + /// Gets the provisioning state, which only appears in the response. + /// Possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } /// + /// Gets this is the replication status of the gallery image version. /// [JsonProperty(PropertyName = "properties.replicationStatus")] public ReplicationStatus ReplicationStatus { get; private set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionsCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionsCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..07f17a7b8861 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionsCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class GalleryApplicationVersionsCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// GalleryApplicationVersionsCreateOrUpdateHeaders class. + /// + public GalleryApplicationVersionsCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// GalleryApplicationVersionsCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleryApplicationVersionsCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionsUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionsUpdateHeaders.cs new file mode 100644 index 000000000000..8f5104248220 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationVersionsUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Update operation. + /// + public partial class GalleryApplicationVersionsUpdateHeaders + { + /// + /// Initializes a new instance of the + /// GalleryApplicationVersionsUpdateHeaders class. + /// + public GalleryApplicationVersionsUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// GalleryApplicationVersionsUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleryApplicationVersionsUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationsCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationsCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..e52c88b5825e --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationsCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class GalleryApplicationsCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// GalleryApplicationsCreateOrUpdateHeaders class. + /// + public GalleryApplicationsCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// GalleryApplicationsCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleryApplicationsCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationsUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationsUpdateHeaders.cs new file mode 100644 index 000000000000..243b51ad11ee --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryApplicationsUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Update operation. + /// + public partial class GalleryApplicationsUpdateHeaders + { + /// + /// Initializes a new instance of the GalleryApplicationsUpdateHeaders + /// class. + /// + public GalleryApplicationsUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the GalleryApplicationsUpdateHeaders + /// class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleryApplicationsUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryArtifactSource.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryArtifactSource.cs deleted file mode 100644 index 1419a0c08ed0..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryArtifactSource.cs +++ /dev/null @@ -1,67 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// The source image from which the Image Version is going to be created. - /// - public partial class GalleryArtifactSource - { - /// - /// Initializes a new instance of the GalleryArtifactSource class. - /// - public GalleryArtifactSource() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the GalleryArtifactSource class. - /// - public GalleryArtifactSource(ManagedArtifact managedImage) - { - ManagedImage = managedImage; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// - [JsonProperty(PropertyName = "managedImage")] - public ManagedArtifact ManagedImage { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (ManagedImage == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "ManagedImage"); - } - if (ManagedImage != null) - { - ManagedImage.Validate(); - } - } - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryDataDiskImage.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryDataDiskImage.cs index e82d5fb31abc..d86d4df26422 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryDataDiskImage.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryDataDiskImage.cs @@ -38,6 +38,7 @@ public GalleryDataDiskImage() /// The host caching of the disk. Valid /// values are 'None', 'ReadOnly', and 'ReadWrite'. Possible values /// include: 'None', 'ReadOnly', 'ReadWrite' + /// The source for the disk image. public GalleryDataDiskImage(int lun, int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryDiskImageSource source = default(GalleryDiskImageSource)) : base(sizeInGB, hostCaching, source) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryDiskImage.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryDiskImage.cs index d8b0768b28f3..14053bcd607a 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryDiskImage.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryDiskImage.cs @@ -34,6 +34,7 @@ public GalleryDiskImage() /// The host caching of the disk. Valid /// values are 'None', 'ReadOnly', and 'ReadWrite'. Possible values /// include: 'None', 'ReadOnly', 'ReadWrite' + /// The source for the disk image. public GalleryDiskImage(int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryDiskImageSource source = default(GalleryDiskImageSource)) { SizeInGB = sizeInGB; @@ -62,6 +63,7 @@ public GalleryDiskImage() public HostCaching? HostCaching { get; set; } /// + /// Gets or sets the source for the disk image. /// [JsonProperty(PropertyName = "source")] public GalleryDiskImageSource Source { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryExtendedLocation.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryExtendedLocation.cs index 3953136aabc8..faf6c4511f2b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryExtendedLocation.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryExtendedLocation.cs @@ -29,8 +29,8 @@ public GalleryExtendedLocation() /// /// Initializes a new instance of the GalleryExtendedLocation class. /// - /// Possible values include: 'EdgeZone', - /// 'Unknown' + /// It is type of the extended location. Possible + /// values include: 'EdgeZone', 'Unknown' public GalleryExtendedLocation(string name = default(string), string type = default(string)) { Name = name; @@ -49,7 +49,8 @@ public GalleryExtendedLocation() public string Name { get; set; } /// - /// Gets or sets possible values include: 'EdgeZone', 'Unknown' + /// Gets or sets it is type of the extended location. Possible values + /// include: 'EdgeZone', 'Unknown' /// [JsonProperty(PropertyName = "type")] public string Type { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImage.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImage.cs index 3db4f7692672..ee80108619fb 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImage.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImage.cs @@ -44,6 +44,8 @@ public GalleryImage() /// whether the virtual machines created under this image are /// 'Generalized' or 'Specialized'. Possible values include: /// 'Generalized', 'Specialized' + /// This is the gallery image definition + /// identifier. /// Resource Id /// Resource name /// Resource type @@ -61,11 +63,19 @@ public GalleryImage() /// The end of life date of the gallery /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. - /// Possible values include: - /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', - /// 'Migrating' + /// The properties describe the recommended + /// machine configuration for this Image Definition. These properties + /// are updatable. + /// Describes the disallowed disk + /// types. + /// Describes the gallery image definition + /// purchase plan. This is used by marketplace images. + /// The provisioning state, which only + /// appears in the response. Possible values include: 'Creating', + /// 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' /// A list of gallery image features. - /// Possible values include: 'x64', + /// The architecture of the image. + /// Applicable to OS disks only. Possible values include: 'x64', /// 'Arm64' /// Optional. Must be set to true if the /// gallery image features are being updated. @@ -155,27 +165,35 @@ public GalleryImage() public System.DateTime? EndOfLifeDate { get; set; } /// + /// Gets or sets this is the gallery image definition identifier. /// [JsonProperty(PropertyName = "properties.identifier")] public GalleryImageIdentifier Identifier { get; set; } /// + /// Gets or sets the properties describe the recommended machine + /// configuration for this Image Definition. These properties are + /// updatable. /// [JsonProperty(PropertyName = "properties.recommended")] public RecommendedMachineConfiguration Recommended { get; set; } /// + /// Gets or sets describes the disallowed disk types. /// [JsonProperty(PropertyName = "properties.disallowed")] public Disallowed Disallowed { get; set; } /// + /// Gets or sets describes the gallery image definition purchase plan. + /// This is used by marketplace images. /// [JsonProperty(PropertyName = "properties.purchasePlan")] public ImagePurchasePlan PurchasePlan { get; set; } /// - /// Gets possible values include: 'Creating', 'Updating', 'Failed', + /// Gets the provisioning state, which only appears in the response. + /// Possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' /// [JsonProperty(PropertyName = "properties.provisioningState")] @@ -188,7 +206,8 @@ public GalleryImage() public IList Features { get; set; } /// - /// Gets or sets possible values include: 'x64', 'Arm64' + /// Gets or sets the architecture of the image. Applicable to OS disks + /// only. Possible values include: 'x64', 'Arm64' /// [JsonProperty(PropertyName = "properties.architecture")] public string Architecture { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageUpdate.cs index 80d3507fb961..d84f7062b1e7 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageUpdate.cs @@ -43,6 +43,8 @@ public GalleryImageUpdate() /// whether the virtual machines created under this image are /// 'Generalized' or 'Specialized'. Possible values include: /// 'Generalized', 'Specialized' + /// This is the gallery image definition + /// identifier. /// Resource Id /// Resource name /// Resource type @@ -60,11 +62,19 @@ public GalleryImageUpdate() /// The end of life date of the gallery /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. - /// Possible values include: - /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', - /// 'Migrating' + /// The properties describe the recommended + /// machine configuration for this Image Definition. These properties + /// are updatable. + /// Describes the disallowed disk + /// types. + /// Describes the gallery image definition + /// purchase plan. This is used by marketplace images. + /// The provisioning state, which only + /// appears in the response. Possible values include: 'Creating', + /// 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' /// A list of gallery image features. - /// Possible values include: 'x64', + /// The architecture of the image. + /// Applicable to OS disks only. Possible values include: 'x64', /// 'Arm64' /// Optional. Must be set to true if the /// gallery image features are being updated. @@ -154,27 +164,35 @@ public GalleryImageUpdate() public System.DateTime? EndOfLifeDate { get; set; } /// + /// Gets or sets this is the gallery image definition identifier. /// [JsonProperty(PropertyName = "properties.identifier")] public GalleryImageIdentifier Identifier { get; set; } /// + /// Gets or sets the properties describe the recommended machine + /// configuration for this Image Definition. These properties are + /// updatable. /// [JsonProperty(PropertyName = "properties.recommended")] public RecommendedMachineConfiguration Recommended { get; set; } /// + /// Gets or sets describes the disallowed disk types. /// [JsonProperty(PropertyName = "properties.disallowed")] public Disallowed Disallowed { get; set; } /// + /// Gets or sets describes the gallery image definition purchase plan. + /// This is used by marketplace images. /// [JsonProperty(PropertyName = "properties.purchasePlan")] public ImagePurchasePlan PurchasePlan { get; set; } /// - /// Gets possible values include: 'Creating', 'Updating', 'Failed', + /// Gets the provisioning state, which only appears in the response. + /// Possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' /// [JsonProperty(PropertyName = "properties.provisioningState")] @@ -187,7 +205,8 @@ public GalleryImageUpdate() public IList Features { get; set; } /// - /// Gets or sets possible values include: 'x64', 'Arm64' + /// Gets or sets the architecture of the image. Applicable to OS disks + /// only. Possible values include: 'x64', 'Arm64' /// [JsonProperty(PropertyName = "properties.architecture")] public string Architecture { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersion.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersion.cs index 714b7e85275b..17165b62d421 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersion.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersion.cs @@ -36,15 +36,27 @@ public GalleryImageVersion() /// Initializes a new instance of the GalleryImageVersion class. /// /// Resource location + /// This is the storage profile of a + /// Gallery Image Version. /// Resource Id /// Resource name /// Resource type /// Resource tags - /// Possible values include: - /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', - /// 'Migrating' + /// The publishing profile of a gallery + /// image Version. + /// The provisioning state, which only + /// appears in the response. Possible values include: 'Creating', + /// 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' + /// This is the safety profile of the + /// Gallery Image Version. + /// This is the replication status of + /// the gallery image version. + /// The security profile of a gallery + /// image version /// Indicates if this is a soft-delete resource /// restoration request. + /// This is the validations profile of + /// a Gallery Image Version. public GalleryImageVersion(string location, GalleryImageVersionStorageProfile storageProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryImageVersionPublishingProfile publishingProfile = default(GalleryImageVersionPublishingProfile), string provisioningState = default(string), GalleryImageVersionSafetyProfile safetyProfile = default(GalleryImageVersionSafetyProfile), ReplicationStatus replicationStatus = default(ReplicationStatus), ImageVersionSecurityProfile securityProfile = default(ImageVersionSecurityProfile), bool? restore = default(bool?), ValidationsProfile validationsProfile = default(ValidationsProfile)) : base(location, id, name, type, tags) { @@ -65,33 +77,41 @@ public GalleryImageVersion() partial void CustomInit(); /// + /// Gets or sets the publishing profile of a gallery image Version. /// [JsonProperty(PropertyName = "properties.publishingProfile")] public GalleryImageVersionPublishingProfile PublishingProfile { get; set; } /// - /// Gets possible values include: 'Creating', 'Updating', 'Failed', + /// Gets the provisioning state, which only appears in the response. + /// Possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } /// + /// Gets or sets this is the storage profile of a Gallery Image + /// Version. /// [JsonProperty(PropertyName = "properties.storageProfile")] public GalleryImageVersionStorageProfile StorageProfile { get; set; } /// + /// Gets or sets this is the safety profile of the Gallery Image + /// Version. /// [JsonProperty(PropertyName = "properties.safetyProfile")] public GalleryImageVersionSafetyProfile SafetyProfile { get; set; } /// + /// Gets this is the replication status of the gallery image version. /// [JsonProperty(PropertyName = "properties.replicationStatus")] public ReplicationStatus ReplicationStatus { get; private set; } /// + /// Gets or sets the security profile of a gallery image version /// [JsonProperty(PropertyName = "properties.securityProfile")] public ImageVersionSecurityProfile SecurityProfile { get; set; } @@ -104,6 +124,7 @@ public GalleryImageVersion() public bool? Restore { get; set; } /// + /// Gets this is the validations profile of a Gallery Image Version. /// [JsonProperty(PropertyName = "properties.validationsProfile")] public ValidationsProfile ValidationsProfile { get; private set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionStorageProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionStorageProfile.cs index 11eb18005aae..54e84b0c8a61 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionStorageProfile.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionStorageProfile.cs @@ -33,6 +33,9 @@ public GalleryImageVersionStorageProfile() /// Initializes a new instance of the GalleryImageVersionStorageProfile /// class. /// + /// The source of the gallery artifact + /// version. + /// This is the OS disk image. /// A list of data disk images. public GalleryImageVersionStorageProfile(GalleryArtifactVersionFullSource source = default(GalleryArtifactVersionFullSource), GalleryOSDiskImage osDiskImage = default(GalleryOSDiskImage), IList dataDiskImages = default(IList)) { @@ -48,11 +51,13 @@ public GalleryImageVersionStorageProfile() partial void CustomInit(); /// + /// Gets or sets the source of the gallery artifact version. /// [JsonProperty(PropertyName = "source")] public GalleryArtifactVersionFullSource Source { get; set; } /// + /// Gets or sets this is the OS disk image. /// [JsonProperty(PropertyName = "osDiskImage")] public GalleryOSDiskImage OsDiskImage { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionUefiSettings.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionUefiSettings.cs index 705c2bbcfaae..148013ee1c43 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionUefiSettings.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionUefiSettings.cs @@ -36,6 +36,9 @@ public GalleryImageVersionUefiSettings() /// The name of the template(s) /// that contains default UEFI key signatures that will be added to the /// image. + /// Additional UEFI key signatures + /// that will be added to the image in addition to the signature + /// templates public GalleryImageVersionUefiSettings(IList signatureTemplateNames = default(IList), UefiKeySignatures additionalSignatures = default(UefiKeySignatures)) { SignatureTemplateNames = signatureTemplateNames; @@ -56,6 +59,8 @@ public GalleryImageVersionUefiSettings() public IList SignatureTemplateNames { get; set; } /// + /// Gets or sets additional UEFI key signatures that will be added to + /// the image in addition to the signature templates /// [JsonProperty(PropertyName = "additionalSignatures")] public UefiKeySignatures AdditionalSignatures { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionUpdate.cs index 66341cd66f62..8b597c5025ae 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionUpdate.cs @@ -35,15 +35,27 @@ public GalleryImageVersionUpdate() /// /// Initializes a new instance of the GalleryImageVersionUpdate class. /// + /// This is the storage profile of a + /// Gallery Image Version. /// Resource Id /// Resource name /// Resource type /// Resource tags - /// Possible values include: - /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', - /// 'Migrating' + /// The publishing profile of a gallery + /// image Version. + /// The provisioning state, which only + /// appears in the response. Possible values include: 'Creating', + /// 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' + /// This is the safety profile of the + /// Gallery Image Version. + /// This is the replication status of + /// the gallery image version. + /// The security profile of a gallery + /// image version /// Indicates if this is a soft-delete resource /// restoration request. + /// This is the validations profile of + /// a Gallery Image Version. public GalleryImageVersionUpdate(GalleryImageVersionStorageProfile storageProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryImageVersionPublishingProfile publishingProfile = default(GalleryImageVersionPublishingProfile), string provisioningState = default(string), GalleryImageVersionSafetyProfile safetyProfile = default(GalleryImageVersionSafetyProfile), ReplicationStatus replicationStatus = default(ReplicationStatus), ImageVersionSecurityProfile securityProfile = default(ImageVersionSecurityProfile), bool? restore = default(bool?), ValidationsProfile validationsProfile = default(ValidationsProfile)) : base(id, name, type, tags) { @@ -64,33 +76,41 @@ public GalleryImageVersionUpdate() partial void CustomInit(); /// + /// Gets or sets the publishing profile of a gallery image Version. /// [JsonProperty(PropertyName = "properties.publishingProfile")] public GalleryImageVersionPublishingProfile PublishingProfile { get; set; } /// - /// Gets possible values include: 'Creating', 'Updating', 'Failed', + /// Gets the provisioning state, which only appears in the response. + /// Possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } /// + /// Gets or sets this is the storage profile of a Gallery Image + /// Version. /// [JsonProperty(PropertyName = "properties.storageProfile")] public GalleryImageVersionStorageProfile StorageProfile { get; set; } /// + /// Gets or sets this is the safety profile of the Gallery Image + /// Version. /// [JsonProperty(PropertyName = "properties.safetyProfile")] public GalleryImageVersionSafetyProfile SafetyProfile { get; set; } /// + /// Gets this is the replication status of the gallery image version. /// [JsonProperty(PropertyName = "properties.replicationStatus")] public ReplicationStatus ReplicationStatus { get; private set; } /// + /// Gets or sets the security profile of a gallery image version /// [JsonProperty(PropertyName = "properties.securityProfile")] public ImageVersionSecurityProfile SecurityProfile { get; set; } @@ -103,6 +123,7 @@ public GalleryImageVersionUpdate() public bool? Restore { get; set; } /// + /// Gets this is the validations profile of a Gallery Image Version. /// [JsonProperty(PropertyName = "properties.validationsProfile")] public ValidationsProfile ValidationsProfile { get; private set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionsCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionsCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..21cd6dcce80a --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionsCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class GalleryImageVersionsCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// GalleryImageVersionsCreateOrUpdateHeaders class. + /// + public GalleryImageVersionsCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// GalleryImageVersionsCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleryImageVersionsCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionsUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionsUpdateHeaders.cs new file mode 100644 index 000000000000..79ef50659122 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImageVersionsUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Update operation. + /// + public partial class GalleryImageVersionsUpdateHeaders + { + /// + /// Initializes a new instance of the GalleryImageVersionsUpdateHeaders + /// class. + /// + public GalleryImageVersionsUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the GalleryImageVersionsUpdateHeaders + /// class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleryImageVersionsUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImagesCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImagesCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..b3fb24898be3 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImagesCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class GalleryImagesCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// GalleryImagesCreateOrUpdateHeaders class. + /// + public GalleryImagesCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// GalleryImagesCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleryImagesCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImagesUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImagesUpdateHeaders.cs new file mode 100644 index 000000000000..f4c75f75cf53 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryImagesUpdateHeaders.cs @@ -0,0 +1,64 @@ +// +// 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 Update operation. + /// + public partial class GalleryImagesUpdateHeaders + { + /// + /// Initializes a new instance of the GalleryImagesUpdateHeaders class. + /// + public GalleryImagesUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the GalleryImagesUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleryImagesUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfile.cs index 0bd68adeafc2..ffd7e2c17e28 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfile.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfile.cs @@ -39,6 +39,8 @@ public GalleryInVMAccessControlProfile() /// Resource name /// Resource type /// Resource tags + /// Describes the properties of a gallery + /// inVMAccessControlProfile. public GalleryInVMAccessControlProfile(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryInVMAccessControlProfileProperties properties = default(GalleryInVMAccessControlProfileProperties)) : base(location, id, name, type, tags) { @@ -52,6 +54,8 @@ public GalleryInVMAccessControlProfile() partial void CustomInit(); /// + /// Gets or sets describes the properties of a gallery + /// inVMAccessControlProfile. /// [JsonProperty(PropertyName = "properties")] public GalleryInVMAccessControlProfileProperties Properties { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileProperties.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileProperties.cs index 12f36239d249..76213ceb0dd2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileProperties.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileProperties.cs @@ -39,9 +39,9 @@ public GalleryInVMAccessControlProfileProperties() /// specify the Endpoint type for which this profile is defining the /// access control for. Possible values are: 'WireServer' or 'IMDS'. /// Possible values include: 'WireServer', 'IMDS' - /// Possible values include: - /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', - /// 'Migrating' + /// The provisioning state, which only + /// appears in the response. Possible values include: 'Creating', + /// 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' /// The description of this gallery /// inVMAccessControlProfile resources. This property is /// updatable. diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileUpdate.cs index dea7d6531825..c74622b1ef7b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileUpdate.cs @@ -38,6 +38,8 @@ public GalleryInVMAccessControlProfileUpdate() /// Resource name /// Resource type /// Resource tags + /// Describes the properties of a gallery + /// inVMAccessControlProfile. public GalleryInVMAccessControlProfileUpdate(string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryInVMAccessControlProfileProperties properties = default(GalleryInVMAccessControlProfileProperties)) : base(id, name, type, tags) { @@ -51,6 +53,8 @@ public GalleryInVMAccessControlProfileUpdate() partial void CustomInit(); /// + /// Gets or sets describes the properties of a gallery + /// inVMAccessControlProfile. /// [JsonProperty(PropertyName = "properties")] public GalleryInVMAccessControlProfileProperties Properties { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersion.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersion.cs index a80c40361b6b..c97f67e2c5ff 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersion.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersion.cs @@ -58,9 +58,13 @@ public GalleryInVMAccessControlProfileVersion() /// this Profile version. /// The timestamp for when the Resource /// Profile Version is published. - /// Possible values include: - /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', - /// 'Migrating' + /// The provisioning state, which only + /// appears in the response. Possible values include: 'Creating', + /// 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' + /// This is the replication status of + /// the gallery image version. + /// This is the Access Control Rules specification + /// for an inVMAccessControlProfile version. public GalleryInVMAccessControlProfileVersion(string location, string mode, string defaultAccess, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList targetLocations = default(IList), bool? excludeFromLatest = default(bool?), System.DateTime? publishedDate = default(System.DateTime?), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus), AccessControlRules rules = default(AccessControlRules)) : base(location, id, name, type, tags) { @@ -103,13 +107,15 @@ public GalleryInVMAccessControlProfileVersion() public System.DateTime? PublishedDate { get; private set; } /// - /// Gets possible values include: 'Creating', 'Updating', 'Failed', + /// Gets the provisioning state, which only appears in the response. + /// Possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } /// + /// Gets this is the replication status of the gallery image version. /// [JsonProperty(PropertyName = "properties.replicationStatus")] public ReplicationStatus ReplicationStatus { get; private set; } @@ -132,6 +138,8 @@ public GalleryInVMAccessControlProfileVersion() public string DefaultAccess { get; set; } /// + /// Gets or sets this is the Access Control Rules specification for an + /// inVMAccessControlProfile version. /// [JsonProperty(PropertyName = "properties.rules")] public AccessControlRules Rules { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionUpdate.cs index 1828395c4229..c7a645315eca 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionUpdate.cs @@ -57,9 +57,13 @@ public GalleryInVMAccessControlProfileVersionUpdate() /// this Profile version. /// The timestamp for when the Resource /// Profile Version is published. - /// Possible values include: - /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', - /// 'Migrating' + /// The provisioning state, which only + /// appears in the response. Possible values include: 'Creating', + /// 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' + /// This is the replication status of + /// the gallery image version. + /// This is the Access Control Rules specification + /// for an inVMAccessControlProfile version. public GalleryInVMAccessControlProfileVersionUpdate(string mode, string defaultAccess, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList targetLocations = default(IList), bool? excludeFromLatest = default(bool?), System.DateTime? publishedDate = default(System.DateTime?), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus), AccessControlRules rules = default(AccessControlRules)) : base(id, name, type, tags) { @@ -102,13 +106,15 @@ public GalleryInVMAccessControlProfileVersionUpdate() public System.DateTime? PublishedDate { get; private set; } /// - /// Gets possible values include: 'Creating', 'Updating', 'Failed', + /// Gets the provisioning state, which only appears in the response. + /// Possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } /// + /// Gets this is the replication status of the gallery image version. /// [JsonProperty(PropertyName = "properties.replicationStatus")] public ReplicationStatus ReplicationStatus { get; private set; } @@ -131,6 +137,8 @@ public GalleryInVMAccessControlProfileVersionUpdate() public string DefaultAccess { get; set; } /// + /// Gets or sets this is the Access Control Rules specification for an + /// inVMAccessControlProfile version. /// [JsonProperty(PropertyName = "properties.rules")] public AccessControlRules Rules { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionsCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionsCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..9b22438134b3 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionsCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class GalleryInVMAccessControlProfileVersionsCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// GalleryInVMAccessControlProfileVersionsCreateOrUpdateHeaders class. + /// + public GalleryInVMAccessControlProfileVersionsCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// GalleryInVMAccessControlProfileVersionsCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleryInVMAccessControlProfileVersionsCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionsDeleteHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionsDeleteHeaders.cs index af66dd8e917a..0ed361b03106 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionsDeleteHeaders.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionsDeleteHeaders.cs @@ -31,10 +31,14 @@ public GalleryInVMAccessControlProfileVersionsDeleteHeaders() /// Initializes a new instance of the /// GalleryInVMAccessControlProfileVersionsDeleteHeaders class. /// - public GalleryInVMAccessControlProfileVersionsDeleteHeaders(string location = default(string), string azureAsyncOperation = default(string)) + /// A link to the status + /// monitor + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + public GalleryInVMAccessControlProfileVersionsDeleteHeaders(string azureAsyncOperation = default(string), string location = default(string)) { - Location = location; AzureAsyncOperation = azureAsyncOperation; + Location = location; CustomInit(); } @@ -44,14 +48,17 @@ public GalleryInVMAccessControlProfileVersionsDeleteHeaders() partial void CustomInit(); /// + /// Gets or sets a link to the status monitor /// - [JsonProperty(PropertyName = "Location")] - public string Location { get; set; } + [JsonProperty(PropertyName = "Azure-AsyncOperation")] + public string AzureAsyncOperation { get; set; } /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. /// - [JsonProperty(PropertyName = "Azure-AsyncOperation")] - public string AzureAsyncOperation { get; set; } + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionsUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionsUpdateHeaders.cs new file mode 100644 index 000000000000..d834dc7137c0 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfileVersionsUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Update operation. + /// + public partial class GalleryInVMAccessControlProfileVersionsUpdateHeaders + { + /// + /// Initializes a new instance of the + /// GalleryInVMAccessControlProfileVersionsUpdateHeaders class. + /// + public GalleryInVMAccessControlProfileVersionsUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// GalleryInVMAccessControlProfileVersionsUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleryInVMAccessControlProfileVersionsUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfilesCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfilesCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..733a85469314 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfilesCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class GalleryInVMAccessControlProfilesCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// GalleryInVMAccessControlProfilesCreateOrUpdateHeaders class. + /// + public GalleryInVMAccessControlProfilesCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// GalleryInVMAccessControlProfilesCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleryInVMAccessControlProfilesCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfilesDeleteHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfilesDeleteHeaders.cs index 9dd6f0d77dcf..b2d66f67a9ca 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfilesDeleteHeaders.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfilesDeleteHeaders.cs @@ -31,10 +31,14 @@ public GalleryInVMAccessControlProfilesDeleteHeaders() /// Initializes a new instance of the /// GalleryInVMAccessControlProfilesDeleteHeaders class. /// - public GalleryInVMAccessControlProfilesDeleteHeaders(string location = default(string), string azureAsyncOperation = default(string)) + /// A link to the status + /// monitor + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + public GalleryInVMAccessControlProfilesDeleteHeaders(string azureAsyncOperation = default(string), string location = default(string)) { - Location = location; AzureAsyncOperation = azureAsyncOperation; + Location = location; CustomInit(); } @@ -44,14 +48,17 @@ public GalleryInVMAccessControlProfilesDeleteHeaders() partial void CustomInit(); /// + /// Gets or sets a link to the status monitor /// - [JsonProperty(PropertyName = "Location")] - public string Location { get; set; } + [JsonProperty(PropertyName = "Azure-AsyncOperation")] + public string AzureAsyncOperation { get; set; } /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. /// - [JsonProperty(PropertyName = "Azure-AsyncOperation")] - public string AzureAsyncOperation { get; set; } + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfilesUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfilesUpdateHeaders.cs new file mode 100644 index 000000000000..4d19b6bdc86b --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryInVMAccessControlProfilesUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Update operation. + /// + public partial class GalleryInVMAccessControlProfilesUpdateHeaders + { + /// + /// Initializes a new instance of the + /// GalleryInVMAccessControlProfilesUpdateHeaders class. + /// + public GalleryInVMAccessControlProfilesUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// GalleryInVMAccessControlProfilesUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public GalleryInVMAccessControlProfilesUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryOSDiskImage.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryOSDiskImage.cs index ebfdc5930db6..58dda2cfdcec 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryOSDiskImage.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryOSDiskImage.cs @@ -33,6 +33,7 @@ public GalleryOSDiskImage() /// The host caching of the disk. Valid /// values are 'None', 'ReadOnly', and 'ReadWrite'. Possible values /// include: 'None', 'ReadOnly', 'ReadWrite' + /// The source for the disk image. public GalleryOSDiskImage(int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryDiskImageSource source = default(GalleryDiskImageSource)) : base(sizeInGB, hostCaching, source) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryResourceProfilePropertiesBase.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryResourceProfilePropertiesBase.cs index 7722528100d0..c37d30f60a05 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryResourceProfilePropertiesBase.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryResourceProfilePropertiesBase.cs @@ -31,9 +31,9 @@ public GalleryResourceProfilePropertiesBase() /// Initializes a new instance of the /// GalleryResourceProfilePropertiesBase class. /// - /// Possible values include: - /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', - /// 'Migrating' + /// The provisioning state, which only + /// appears in the response. Possible values include: 'Creating', + /// 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' public GalleryResourceProfilePropertiesBase(string provisioningState = default(string)) { ProvisioningState = provisioningState; @@ -46,7 +46,8 @@ public GalleryResourceProfilePropertiesBase() partial void CustomInit(); /// - /// Gets possible values include: 'Creating', 'Updating', 'Failed', + /// Gets the provisioning state, which only appears in the response. + /// Possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' /// [JsonProperty(PropertyName = "provisioningState")] diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryResourceProfileVersionPropertiesBase.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryResourceProfileVersionPropertiesBase.cs index 3b846a68aa38..634cedcb8d22 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryResourceProfileVersionPropertiesBase.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryResourceProfileVersionPropertiesBase.cs @@ -41,9 +41,11 @@ public GalleryResourceProfileVersionPropertiesBase() /// this Profile version. /// The timestamp for when the Resource /// Profile Version is published. - /// Possible values include: - /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', - /// 'Migrating' + /// The provisioning state, which only + /// appears in the response. Possible values include: 'Creating', + /// 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' + /// This is the replication status of + /// the gallery image version. public GalleryResourceProfileVersionPropertiesBase(IList targetLocations = default(IList), bool? excludeFromLatest = default(bool?), System.DateTime? publishedDate = default(System.DateTime?), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus)) { TargetLocations = targetLocations; @@ -82,13 +84,15 @@ public GalleryResourceProfileVersionPropertiesBase() public System.DateTime? PublishedDate { get; private set; } /// - /// Gets possible values include: 'Creating', 'Updating', 'Failed', + /// Gets the provisioning state, which only appears in the response. + /// Possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' /// [JsonProperty(PropertyName = "provisioningState")] public string ProvisioningState { get; private set; } /// + /// Gets this is the replication status of the gallery image version. /// [JsonProperty(PropertyName = "replicationStatus")] public ReplicationStatus ReplicationStatus { get; private set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryTargetExtendedLocation.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryTargetExtendedLocation.cs index e352c10ef68d..0cc8c85ba519 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryTargetExtendedLocation.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryTargetExtendedLocation.cs @@ -29,6 +29,8 @@ public GalleryTargetExtendedLocation() /// class. /// /// The name of the region. + /// The name of the extended + /// location. /// The number of replicas /// of the Image Version to be created per extended location. This /// property is updatable. @@ -36,6 +38,9 @@ public GalleryTargetExtendedLocation() /// to be used to store the image. This property is not updatable. /// Possible values include: 'Standard_LRS', 'Standard_ZRS', /// 'StandardSSD_LRS', 'Premium_LRS' + /// Optional. Allows users to provide customer + /// managed keys for encrypting the OS and data disks in the gallery + /// artifact. public GalleryTargetExtendedLocation(string name = default(string), GalleryExtendedLocation extendedLocation = default(GalleryExtendedLocation), int? extendedLocationReplicaCount = default(int?), string storageAccountType = default(string), EncryptionImages encryption = default(EncryptionImages)) { Name = name; @@ -58,6 +63,7 @@ public GalleryTargetExtendedLocation() public string Name { get; set; } /// + /// Gets or sets the name of the extended location. /// [JsonProperty(PropertyName = "extendedLocation")] public GalleryExtendedLocation ExtendedLocation { get; set; } @@ -78,6 +84,8 @@ public GalleryTargetExtendedLocation() public string StorageAccountType { get; set; } /// + /// Gets or sets optional. Allows users to provide customer managed + /// keys for encrypting the OS and data disks in the gallery artifact. /// [JsonProperty(PropertyName = "encryption")] public EncryptionImages Encryption { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryUpdate.cs index 2120e8b96baa..48a0a03c7d9c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GalleryUpdate.cs @@ -41,9 +41,16 @@ public GalleryUpdate() /// Resource tags /// The description of this Shared Image /// Gallery resource. This property is updatable. - /// Possible values include: - /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', - /// 'Migrating' + /// Describes the gallery unique name. + /// The provisioning state, which only + /// appears in the response. Possible values include: 'Creating', + /// 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' + /// Profile for gallery sharing to + /// subscription or tenant + /// Contains information about the soft + /// deletion policy of the gallery. + /// Sharing status of current + /// gallery. /// The identity of the gallery, if /// configured. public GalleryUpdate(string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), GalleryIdentifier identifier = default(GalleryIdentifier), string provisioningState = default(string), SharingProfile sharingProfile = default(SharingProfile), SoftDeletePolicy softDeletePolicy = default(SoftDeletePolicy), SharingStatus sharingStatus = default(SharingStatus), GalleryIdentity identity = default(GalleryIdentity)) @@ -72,28 +79,34 @@ public GalleryUpdate() public string Description { get; set; } /// + /// Gets or sets describes the gallery unique name. /// [JsonProperty(PropertyName = "properties.identifier")] public GalleryIdentifier Identifier { get; set; } /// - /// Gets possible values include: 'Creating', 'Updating', 'Failed', + /// Gets the provisioning state, which only appears in the response. + /// Possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } /// + /// Gets or sets profile for gallery sharing to subscription or tenant /// [JsonProperty(PropertyName = "properties.sharingProfile")] public SharingProfile SharingProfile { get; set; } /// + /// Gets or sets contains information about the soft deletion policy of + /// the gallery. /// [JsonProperty(PropertyName = "properties.softDeletePolicy")] public SoftDeletePolicy SoftDeletePolicy { get; set; } /// + /// Gets sharing status of current gallery. /// [JsonProperty(PropertyName = "properties.sharingStatus")] public SharingStatus SharingStatus { get; private set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/GrantAccessData.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/GrantAccessData.cs index 8f66eabdad7a..f4b26f8af41b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/GrantAccessData.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/GrantAccessData.cs @@ -30,7 +30,8 @@ public GrantAccessData() /// /// Initializes a new instance of the GrantAccessData class. /// - /// Possible values include: 'None', 'Read', + /// The Access Level, accepted values include + /// None, Read, Write. Possible values include: 'None', 'Read', /// 'Write' /// Time duration in seconds until the /// SAS access expires. @@ -54,7 +55,8 @@ public GrantAccessData() partial void CustomInit(); /// - /// Gets or sets possible values include: 'None', 'Read', 'Write' + /// Gets or sets the Access Level, accepted values include None, Read, + /// Write. Possible values include: 'None', 'Read', 'Write' /// [JsonProperty(PropertyName = "access")] public string Access { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/ImageDeprecationStatus.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ImageDeprecationStatus.cs index 208098b11215..e3485a205445 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/ImageDeprecationStatus.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/ImageDeprecationStatus.cs @@ -35,6 +35,9 @@ public ImageDeprecationStatus() /// The time, in future, at /// which this image will be marked as deprecated. This scheduled time /// is chosen by the Publisher. + /// Describes the alternative option + /// specified by the Publisher for this image when this image is + /// deprecated. public ImageDeprecationStatus(string imageState = default(string), System.DateTime? scheduledDeprecationTime = default(System.DateTime?), AlternativeOption alternativeOption = default(AlternativeOption)) { ImageState = imageState; @@ -64,6 +67,8 @@ public ImageDeprecationStatus() public System.DateTime? ScheduledDeprecationTime { get; set; } /// + /// Gets or sets describes the alternative option specified by the + /// Publisher for this image when this image is deprecated. /// [JsonProperty(PropertyName = "alternativeOption")] public AlternativeOption AlternativeOption { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/ImageVersionSecurityProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ImageVersionSecurityProfile.cs index 1116af7ecaa4..f4aece728648 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/ImageVersionSecurityProfile.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/ImageVersionSecurityProfile.cs @@ -31,6 +31,8 @@ public ImageVersionSecurityProfile() /// Initializes a new instance of the ImageVersionSecurityProfile /// class. /// + /// Contains UEFI settings for the image + /// version. public ImageVersionSecurityProfile(GalleryImageVersionUefiSettings uefiSettings = default(GalleryImageVersionUefiSettings)) { UefiSettings = uefiSettings; @@ -43,6 +45,7 @@ public ImageVersionSecurityProfile() partial void CustomInit(); /// + /// Gets or sets contains UEFI settings for the image version. /// [JsonProperty(PropertyName = "uefiSettings")] public GalleryImageVersionUefiSettings UefiSettings { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/ImagesCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ImagesCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..98efc700f60e --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/ImagesCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class ImagesCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the ImagesCreateOrUpdateHeaders + /// class. + /// + public ImagesCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ImagesCreateOrUpdateHeaders + /// class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public ImagesCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/ImagesUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ImagesUpdateHeaders.cs new file mode 100644 index 000000000000..5961f90f00ed --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/ImagesUpdateHeaders.cs @@ -0,0 +1,64 @@ +// +// 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 Update operation. + /// + public partial class ImagesUpdateHeaders + { + /// + /// Initializes a new instance of the ImagesUpdateHeaders class. + /// + public ImagesUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ImagesUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public ImagesUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/InstanceSku.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/InstanceSku.cs deleted file mode 100644 index 2ca696b88b11..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/InstanceSku.cs +++ /dev/null @@ -1,60 +0,0 @@ -// -// 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; - - /// - /// The role instance SKU. - /// - public partial class InstanceSku - { - /// - /// Initializes a new instance of the InstanceSku class. - /// - public InstanceSku() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the InstanceSku class. - /// - /// The sku name. - /// The tier of the cloud service role - /// instance. - public InstanceSku(string name = default(string), string tier = default(string)) - { - Name = name; - Tier = tier; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the sku name. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets the tier of the cloud service role instance. - /// - [JsonProperty(PropertyName = "tier")] - public string Tier { get; private set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/InstanceViewStatusesSummary.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/InstanceViewStatusesSummary.cs deleted file mode 100644 index f8439a52e1f8..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/InstanceViewStatusesSummary.cs +++ /dev/null @@ -1,55 +0,0 @@ -// -// 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.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Instance view statuses. - /// - public partial class InstanceViewStatusesSummary - { - /// - /// Initializes a new instance of the InstanceViewStatusesSummary - /// class. - /// - public InstanceViewStatusesSummary() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the InstanceViewStatusesSummary - /// class. - /// - /// The summary. - public InstanceViewStatusesSummary(IList statusesSummary = default(IList)) - { - StatusesSummary = statusesSummary; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the summary. - /// - [JsonProperty(PropertyName = "statusesSummary")] - public IList StatusesSummary { get; private set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/InstanceViewTypes.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/InstanceViewTypes.cs index 0b476450d573..69a53962bbac 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/InstanceViewTypes.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/InstanceViewTypes.cs @@ -24,7 +24,9 @@ public enum InstanceViewTypes [EnumMember(Value = "instanceView")] InstanceView, [EnumMember(Value = "userData")] - UserData + UserData, + [EnumMember(Value = "resiliencyView")] + ResiliencyView } internal static class InstanceViewTypesEnumExtension { @@ -41,6 +43,8 @@ internal static string ToSerializedValue(this InstanceViewTypes value) return "instanceView"; case InstanceViewTypes.UserData: return "userData"; + case InstanceViewTypes.ResiliencyView: + return "resiliencyView"; } return null; } @@ -53,6 +57,8 @@ internal static string ToSerializedValue(this InstanceViewTypes value) return InstanceViewTypes.InstanceView; case "userData": return InstanceViewTypes.UserData; + case "resiliencyView": + return InstanceViewTypes.ResiliencyView; } return null; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/KeyVaultProperties.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/KeyVaultProperties.cs new file mode 100644 index 000000000000..891346e17c37 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/KeyVaultProperties.cs @@ -0,0 +1,59 @@ +// +// 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; + + public partial class KeyVaultProperties + { + /// + /// Initializes a new instance of the KeyVaultProperties class. + /// + public KeyVaultProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the KeyVaultProperties class. + /// + /// Key vault uri to access the encryption + /// key. + /// The client ID of the identity which will be + /// used to access key vault. + public KeyVaultProperties(string keyIdentifier = default(string), string identity = default(string)) + { + KeyIdentifier = keyIdentifier; + Identity = identity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets key vault uri to access the encryption key. + /// + [JsonProperty(PropertyName = "keyIdentifier")] + public string KeyIdentifier { get; set; } + + /// + /// Gets or sets the client ID of the identity which will be used to + /// access key vault. + /// + [JsonProperty(PropertyName = "identity")] + public string Identity { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/LatestGalleryImageVersion.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/LatestGalleryImageVersion.cs deleted file mode 100644 index a9d7710f2466..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/LatestGalleryImageVersion.cs +++ /dev/null @@ -1,60 +0,0 @@ -// -// 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; - - /// - /// The gallery image version with latest version in a particular region. - /// - public partial class LatestGalleryImageVersion - { - /// - /// Initializes a new instance of the LatestGalleryImageVersion class. - /// - public LatestGalleryImageVersion() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the LatestGalleryImageVersion class. - /// - /// The name of the latest version in - /// the region. - /// region of the Gallery Image Version. - public LatestGalleryImageVersion(string latestVersionName = default(string), string location = default(string)) - { - LatestVersionName = latestVersionName; - Location = location; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the name of the latest version in the region. - /// - [JsonProperty(PropertyName = "latestVersionName")] - public string LatestVersionName { get; set; } - - /// - /// Gets or sets region of the Gallery Image Version. - /// - [JsonProperty(PropertyName = "location")] - public string Location { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/LoadBalancerConfiguration.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/LoadBalancerConfiguration.cs deleted file mode 100644 index f9f18299ba25..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/LoadBalancerConfiguration.cs +++ /dev/null @@ -1,90 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Describes the load balancer configuration. - /// - public partial class LoadBalancerConfiguration - { - /// - /// Initializes a new instance of the LoadBalancerConfiguration class. - /// - public LoadBalancerConfiguration() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the LoadBalancerConfiguration class. - /// - /// The name of the Load balancer - /// Properties of the load balancer - /// configuration. - /// Resource Id - public LoadBalancerConfiguration(string name, LoadBalancerConfigurationProperties properties, string id = default(string)) - { - Id = id; - Name = name; - Properties = properties; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets resource Id - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; set; } - - /// - /// Gets or sets the name of the Load balancer - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// Gets or sets properties of the load balancer configuration. - /// - [JsonProperty(PropertyName = "properties")] - public LoadBalancerConfigurationProperties Properties { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Name == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Name"); - } - if (Properties == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Properties"); - } - if (Properties != null) - { - Properties.Validate(); - } - } - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/LoadBalancerConfigurationProperties.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/LoadBalancerConfigurationProperties.cs deleted file mode 100644 index 5a9d1d82dc75..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/LoadBalancerConfigurationProperties.cs +++ /dev/null @@ -1,85 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Describes the properties of the load balancer configuration. - /// - public partial class LoadBalancerConfigurationProperties - { - /// - /// Initializes a new instance of the - /// LoadBalancerConfigurationProperties class. - /// - public LoadBalancerConfigurationProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// LoadBalancerConfigurationProperties class. - /// - /// Specifies the frontend IP to - /// be used for the load balancer. Only IPv4 frontend IP address is - /// supported. Each load balancer configuration must have exactly one - /// frontend IP configuration. - public LoadBalancerConfigurationProperties(IList frontendIpConfigurations) - { - FrontendIpConfigurations = frontendIpConfigurations; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets specifies the frontend IP to be used for the load - /// balancer. Only IPv4 frontend IP address is supported. Each load - /// balancer configuration must have exactly one frontend IP - /// configuration. - /// - [JsonProperty(PropertyName = "frontendIpConfigurations")] - public IList FrontendIpConfigurations { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (FrontendIpConfigurations == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "FrontendIpConfigurations"); - } - if (FrontendIpConfigurations != null) - { - foreach (var element in FrontendIpConfigurations) - { - if (element != null) - { - element.Validate(); - } - } - } - } - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/LoadBalancerFrontendIpConfiguration.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/LoadBalancerFrontendIpConfiguration.cs deleted file mode 100644 index cd30bf587957..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/LoadBalancerFrontendIpConfiguration.cs +++ /dev/null @@ -1,86 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Specifies the frontend IP to be used for the load balancer. Only IPv4 - /// frontend IP address is supported. Each load balancer configuration must - /// have exactly one frontend IP configuration. - /// - public partial class LoadBalancerFrontendIpConfiguration - { - /// - /// Initializes a new instance of the - /// LoadBalancerFrontendIpConfiguration class. - /// - public LoadBalancerFrontendIpConfiguration() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// LoadBalancerFrontendIpConfiguration class. - /// - /// The name of the resource that is unique within - /// the set of frontend IP configurations used by the load balancer. - /// This name can be used to access the resource. - /// Properties of load balancer frontend ip - /// configuration. - public LoadBalancerFrontendIpConfiguration(string name, LoadBalancerFrontendIpConfigurationProperties properties) - { - Name = name; - Properties = properties; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the name of the resource that is unique within the set - /// of frontend IP configurations used by the load balancer. This name - /// can be used to access the resource. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// Gets or sets properties of load balancer frontend ip configuration. - /// - [JsonProperty(PropertyName = "properties")] - public LoadBalancerFrontendIpConfigurationProperties Properties { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Name == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Name"); - } - if (Properties == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Properties"); - } - } - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/LoadBalancerFrontendIpConfigurationProperties.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/LoadBalancerFrontendIpConfigurationProperties.cs deleted file mode 100644 index 4c88b4f01815..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/LoadBalancerFrontendIpConfigurationProperties.cs +++ /dev/null @@ -1,73 +0,0 @@ -// -// 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; - - /// - /// Describes a cloud service IP Configuration - /// - public partial class LoadBalancerFrontendIpConfigurationProperties - { - /// - /// Initializes a new instance of the - /// LoadBalancerFrontendIpConfigurationProperties class. - /// - public LoadBalancerFrontendIpConfigurationProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// LoadBalancerFrontendIpConfigurationProperties class. - /// - /// The reference to the public ip - /// address resource. - /// The reference to the virtual network subnet - /// resource. - /// The virtual network private IP - /// address of the IP configuration. - public LoadBalancerFrontendIpConfigurationProperties(SubResource publicIPAddress = default(SubResource), SubResource subnet = default(SubResource), string privateIPAddress = default(string)) - { - PublicIPAddress = publicIPAddress; - Subnet = subnet; - PrivateIPAddress = privateIPAddress; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the reference to the public ip address resource. - /// - [JsonProperty(PropertyName = "publicIPAddress")] - public SubResource PublicIPAddress { get; set; } - - /// - /// Gets or sets the reference to the virtual network subnet resource. - /// - [JsonProperty(PropertyName = "subnet")] - public SubResource Subnet { get; set; } - - /// - /// Gets or sets the virtual network private IP address of the IP - /// configuration. - /// - [JsonProperty(PropertyName = "privateIPAddress")] - public string PrivateIPAddress { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/LocationData.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/LocationData.cs new file mode 100644 index 000000000000..3e216b975126 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/LocationData.cs @@ -0,0 +1,102 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Metadata pertaining to the geographic location of the resource. + /// + public partial class LocationData + { + /// + /// Initializes a new instance of the LocationData class. + /// + public LocationData() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the LocationData class. + /// + /// A canonical name for the geographic or physical + /// location. + /// The city or locality where the resource is + /// located. + /// The district, state, or province where the + /// resource is located. + /// The country or region where the + /// resource is located + public LocationData(string name, string city = default(string), string district = default(string), string countryOrRegion = default(string)) + { + Name = name; + City = city; + District = district; + CountryOrRegion = countryOrRegion; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets a canonical name for the geographic or physical + /// location. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the city or locality where the resource is located. + /// + [JsonProperty(PropertyName = "city")] + public string City { get; set; } + + /// + /// Gets or sets the district, state, or province where the resource is + /// located. + /// + [JsonProperty(PropertyName = "district")] + public string District { get; set; } + + /// + /// Gets or sets the country or region where the resource is located + /// + [JsonProperty(PropertyName = "countryOrRegion")] + public string CountryOrRegion { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Name != null) + { + if (Name.Length > 256) + { + throw new ValidationException(ValidationRules.MaxLength, "Name", 256); + } + } + } + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/ManagedArtifact.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ManagedArtifact.cs deleted file mode 100644 index 07cc6d49434b..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/ManagedArtifact.cs +++ /dev/null @@ -1,65 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// The managed artifact. - /// - public partial class ManagedArtifact - { - /// - /// Initializes a new instance of the ManagedArtifact class. - /// - public ManagedArtifact() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ManagedArtifact class. - /// - /// The managed artifact id. - public ManagedArtifact(string id) - { - Id = id; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the managed artifact id. - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Id == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Id"); - } - } - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/NetworkInterfaceReference.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/NetworkInterfaceReference.cs index 4a30f32209ba..063e64a641ce 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/NetworkInterfaceReference.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/NetworkInterfaceReference.cs @@ -11,7 +11,6 @@ namespace Microsoft.Azure.Management.Compute.Models { using Microsoft.Rest; - using Microsoft.Rest.Azure; using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; @@ -20,7 +19,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// Describes a network interface reference. /// [Rest.Serialization.JsonTransformation] - public partial class NetworkInterfaceReference : IResource + public partial class NetworkInterfaceReference : SubResource { /// /// Initializes a new instance of the NetworkInterfaceReference class. @@ -33,12 +32,14 @@ public NetworkInterfaceReference() /// /// Initializes a new instance of the NetworkInterfaceReference class. /// + /// Resource Id /// Specifies the primary network interface in /// case the virtual machine has more than 1 network interface. /// Specify what happens to the network /// interface when the VM is deleted. Possible values include: /// 'Delete', 'Detach' - public NetworkInterfaceReference(bool? primary = default(bool?), string deleteOption = default(string)) + public NetworkInterfaceReference(string id = default(string), bool? primary = default(bool?), string deleteOption = default(string)) + : base(id) { Primary = primary; DeleteOption = deleteOption; diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/OSFamily.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/OSFamily.cs deleted file mode 100644 index 9320452adf79..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/OSFamily.cs +++ /dev/null @@ -1,81 +0,0 @@ -// -// 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; - - /// - /// Describes a cloud service OS family. - /// - public partial class OSFamily - { - /// - /// Initializes a new instance of the OSFamily class. - /// - public OSFamily() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the OSFamily class. - /// - /// Resource Id. - /// Resource name. - /// Resource type. - /// Resource location. - public OSFamily(string id = default(string), string name = default(string), string type = default(string), string location = default(string), OSFamilyProperties properties = default(OSFamilyProperties)) - { - Id = id; - Name = name; - Type = type; - Location = location; - Properties = properties; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets resource Id. - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } - - /// - /// Gets resource name. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets resource type. - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } - - /// - /// Gets resource location. - /// - [JsonProperty(PropertyName = "location")] - public string Location { get; private set; } - - /// - /// - [JsonProperty(PropertyName = "properties")] - public OSFamilyProperties Properties { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/OSFamilyProperties.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/OSFamilyProperties.cs deleted file mode 100644 index 1a47ad508b6d..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/OSFamilyProperties.cs +++ /dev/null @@ -1,70 +0,0 @@ -// -// 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.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// OS family properties. - /// - public partial class OSFamilyProperties - { - /// - /// Initializes a new instance of the OSFamilyProperties class. - /// - public OSFamilyProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the OSFamilyProperties class. - /// - /// The OS family name. - /// The OS family label. - /// List of OS versions belonging to this - /// family. - public OSFamilyProperties(string name = default(string), string label = default(string), IList versions = default(IList)) - { - Name = name; - Label = label; - Versions = versions; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the OS family name. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets the OS family label. - /// - [JsonProperty(PropertyName = "label")] - public string Label { get; private set; } - - /// - /// Gets list of OS versions belonging to this family. - /// - [JsonProperty(PropertyName = "versions")] - public IList Versions { get; private set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/OSVersion.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/OSVersion.cs deleted file mode 100644 index e7ed62060374..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/OSVersion.cs +++ /dev/null @@ -1,81 +0,0 @@ -// -// 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; - - /// - /// Describes a cloud service OS version. - /// - public partial class OSVersion - { - /// - /// Initializes a new instance of the OSVersion class. - /// - public OSVersion() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the OSVersion class. - /// - /// Resource Id. - /// Resource name. - /// Resource type. - /// Resource location. - public OSVersion(string id = default(string), string name = default(string), string type = default(string), string location = default(string), OSVersionProperties properties = default(OSVersionProperties)) - { - Id = id; - Name = name; - Type = type; - Location = location; - Properties = properties; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets resource Id. - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } - - /// - /// Gets resource name. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets resource type. - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } - - /// - /// Gets resource location. - /// - [JsonProperty(PropertyName = "location")] - public string Location { get; private set; } - - /// - /// - [JsonProperty(PropertyName = "properties")] - public OSVersionProperties Properties { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/OSVersionProperties.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/OSVersionProperties.cs deleted file mode 100644 index 1c58d145e87d..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/OSVersionProperties.cs +++ /dev/null @@ -1,95 +0,0 @@ -// -// 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; - - /// - /// OS version properties. - /// - public partial class OSVersionProperties - { - /// - /// Initializes a new instance of the OSVersionProperties class. - /// - public OSVersionProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the OSVersionProperties class. - /// - /// The family of this OS version. - /// The family label of this OS - /// version. - /// The OS version. - /// The OS version label. - /// Specifies whether this is the default OS - /// version for its family. - /// Specifies whether this OS version is - /// active. - public OSVersionProperties(string family = default(string), string familyLabel = default(string), string version = default(string), string label = default(string), bool? isDefault = default(bool?), bool? isActive = default(bool?)) - { - Family = family; - FamilyLabel = familyLabel; - Version = version; - Label = label; - IsDefault = isDefault; - IsActive = isActive; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the family of this OS version. - /// - [JsonProperty(PropertyName = "family")] - public string Family { get; private set; } - - /// - /// Gets the family label of this OS version. - /// - [JsonProperty(PropertyName = "familyLabel")] - public string FamilyLabel { get; private set; } - - /// - /// Gets the OS version. - /// - [JsonProperty(PropertyName = "version")] - public string Version { get; private set; } - - /// - /// Gets the OS version label. - /// - [JsonProperty(PropertyName = "label")] - public string Label { get; private set; } - - /// - /// Gets specifies whether this is the default OS version for its - /// family. - /// - [JsonProperty(PropertyName = "isDefault")] - public bool? IsDefault { get; private set; } - - /// - /// Gets specifies whether this OS version is active. - /// - [JsonProperty(PropertyName = "isActive")] - public bool? IsActive { get; private set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/OSVersionPropertiesBase.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/OSVersionPropertiesBase.cs deleted file mode 100644 index d408b127b348..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/OSVersionPropertiesBase.cs +++ /dev/null @@ -1,78 +0,0 @@ -// -// 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; - - /// - /// Configuration view of an OS version. - /// - public partial class OSVersionPropertiesBase - { - /// - /// Initializes a new instance of the OSVersionPropertiesBase class. - /// - public OSVersionPropertiesBase() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the OSVersionPropertiesBase class. - /// - /// The OS version. - /// The OS version label. - /// Specifies whether this is the default OS - /// version for its family. - /// Specifies whether this OS version is - /// active. - public OSVersionPropertiesBase(string version = default(string), string label = default(string), bool? isDefault = default(bool?), bool? isActive = default(bool?)) - { - Version = version; - Label = label; - IsDefault = isDefault; - IsActive = isActive; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the OS version. - /// - [JsonProperty(PropertyName = "version")] - public string Version { get; private set; } - - /// - /// Gets the OS version label. - /// - [JsonProperty(PropertyName = "label")] - public string Label { get; private set; } - - /// - /// Gets specifies whether this is the default OS version for its - /// family. - /// - [JsonProperty(PropertyName = "isDefault")] - public bool? IsDefault { get; private set; } - - /// - /// Gets specifies whether this OS version is active. - /// - [JsonProperty(PropertyName = "isActive")] - public bool? IsActive { get; private set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/OperatingSystemStateTypes.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/OperatingSystemStateTypes.cs index 3c2ab5cad837..02c8d84ce934 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/OperatingSystemStateTypes.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/OperatingSystemStateTypes.cs @@ -21,14 +21,8 @@ namespace Microsoft.Azure.Management.Compute.Models [JsonConverter(typeof(StringEnumConverter))] public enum OperatingSystemStateTypes { - /// - /// Generalized image. Needs to be provisioned during deployment time. - /// [EnumMember(Value = "Generalized")] Generalized, - /// - /// Specialized image. Contains already provisioned OS Disk. - /// [EnumMember(Value = "Specialized")] Specialized } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/OperationStatusResult.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/OperationStatusResult.cs new file mode 100644 index 000000000000..1742af804574 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/OperationStatusResult.cs @@ -0,0 +1,147 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The current status of an async operation. + /// + public partial class OperationStatusResult + { + /// + /// Initializes a new instance of the OperationStatusResult class. + /// + public OperationStatusResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationStatusResult class. + /// + /// Operation status. + /// Fully qualified ID for the async + /// operation. + /// Name of the async operation. + /// Percent of the operation that is + /// complete. + /// The start time of the operation. + /// The end time of the operation. + /// The operations list. + /// If present, details of the operation + /// error. + public OperationStatusResult(string status, string id = default(string), string name = default(string), double? percentComplete = default(double?), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), IList operations = default(IList), ErrorDetail error = default(ErrorDetail)) + { + Id = id; + Name = name; + Status = status; + PercentComplete = percentComplete; + StartTime = startTime; + EndTime = endTime; + Operations = operations; + Error = error; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets fully qualified ID for the async operation. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets name of the async operation. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets operation status. + /// + [JsonProperty(PropertyName = "status")] + public string Status { get; set; } + + /// + /// Gets or sets percent of the operation that is complete. + /// + [JsonProperty(PropertyName = "percentComplete")] + public double? PercentComplete { get; set; } + + /// + /// Gets or sets the start time of the operation. + /// + [JsonProperty(PropertyName = "startTime")] + public System.DateTime? StartTime { get; set; } + + /// + /// Gets or sets the end time of the operation. + /// + [JsonProperty(PropertyName = "endTime")] + public System.DateTime? EndTime { get; set; } + + /// + /// Gets or sets the operations list. + /// + [JsonProperty(PropertyName = "operations")] + public IList Operations { get; set; } + + /// + /// Gets or sets if present, details of the operation error. + /// + [JsonProperty(PropertyName = "error")] + public ErrorDetail Error { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Status == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Status"); + } + if (PercentComplete != null) + { + if (PercentComplete > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "PercentComplete", 100); + } + if (PercentComplete < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "PercentComplete", 0); + } + } + if (Operations != null) + { + foreach (var element in Operations) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/PriorityMixPolicy.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/PriorityMixPolicy.cs index 14e433cc79ed..3b8bcbc3fffe 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/PriorityMixPolicy.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/PriorityMixPolicy.cs @@ -75,23 +75,12 @@ public PriorityMixPolicy() /// public virtual void Validate() { - if (BaseRegularPriorityCount != null) - { - if (BaseRegularPriorityCount < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "BaseRegularPriorityCount", 0); - } - } if (RegularPriorityPercentageAboveBase != null) { if (RegularPriorityPercentageAboveBase > 100) { throw new ValidationException(ValidationRules.InclusiveMaximum, "RegularPriorityPercentageAboveBase", 100); } - if (RegularPriorityPercentageAboveBase < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "RegularPriorityPercentageAboveBase", 0); - } } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/PrivateEndpointConnection.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/PrivateEndpointConnection.cs index 5f351eb8705f..110fd414d3a0 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/PrivateEndpointConnection.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/PrivateEndpointConnection.cs @@ -11,7 +11,6 @@ namespace Microsoft.Azure.Management.Compute.Models { using Microsoft.Rest; - using Microsoft.Rest.Azure; using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; @@ -20,7 +19,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// The Private Endpoint Connection resource. /// [Rest.Serialization.JsonTransformation] - public partial class PrivateEndpointConnection : IResource + public partial class PrivateEndpointConnection : ProxyResource { /// /// Initializes a new instance of the PrivateEndpointConnection class. @@ -36,22 +35,20 @@ public PrivateEndpointConnection() /// A collection of /// information about the state of the connection between DiskAccess /// and Virtual Network. + /// Resource Id + /// Resource name + /// Resource type /// The resource of private end /// point. /// The provisioning state of the /// private endpoint connection resource. Possible values include: /// 'Succeeded', 'Creating', 'Deleting', 'Failed' - /// private endpoint connection Id - /// private endpoint connection name - /// private endpoint connection type - public PrivateEndpointConnection(PrivateLinkServiceConnectionState privateLinkServiceConnectionState, PrivateEndpoint privateEndpoint = default(PrivateEndpoint), string provisioningState = default(string), string id = default(string), string name = default(string), string type = default(string)) + public PrivateEndpointConnection(PrivateLinkServiceConnectionState privateLinkServiceConnectionState, string id = default(string), string name = default(string), string type = default(string), PrivateEndpoint privateEndpoint = default(PrivateEndpoint), string provisioningState = default(string)) + : base(id, name, type) { PrivateEndpoint = privateEndpoint; PrivateLinkServiceConnectionState = privateLinkServiceConnectionState; ProvisioningState = provisioningState; - Id = id; - Name = name; - Type = type; CustomInit(); } @@ -74,30 +71,12 @@ public PrivateEndpointConnection() public PrivateLinkServiceConnectionState PrivateLinkServiceConnectionState { get; set; } /// - /// Gets or sets the provisioning state of the private endpoint - /// connection resource. Possible values include: 'Succeeded', - /// 'Creating', 'Deleting', 'Failed' + /// Gets the provisioning state of the private endpoint connection + /// resource. Possible values include: 'Succeeded', 'Creating', + /// 'Deleting', 'Failed' /// [JsonProperty(PropertyName = "properties.provisioningState")] - public string ProvisioningState { get; set; } - - /// - /// Gets private endpoint connection Id - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } - - /// - /// Gets private endpoint connection name - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets private endpoint connection type - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + public string ProvisioningState { get; private set; } /// /// Validate the object. diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/ProximityPlacementGroup.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ProximityPlacementGroup.cs index 9b91303c48c3..a8836c88e894 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/ProximityPlacementGroup.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/ProximityPlacementGroup.cs @@ -55,9 +55,7 @@ public ProximityPlacementGroup() /// Proximity Placement Group. /// Specifies the user intent of the proximity /// placement group. - /// Specifies the Availability Zone where virtual - /// machine, virtual machine scale set or availability set associated - /// with the proximity placement group can be created. + /// The availability zones. public ProximityPlacementGroup(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string proximityPlacementGroupType = default(string), IList virtualMachines = default(IList), IList virtualMachineScaleSets = default(IList), IList availabilitySets = default(IList), InstanceViewStatus colocationStatus = default(InstanceViewStatus), ProximityPlacementGroupPropertiesIntent intent = default(ProximityPlacementGroupPropertiesIntent), IList zones = default(IList)) : base(location, id, name, type, tags) { @@ -121,9 +119,7 @@ public ProximityPlacementGroup() public ProximityPlacementGroupPropertiesIntent Intent { get; set; } /// - /// Gets or sets specifies the Availability Zone where virtual machine, - /// virtual machine scale set or availability set associated with the - /// proximity placement group can be created. + /// Gets or sets the availability zones. /// [JsonProperty(PropertyName = "zones")] public IList Zones { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/PurchasePlan.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/PurchasePlan.cs index c52361695cf9..bb15635d96a2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/PurchasePlan.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/PurchasePlan.cs @@ -31,16 +31,16 @@ public PurchasePlan() /// /// Initializes a new instance of the PurchasePlan class. /// - /// The publisher ID. /// The plan ID. + /// The publisher ID. /// Specifies the product of the image from the /// marketplace. This is the same value as Offer under the /// imageReference element. /// The Offer Promotion Code. - public PurchasePlan(string publisher, string name, string product, string promotionCode = default(string)) + public PurchasePlan(string name, string publisher, string product, string promotionCode = default(string)) { - Publisher = publisher; Name = name; + Publisher = publisher; Product = product; PromotionCode = promotionCode; CustomInit(); @@ -51,18 +51,18 @@ public PurchasePlan() /// partial void CustomInit(); - /// - /// Gets or sets the publisher ID. - /// - [JsonProperty(PropertyName = "publisher")] - public string Publisher { get; set; } - /// /// Gets or sets the plan ID. /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } + /// + /// Gets or sets the publisher ID. + /// + [JsonProperty(PropertyName = "publisher")] + public string Publisher { get; set; } + /// /// Gets or sets specifies the product of the image from the /// marketplace. This is the same value as Offer under the @@ -85,14 +85,14 @@ public PurchasePlan() /// public virtual void Validate() { - if (Publisher == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Publisher"); - } if (Name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "Name"); } + if (Publisher == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Publisher"); + } if (Product == null) { throw new ValidationException(ValidationRules.CannotBeNull, "Product"); diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/RecommendedMachineConfiguration.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/RecommendedMachineConfiguration.cs index c4d67275d998..0b928b167932 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/RecommendedMachineConfiguration.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/RecommendedMachineConfiguration.cs @@ -32,6 +32,8 @@ public RecommendedMachineConfiguration() /// Initializes a new instance of the RecommendedMachineConfiguration /// class. /// + /// Describes the resource range. + /// Describes the resource range. public RecommendedMachineConfiguration(ResourceRange vCPUs = default(ResourceRange), ResourceRange memory = default(ResourceRange)) { VCPUs = vCPUs; @@ -45,11 +47,13 @@ public RecommendedMachineConfiguration() partial void CustomInit(); /// + /// Gets or sets describes the resource range. /// [JsonProperty(PropertyName = "vCPUs")] public ResourceRange VCPUs { get; set; } /// + /// Gets or sets describes the resource range. /// [JsonProperty(PropertyName = "memory")] public ResourceRange Memory { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/RegionalSharingStatus.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/RegionalSharingStatus.cs index 327b54618d95..8e25eeb8fb04 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/RegionalSharingStatus.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/RegionalSharingStatus.cs @@ -55,11 +55,11 @@ public RegionalSharingStatus() public string Region { get; set; } /// - /// Gets or sets gallery sharing state in current region. Possible - /// values include: 'Succeeded', 'InProgress', 'Failed', 'Unknown' + /// Gets gallery sharing state in current region. Possible values + /// include: 'Succeeded', 'InProgress', 'Failed', 'Unknown' /// [JsonProperty(PropertyName = "state")] - public string State { get; set; } + public string State { get; private set; } /// /// Gets or sets details of gallery regional sharing failure. diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/ResourceInstanceViewStatus.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ResourceInstanceViewStatus.cs deleted file mode 100644 index fd6a5d166a6a..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/ResourceInstanceViewStatus.cs +++ /dev/null @@ -1,88 +0,0 @@ -// -// 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; - - /// - /// Instance view status. - /// - public partial class ResourceInstanceViewStatus - { - /// - /// Initializes a new instance of the ResourceInstanceViewStatus class. - /// - public ResourceInstanceViewStatus() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ResourceInstanceViewStatus class. - /// - /// The status code. - /// The short localizable label for the - /// status. - /// The detailed status message, including for - /// alerts and error messages. - /// The time of the status. - /// The level code. Possible values include: - /// 'Info', 'Warning', 'Error' - public ResourceInstanceViewStatus(string code = default(string), string displayStatus = default(string), string message = default(string), System.DateTime? time = default(System.DateTime?), StatusLevelTypes? level = default(StatusLevelTypes?)) - { - Code = code; - DisplayStatus = displayStatus; - Message = message; - Time = time; - Level = level; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the status code. - /// - [JsonProperty(PropertyName = "code")] - public string Code { get; private set; } - - /// - /// Gets the short localizable label for the status. - /// - [JsonProperty(PropertyName = "displayStatus")] - public string DisplayStatus { get; private set; } - - /// - /// Gets the detailed status message, including for alerts and error - /// messages. - /// - [JsonProperty(PropertyName = "message")] - public string Message { get; private set; } - - /// - /// Gets the time of the status. - /// - [JsonProperty(PropertyName = "time")] - public System.DateTime? Time { get; private set; } - - /// - /// Gets or sets the level code. Possible values include: 'Info', - /// 'Warning', 'Error' - /// - [JsonProperty(PropertyName = "level")] - public StatusLevelTypes? Level { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstance.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ResourceOriginal.cs similarity index 58% rename from src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstance.cs rename to src/Compute/Compute.Management.Sdk/Generated/Models/ResourceOriginal.cs index 5dfa82612b32..10a31771c5ef 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstance.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/ResourceOriginal.cs @@ -10,41 +10,41 @@ namespace Microsoft.Azure.Management.Compute.Models { + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; using System.Linq; /// - /// Describes the cloud service role instance. + /// The Resource model definition. /// - public partial class RoleInstance + public partial class ResourceOriginal : IResource { /// - /// Initializes a new instance of the RoleInstance class. + /// Initializes a new instance of the ResourceOriginal class. /// - public RoleInstance() + public ResourceOriginal() { CustomInit(); } /// - /// Initializes a new instance of the RoleInstance class. + /// Initializes a new instance of the ResourceOriginal class. /// + /// Resource location /// Resource Id - /// Resource Name. - /// Resource Type. - /// Resource Location. + /// Resource name + /// Resource type /// Resource tags. - public RoleInstance(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), InstanceSku sku = default(InstanceSku), RoleInstanceProperties properties = default(RoleInstanceProperties)) + public ResourceOriginal(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) { Id = id; Name = name; Type = type; Location = location; Tags = tags; - Sku = sku; - Properties = properties; CustomInit(); } @@ -60,38 +60,41 @@ public RoleInstance() public string Id { get; private set; } /// - /// Gets resource Name. + /// Gets resource name /// [JsonProperty(PropertyName = "name")] public string Name { get; private set; } /// - /// Gets resource Type. + /// Gets resource type /// [JsonProperty(PropertyName = "type")] public string Type { get; private set; } /// - /// Gets resource Location. + /// Gets or sets resource location /// [JsonProperty(PropertyName = "location")] - public string Location { get; private set; } + public string Location { get; set; } /// - /// Gets resource tags. + /// Gets or sets resource tags. /// [JsonProperty(PropertyName = "tags")] - public IDictionary Tags { get; private set; } + public IDictionary Tags { get; set; } /// + /// Validate the object. /// - [JsonProperty(PropertyName = "sku")] - public InstanceSku Sku { get; set; } - - /// - /// - [JsonProperty(PropertyName = "properties")] - public RoleInstanceProperties Properties { get; set; } - + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/ResourceWithOptionalLocation.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/ResourceWithOptionalLocation.cs index 3a438c04f455..7d90f61f8fc2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/ResourceWithOptionalLocation.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/ResourceWithOptionalLocation.cs @@ -10,8 +10,6 @@ namespace Microsoft.Azure.Management.Compute.Models { - using Microsoft.Rest; - using Microsoft.Rest.Azure; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -20,7 +18,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// /// The Resource model definition with location property as optional. /// - public partial class ResourceWithOptionalLocation : IResource + public partial class ResourceWithOptionalLocation { /// /// Initializes a new instance of the ResourceWithOptionalLocation diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointCollection.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointCollection.cs index 5a744737cb4e..f3f068f27a68 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointCollection.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointCollection.cs @@ -39,6 +39,8 @@ public RestorePointCollection() /// Resource name /// Resource type /// Resource tags + /// The properties of the source resource that + /// this restore point collection is created from. /// The provisioning state of the /// restore point collection. /// The unique id of the restore @@ -61,6 +63,8 @@ public RestorePointCollection() partial void CustomInit(); /// + /// Gets or sets the properties of the source resource that this + /// restore point collection is created from. /// [JsonProperty(PropertyName = "properties.source")] public RestorePointCollectionSourceProperties Source { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointCollectionUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointCollectionUpdate.cs index ee169d5de96c..127fac81e68c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointCollectionUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointCollectionUpdate.cs @@ -37,6 +37,8 @@ public RestorePointCollectionUpdate() /// class. /// /// Resource tags + /// The properties of the source resource that + /// this restore point collection is created from. /// The provisioning state of the /// restore point collection. /// The unique id of the restore @@ -59,6 +61,8 @@ public RestorePointCollectionUpdate() partial void CustomInit(); /// + /// Gets or sets the properties of the source resource that this + /// restore point collection is created from. /// [JsonProperty(PropertyName = "properties.source")] public RestorePointCollectionSourceProperties Source { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointEncryption.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointEncryption.cs index 5abf9cd71571..3ee46e1af262 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointEncryption.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointEncryption.cs @@ -31,7 +31,13 @@ public RestorePointEncryption() /// /// Initializes a new instance of the RestorePointEncryption class. /// - /// Possible values include: + /// Describes the parameter of customer + /// managed disk encryption set resource id that can be specified for + /// disk. **Note:** The disk encryption set resource id can only be + /// specified for managed disk. Please refer + /// https://aka.ms/mdssewithcmkoverview for more details. + /// The type of key used to encrypt the data of the + /// disk restore point. Possible values include: /// 'EncryptionAtRestWithPlatformKey', /// 'EncryptionAtRestWithCustomerKey', /// 'EncryptionAtRestWithPlatformAndCustomerKeys' @@ -48,12 +54,18 @@ public RestorePointEncryption() partial void CustomInit(); /// + /// Gets or sets describes the parameter of customer managed disk + /// encryption set resource id that can be specified for disk. + /// **Note:** The disk encryption set resource id can only be specified + /// for managed disk. Please refer https://aka.ms/mdssewithcmkoverview + /// for more details. /// [JsonProperty(PropertyName = "diskEncryptionSet")] public DiskEncryptionSetParameters DiskEncryptionSet { get; set; } /// - /// Gets or sets possible values include: + /// Gets or sets the type of key used to encrypt the data of the disk + /// restore point. Possible values include: /// 'EncryptionAtRestWithPlatformKey', /// 'EncryptionAtRestWithCustomerKey', /// 'EncryptionAtRestWithPlatformAndCustomerKeys' diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointsCreateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointsCreateHeaders.cs new file mode 100644 index 000000000000..447e9bc768a4 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/RestorePointsCreateHeaders.cs @@ -0,0 +1,64 @@ +// +// 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 Create operation. + /// + public partial class RestorePointsCreateHeaders + { + /// + /// Initializes a new instance of the RestorePointsCreateHeaders class. + /// + public RestorePointsCreateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RestorePointsCreateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public RestorePointsCreateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstanceInstanceView.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstanceInstanceView.cs deleted file mode 100644 index 5897af48e493..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstanceInstanceView.cs +++ /dev/null @@ -1,83 +0,0 @@ -// -// 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.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// The instance view of the role instance. - /// - public partial class RoleInstanceInstanceView - { - /// - /// Initializes a new instance of the RoleInstanceInstanceView class. - /// - public RoleInstanceInstanceView() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the RoleInstanceInstanceView class. - /// - /// The Update Domain. - /// The Fault Domain. - /// Specifies a unique identifier generated - /// internally for the cloud service associated with this role - /// instance. <br /><br /> NOTE: If you are using Azure - /// Diagnostics extension, this property can be used as 'DeploymentId' - /// for querying details. - public RoleInstanceInstanceView(int? platformUpdateDomain = default(int?), int? platformFaultDomain = default(int?), string privateId = default(string), IList statuses = default(IList)) - { - PlatformUpdateDomain = platformUpdateDomain; - PlatformFaultDomain = platformFaultDomain; - PrivateId = privateId; - Statuses = statuses; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the Update Domain. - /// - [JsonProperty(PropertyName = "platformUpdateDomain")] - public int? PlatformUpdateDomain { get; private set; } - - /// - /// Gets the Fault Domain. - /// - [JsonProperty(PropertyName = "platformFaultDomain")] - public int? PlatformFaultDomain { get; private set; } - - /// - /// Gets specifies a unique identifier generated internally for the - /// cloud service associated with this role instance. &lt;br - /// /&gt;&lt;br /&gt; NOTE: If you are using Azure - /// Diagnostics extension, this property can be used as 'DeploymentId' - /// for querying details. - /// - [JsonProperty(PropertyName = "privateId")] - public string PrivateId { get; private set; } - - /// - /// - [JsonProperty(PropertyName = "statuses")] - public IList Statuses { get; private set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstanceNetworkProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstanceNetworkProfile.cs deleted file mode 100644 index 4a74b02f3610..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstanceNetworkProfile.cs +++ /dev/null @@ -1,56 +0,0 @@ -// -// 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.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Describes the network profile for the role instance. - /// - public partial class RoleInstanceNetworkProfile - { - /// - /// Initializes a new instance of the RoleInstanceNetworkProfile class. - /// - public RoleInstanceNetworkProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the RoleInstanceNetworkProfile class. - /// - /// Specifies the list of resource Ids - /// for the network interfaces associated with the role - /// instance. - public RoleInstanceNetworkProfile(IList networkInterfaces = default(IList)) - { - NetworkInterfaces = networkInterfaces; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets specifies the list of resource Ids for the network interfaces - /// associated with the role instance. - /// - [JsonProperty(PropertyName = "networkInterfaces")] - public IList NetworkInterfaces { get; private set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstanceProperties.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstanceProperties.cs deleted file mode 100644 index 0ec532edc2bc..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstanceProperties.cs +++ /dev/null @@ -1,55 +0,0 @@ -// -// 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; - - /// - /// Role instance properties. - /// - public partial class RoleInstanceProperties - { - /// - /// Initializes a new instance of the RoleInstanceProperties class. - /// - public RoleInstanceProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the RoleInstanceProperties class. - /// - public RoleInstanceProperties(RoleInstanceNetworkProfile networkProfile = default(RoleInstanceNetworkProfile), RoleInstanceInstanceView instanceView = default(RoleInstanceInstanceView)) - { - NetworkProfile = networkProfile; - InstanceView = instanceView; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// - [JsonProperty(PropertyName = "networkProfile")] - public RoleInstanceNetworkProfile NetworkProfile { get; set; } - - /// - /// - [JsonProperty(PropertyName = "instanceView")] - public RoleInstanceInstanceView InstanceView { get; set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstances.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstances.cs deleted file mode 100644 index ca428016fc69..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/RoleInstances.cs +++ /dev/null @@ -1,70 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Specifies a list of role instances from the cloud service. - /// - public partial class RoleInstances - { - /// - /// Initializes a new instance of the RoleInstances class. - /// - public RoleInstances() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the RoleInstances class. - /// - /// List of cloud service role - /// instance names. Value of '*' will signify all role instances of the - /// cloud service. - public RoleInstances(IList roleInstancesProperty) - { - RoleInstancesProperty = roleInstancesProperty; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets list of cloud service role instance names. Value of - /// '*' will signify all role instances of the cloud service. - /// - [JsonProperty(PropertyName = "roleInstances")] - public IList RoleInstancesProperty { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (RoleInstancesProperty == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "RoleInstancesProperty"); - } - } - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/RollingUpgradePolicy.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/RollingUpgradePolicy.cs index 27466ed8dae7..4dd6a435990b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/RollingUpgradePolicy.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/RollingUpgradePolicy.cs @@ -191,10 +191,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxUnhealthyUpgradedInstancePercent", 100); } - if (MaxUnhealthyUpgradedInstancePercent < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxUnhealthyUpgradedInstancePercent", 0); - } } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGallery.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGallery.cs index 932c476503d0..62180369298e 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGallery.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGallery.cs @@ -39,6 +39,8 @@ public SharedGallery() /// Resource location /// The unique id of this shared /// gallery. + /// The artifact tags of a shared gallery + /// resource. public SharedGallery(string name = default(string), string location = default(string), string uniqueId = default(string), IDictionary artifactTags = default(IDictionary)) : base(name, location, uniqueId) { @@ -52,6 +54,7 @@ public SharedGallery() partial void CustomInit(); /// + /// Gets the artifact tags of a shared gallery resource. /// [JsonProperty(PropertyName = "properties.artifactTags")] public IDictionary ArtifactTags { get; private set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGalleryImage.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGalleryImage.cs index ab0a8a72cbdd..96755f918db3 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGalleryImage.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGalleryImage.cs @@ -43,6 +43,8 @@ public SharedGalleryImage() /// whether the virtual machines created under this image are /// 'Generalized' or 'Specialized'. Possible values include: /// 'Generalized', 'Specialized' + /// This is the gallery image definition + /// identifier. /// Resource name /// Resource location /// The unique id of this shared @@ -50,16 +52,26 @@ public SharedGalleryImage() /// The end of life date of the gallery /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. + /// The properties describe the recommended + /// machine configuration for this Image Definition. These properties + /// are updatable. + /// Describes the disallowed disk + /// types. /// The hypervisor generation of the /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' /// A list of gallery image features. - /// Possible values include: 'x64', + /// Describes the gallery image definition + /// purchase plan. This is used by marketplace images. + /// The architecture of the image. + /// Applicable to OS disks only. Possible values include: 'x64', /// 'Arm64' /// Privacy statement uri for the /// current community gallery image. /// End-user license agreement for the current /// community gallery image. + /// The artifact tags of a shared gallery + /// resource. public SharedGalleryImage(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string name = default(string), string location = default(string), string uniqueId = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), string hyperVGeneration = default(string), IList features = default(IList), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string architecture = default(string), string privacyStatementUri = default(string), string eula = default(string), IDictionary artifactTags = default(IDictionary)) : base(name, location, uniqueId) { @@ -111,16 +123,21 @@ public SharedGalleryImage() public System.DateTime? EndOfLifeDate { get; set; } /// + /// Gets or sets this is the gallery image definition identifier. /// [JsonProperty(PropertyName = "properties.identifier")] public GalleryImageIdentifier Identifier { get; set; } /// + /// Gets or sets the properties describe the recommended machine + /// configuration for this Image Definition. These properties are + /// updatable. /// [JsonProperty(PropertyName = "properties.recommended")] public RecommendedMachineConfiguration Recommended { get; set; } /// + /// Gets or sets describes the disallowed disk types. /// [JsonProperty(PropertyName = "properties.disallowed")] public Disallowed Disallowed { get; set; } @@ -139,12 +156,15 @@ public SharedGalleryImage() public IList Features { get; set; } /// + /// Gets or sets describes the gallery image definition purchase plan. + /// This is used by marketplace images. /// [JsonProperty(PropertyName = "properties.purchasePlan")] public ImagePurchasePlan PurchasePlan { get; set; } /// - /// Gets or sets possible values include: 'x64', 'Arm64' + /// Gets or sets the architecture of the image. Applicable to OS disks + /// only. Possible values include: 'x64', 'Arm64' /// [JsonProperty(PropertyName = "properties.architecture")] public string Architecture { get; set; } @@ -164,6 +184,7 @@ public SharedGalleryImage() public string Eula { get; set; } /// + /// Gets or sets the artifact tags of a shared gallery resource. /// [JsonProperty(PropertyName = "properties.artifactTags")] public IDictionary ArtifactTags { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGalleryImageVersion.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGalleryImageVersion.cs index c13a6c0b0cf0..a16cfdb0b1eb 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGalleryImageVersion.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGalleryImageVersion.cs @@ -50,6 +50,8 @@ public SharedGalleryImageVersion() /// this Image Version. /// Describes the storage profile of the /// image version. + /// The artifact tags of a shared gallery + /// resource. public SharedGalleryImageVersion(string name = default(string), string location = default(string), string uniqueId = default(string), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? endOfLifeDate = default(System.DateTime?), bool? excludeFromLatest = default(bool?), SharedGalleryImageVersionStorageProfile storageProfile = default(SharedGalleryImageVersionStorageProfile), IDictionary artifactTags = default(IDictionary)) : base(name, location, uniqueId) { @@ -97,6 +99,7 @@ public SharedGalleryImageVersion() public SharedGalleryImageVersionStorageProfile StorageProfile { get; set; } /// + /// Gets or sets the artifact tags of a shared gallery resource. /// [JsonProperty(PropertyName = "properties.artifactTags")] public IDictionary ArtifactTags { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGalleryImageVersionStorageProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGalleryImageVersionStorageProfile.cs index 0e9a4a85dd6a..1e1095a74523 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGalleryImageVersionStorageProfile.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SharedGalleryImageVersionStorageProfile.cs @@ -33,6 +33,7 @@ public SharedGalleryImageVersionStorageProfile() /// Initializes a new instance of the /// SharedGalleryImageVersionStorageProfile class. /// + /// This is the OS disk image. /// A list of data disk images. public SharedGalleryImageVersionStorageProfile(SharedGalleryOSDiskImage osDiskImage = default(SharedGalleryOSDiskImage), IList dataDiskImages = default(IList)) { @@ -47,6 +48,7 @@ public SharedGalleryImageVersionStorageProfile() partial void CustomInit(); /// + /// Gets or sets this is the OS disk image. /// [JsonProperty(PropertyName = "osDiskImage")] public SharedGalleryOSDiskImage OsDiskImage { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SharingStatus.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SharingStatus.cs index b3c80c0b425d..8d1ee83173f9 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/SharingStatus.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SharingStatus.cs @@ -49,11 +49,11 @@ public SharingStatus() partial void CustomInit(); /// - /// Gets or sets aggregated sharing state of current gallery. Possible - /// values include: 'Succeeded', 'InProgress', 'Failed', 'Unknown' + /// Gets aggregated sharing state of current gallery. Possible values + /// include: 'Succeeded', 'InProgress', 'Failed', 'Unknown' /// [JsonProperty(PropertyName = "aggregatedState")] - public string AggregatedState { get; set; } + public string AggregatedState { get; private set; } /// /// Gets or sets summary of all regional sharing status. diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SharingUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SharingUpdate.cs index b4f8df7e1ac2..4eae2913bc6a 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/SharingUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SharingUpdate.cs @@ -11,7 +11,6 @@ namespace Microsoft.Azure.Management.Compute.Models { using Microsoft.Rest; - using Microsoft.Rest.Azure; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -20,7 +19,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// /// Specifies information about the gallery sharing profile update. /// - public partial class SharingUpdate : IResource + public partial class SharingUpdate { /// /// Initializes a new instance of the SharingUpdate class. diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SkuProfileVMSize.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SkuProfileVMSize.cs index d657070a5f82..339aaf4510d1 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/SkuProfileVMSize.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SkuProfileVMSize.cs @@ -10,7 +10,6 @@ namespace Microsoft.Azure.Management.Compute.Models { - using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -58,21 +57,5 @@ public SkuProfileVMSize() [JsonProperty(PropertyName = "rank")] public int? Rank { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Rank != null) - { - if (Rank < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "Rank", 0); - } - } - } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SkuTier.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SkuTier.cs new file mode 100644 index 000000000000..3f5b39d3880a --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SkuTier.cs @@ -0,0 +1,72 @@ +// +// 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 Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for SkuTier. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum SkuTier + { + [EnumMember(Value = "Free")] + Free, + [EnumMember(Value = "Basic")] + Basic, + [EnumMember(Value = "Standard")] + Standard, + [EnumMember(Value = "Premium")] + Premium + } + internal static class SkuTierEnumExtension + { + internal static string ToSerializedValue(this SkuTier? value) + { + return value == null ? null : ((SkuTier)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this SkuTier value) + { + switch( value ) + { + case SkuTier.Free: + return "Free"; + case SkuTier.Basic: + return "Basic"; + case SkuTier.Standard: + return "Standard"; + case SkuTier.Premium: + return "Premium"; + } + return null; + } + + internal static SkuTier? ParseSkuTier(this string value) + { + switch( value ) + { + case "Free": + return SkuTier.Free; + case "Basic": + return SkuTier.Basic; + case "Standard": + return SkuTier.Standard; + case "Premium": + return SkuTier.Premium; + } + return null; + } + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/Snapshot.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/Snapshot.cs index e0cf9559fa28..8a354d5d56e2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/Snapshot.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/Snapshot.cs @@ -42,10 +42,6 @@ public Snapshot() /// Resource name /// Resource type /// Resource tags - /// Unused. Always Null. - /// The extended location where the - /// snapshot will be created. Extended location cannot be - /// changed. /// The time when the snapshot was /// created. /// The Operating System type. Possible values @@ -88,30 +84,41 @@ public Snapshot() /// Encryption property can be used to encrypt /// data at rest with customer managed keys or platform managed /// keys. - /// Possible values include: - /// 'AllowAll', 'AllowPrivate', 'DenyAll' + /// Policy for accessing the disk via + /// network. Possible values include: 'AllowAll', 'AllowPrivate', + /// 'DenyAll' /// ARM id of the DiskAccess resource for /// using private endpoints on disks. /// Contains the security related /// information for the resource. /// Indicates the OS on a snapshot /// supports hibernation. - /// Possible values include: - /// 'Enabled', 'Disabled' + /// Policy for controlling export on + /// the disk. Possible values include: 'Enabled', 'Disabled' /// Percentage complete for the /// background copy when a resource is created via the CopyStart /// operation. /// Indicates the error details if /// the background copy of a resource created via the CopyStart /// operation fails. - /// Possible values include: - /// 'AzureActiveDirectory', 'None' - public Snapshot(string location, CreationData creationData, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string managedBy = default(string), SnapshotSku sku = default(SnapshotSku), ExtendedLocation extendedLocation = default(ExtendedLocation), System.DateTime? timeCreated = default(System.DateTime?), OperatingSystemTypes? osType = default(OperatingSystemTypes?), string hyperVGeneration = default(string), PurchasePlan purchasePlan = default(PurchasePlan), SupportedCapabilities supportedCapabilities = default(SupportedCapabilities), int? diskSizeGB = default(int?), long? diskSizeBytes = default(long?), string diskState = default(string), string uniqueId = default(string), EncryptionSettingsCollection encryptionSettingsCollection = default(EncryptionSettingsCollection), string provisioningState = default(string), bool? incremental = default(bool?), string incrementalSnapshotFamilyId = default(string), Encryption encryption = default(Encryption), string networkAccessPolicy = default(string), string diskAccessId = default(string), DiskSecurityProfile securityProfile = default(DiskSecurityProfile), bool? supportsHibernation = default(bool?), string publicNetworkAccess = default(string), double? completionPercent = default(double?), CopyCompletionError copyCompletionError = default(CopyCompletionError), string dataAccessAuthMode = default(string)) + /// Additional authentication + /// requirements when exporting or uploading to a disk or snapshot. + /// Possible values include: 'AzureActiveDirectory', 'None' + /// The state of snapshot which + /// determines the access availability of the snapshot. Possible values + /// include: 'Unknown', 'Pending', 'Available', 'InstantAccess', + /// 'AvailableWithInstantAccess' + /// Unused. Always Null. + /// The snapshots sku name. Can be Standard_LRS, + /// Premium_LRS, or Standard_ZRS. This is an optional parameter for + /// incremental snapshot and the default behavior is the SKU will be + /// set to the same sku as the previous snapshot + /// The extended location where the + /// snapshot will be created. Extended location cannot be + /// changed. + public Snapshot(string location, CreationData creationData, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), System.DateTime? timeCreated = default(System.DateTime?), OperatingSystemTypes? osType = default(OperatingSystemTypes?), string hyperVGeneration = default(string), PurchasePlan purchasePlan = default(PurchasePlan), SupportedCapabilities supportedCapabilities = default(SupportedCapabilities), int? diskSizeGB = default(int?), long? diskSizeBytes = default(long?), string diskState = default(string), string uniqueId = default(string), EncryptionSettingsCollection encryptionSettingsCollection = default(EncryptionSettingsCollection), string provisioningState = default(string), bool? incremental = default(bool?), string incrementalSnapshotFamilyId = default(string), Encryption encryption = default(Encryption), string networkAccessPolicy = default(string), string diskAccessId = default(string), DiskSecurityProfile securityProfile = default(DiskSecurityProfile), bool? supportsHibernation = default(bool?), string publicNetworkAccess = default(string), double? completionPercent = default(double?), CopyCompletionError copyCompletionError = default(CopyCompletionError), string dataAccessAuthMode = default(string), string snapshotAccessState = default(string), string managedBy = default(string), SnapshotSku sku = default(SnapshotSku), ExtendedLocation extendedLocation = default(ExtendedLocation)) : base(location, id, name, type, tags) { - ManagedBy = managedBy; - Sku = sku; - ExtendedLocation = extendedLocation; TimeCreated = timeCreated; OsType = osType; HyperVGeneration = hyperVGeneration; @@ -135,6 +142,10 @@ public Snapshot() CompletionPercent = completionPercent; CopyCompletionError = copyCompletionError; DataAccessAuthMode = dataAccessAuthMode; + SnapshotAccessState = snapshotAccessState; + ManagedBy = managedBy; + Sku = sku; + ExtendedLocation = extendedLocation; CustomInit(); } @@ -143,24 +154,6 @@ public Snapshot() /// partial void CustomInit(); - /// - /// Gets unused. Always Null. - /// - [JsonProperty(PropertyName = "managedBy")] - public string ManagedBy { get; private set; } - - /// - /// - [JsonProperty(PropertyName = "sku")] - public SnapshotSku Sku { get; set; } - - /// - /// Gets or sets the extended location where the snapshot will be - /// created. Extended location cannot be changed. - /// - [JsonProperty(PropertyName = "extendedLocation")] - public ExtendedLocation ExtendedLocation { get; set; } - /// /// Gets the time when the snapshot was created. /// @@ -219,12 +212,12 @@ public Snapshot() public long? DiskSizeBytes { get; private set; } /// - /// Gets or sets the state of the snapshot. Possible values include: + /// Gets the state of the snapshot. Possible values include: /// 'Unattached', 'Attached', 'Reserved', 'Frozen', 'ActiveSAS', /// 'ActiveSASFrozen', 'ReadyToUpload', 'ActiveUpload' /// [JsonProperty(PropertyName = "properties.diskState")] - public string DiskState { get; set; } + public string DiskState { get; private set; } /// /// Gets unique Guid identifying the resource. @@ -270,8 +263,8 @@ public Snapshot() public Encryption Encryption { get; set; } /// - /// Gets or sets possible values include: 'AllowAll', 'AllowPrivate', - /// 'DenyAll' + /// Gets or sets policy for accessing the disk via network. Possible + /// values include: 'AllowAll', 'AllowPrivate', 'DenyAll' /// [JsonProperty(PropertyName = "properties.networkAccessPolicy")] public string NetworkAccessPolicy { get; set; } @@ -297,7 +290,8 @@ public Snapshot() public bool? SupportsHibernation { get; set; } /// - /// Gets or sets possible values include: 'Enabled', 'Disabled' + /// Gets or sets policy for controlling export on the disk. Possible + /// values include: 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.publicNetworkAccess")] public string PublicNetworkAccess { get; set; } @@ -317,12 +311,43 @@ public Snapshot() public CopyCompletionError CopyCompletionError { get; set; } /// - /// Gets or sets possible values include: 'AzureActiveDirectory', - /// 'None' + /// Gets or sets additional authentication requirements when exporting + /// or uploading to a disk or snapshot. Possible values include: + /// 'AzureActiveDirectory', 'None' /// [JsonProperty(PropertyName = "properties.dataAccessAuthMode")] public string DataAccessAuthMode { get; set; } + /// + /// Gets the state of snapshot which determines the access availability + /// of the snapshot. Possible values include: 'Unknown', 'Pending', + /// 'Available', 'InstantAccess', 'AvailableWithInstantAccess' + /// + [JsonProperty(PropertyName = "properties.snapshotAccessState")] + public string SnapshotAccessState { get; private set; } + + /// + /// Gets unused. Always Null. + /// + [JsonProperty(PropertyName = "managedBy")] + public string ManagedBy { get; private set; } + + /// + /// Gets or sets the snapshots sku name. Can be Standard_LRS, + /// Premium_LRS, or Standard_ZRS. This is an optional parameter for + /// incremental snapshot and the default behavior is the SKU will be + /// set to the same sku as the previous snapshot + /// + [JsonProperty(PropertyName = "sku")] + public SnapshotSku Sku { get; set; } + + /// + /// Gets or sets the extended location where the snapshot will be + /// created. Extended location cannot be changed. + /// + [JsonProperty(PropertyName = "extendedLocation")] + public ExtendedLocation ExtendedLocation { get; set; } + /// /// Validate the object. /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SnapshotAccessState.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SnapshotAccessState.cs new file mode 100644 index 000000000000..3819c257dc80 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SnapshotAccessState.cs @@ -0,0 +1,44 @@ +// +// 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 +{ + + /// + /// Defines values for SnapshotAccessState. + /// + public static class SnapshotAccessState + { + /// + /// Default value. + /// + public const string Unknown = "Unknown"; + /// + /// The snapshot cannot be used for restore, copy or download to + /// offline. + /// + public const string Pending = "Pending"; + /// + /// The snapshot can be used for restore, copy to different region, and + /// download to offline. + /// + public const string Available = "Available"; + /// + /// The snapshot can be used for restoring disks with fast performance + /// but cannot be copied or downloaded. + /// + public const string InstantAccess = "InstantAccess"; + /// + /// The snapshot can be used for restoring disks with fast performance, + /// copied and downloaded. + /// + public const string AvailableWithInstantAccess = "AvailableWithInstantAccess"; + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SnapshotUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SnapshotUpdate.cs index ebbb9ae08e07..613064ad152f 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/SnapshotUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SnapshotUpdate.cs @@ -48,20 +48,30 @@ public SnapshotUpdate() /// Encryption property can be used to encrypt /// data at rest with customer managed keys or platform managed /// keys. - /// Possible values include: - /// 'AllowAll', 'AllowPrivate', 'DenyAll' + /// Policy for accessing the disk via + /// network. Possible values include: 'AllowAll', 'AllowPrivate', + /// 'DenyAll' /// ARM id of the DiskAccess resource for /// using private endpoints on disks. /// Indicates the OS on a snapshot /// supports hibernation. - /// Possible values include: - /// 'Enabled', 'Disabled' - /// Possible values include: - /// 'AzureActiveDirectory', 'None' + /// Policy for controlling export on + /// the disk. Possible values include: 'Enabled', 'Disabled' + /// Additional authentication + /// requirements when exporting or uploading to a disk or snapshot. + /// Possible values include: 'AzureActiveDirectory', 'None' /// List of supported capabilities /// for the image from which the OS disk was created. + /// The state of snapshot which + /// determines the access availability of the snapshot. Possible values + /// include: 'Unknown', 'Pending', 'Available', 'InstantAccess', + /// 'AvailableWithInstantAccess' /// Resource tags - public SnapshotUpdate(OperatingSystemTypes? osType = default(OperatingSystemTypes?), int? diskSizeGB = default(int?), EncryptionSettingsCollection encryptionSettingsCollection = default(EncryptionSettingsCollection), Encryption encryption = default(Encryption), string networkAccessPolicy = default(string), string diskAccessId = default(string), bool? supportsHibernation = default(bool?), string publicNetworkAccess = default(string), string dataAccessAuthMode = default(string), SupportedCapabilities supportedCapabilities = default(SupportedCapabilities), IDictionary tags = default(IDictionary), SnapshotSku sku = default(SnapshotSku)) + /// The snapshots sku name. Can be Standard_LRS, + /// Premium_LRS, or Standard_ZRS. This is an optional parameter for + /// incremental snapshot and the default behavior is the SKU will be + /// set to the same sku as the previous snapshot + public SnapshotUpdate(OperatingSystemTypes? osType = default(OperatingSystemTypes?), int? diskSizeGB = default(int?), EncryptionSettingsCollection encryptionSettingsCollection = default(EncryptionSettingsCollection), Encryption encryption = default(Encryption), string networkAccessPolicy = default(string), string diskAccessId = default(string), bool? supportsHibernation = default(bool?), string publicNetworkAccess = default(string), string dataAccessAuthMode = default(string), SupportedCapabilities supportedCapabilities = default(SupportedCapabilities), string snapshotAccessState = default(string), IDictionary tags = default(IDictionary), SnapshotSku sku = default(SnapshotSku)) { OsType = osType; DiskSizeGB = diskSizeGB; @@ -73,6 +83,7 @@ public SnapshotUpdate() PublicNetworkAccess = publicNetworkAccess; DataAccessAuthMode = dataAccessAuthMode; SupportedCapabilities = supportedCapabilities; + SnapshotAccessState = snapshotAccessState; Tags = tags; Sku = sku; CustomInit(); @@ -116,8 +127,8 @@ public SnapshotUpdate() public Encryption Encryption { get; set; } /// - /// Gets or sets possible values include: 'AllowAll', 'AllowPrivate', - /// 'DenyAll' + /// Gets or sets policy for accessing the disk via network. Possible + /// values include: 'AllowAll', 'AllowPrivate', 'DenyAll' /// [JsonProperty(PropertyName = "properties.networkAccessPolicy")] public string NetworkAccessPolicy { get; set; } @@ -136,14 +147,16 @@ public SnapshotUpdate() public bool? SupportsHibernation { get; set; } /// - /// Gets or sets possible values include: 'Enabled', 'Disabled' + /// Gets or sets policy for controlling export on the disk. Possible + /// values include: 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.publicNetworkAccess")] public string PublicNetworkAccess { get; set; } /// - /// Gets or sets possible values include: 'AzureActiveDirectory', - /// 'None' + /// Gets or sets additional authentication requirements when exporting + /// or uploading to a disk or snapshot. Possible values include: + /// 'AzureActiveDirectory', 'None' /// [JsonProperty(PropertyName = "properties.dataAccessAuthMode")] public string DataAccessAuthMode { get; set; } @@ -155,6 +168,14 @@ public SnapshotUpdate() [JsonProperty(PropertyName = "properties.supportedCapabilities")] public SupportedCapabilities SupportedCapabilities { get; set; } + /// + /// Gets the state of snapshot which determines the access availability + /// of the snapshot. Possible values include: 'Unknown', 'Pending', + /// 'Available', 'InstantAccess', 'AvailableWithInstantAccess' + /// + [JsonProperty(PropertyName = "properties.snapshotAccessState")] + public string SnapshotAccessState { get; private set; } + /// /// Gets or sets resource tags /// @@ -162,6 +183,10 @@ public SnapshotUpdate() public IDictionary Tags { get; set; } /// + /// Gets or sets the snapshots sku name. Can be Standard_LRS, + /// Premium_LRS, or Standard_ZRS. This is an optional parameter for + /// incremental snapshot and the default behavior is the SKU will be + /// set to the same sku as the previous snapshot /// [JsonProperty(PropertyName = "sku")] public SnapshotSku Sku { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/StatusCodeCount.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/StatusCodeCount.cs deleted file mode 100644 index e67296e73bc8..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/StatusCodeCount.cs +++ /dev/null @@ -1,60 +0,0 @@ -// -// 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; - - /// - /// The status code and count of the cloud service instance view statuses - /// - public partial class StatusCodeCount - { - /// - /// Initializes a new instance of the StatusCodeCount class. - /// - public StatusCodeCount() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the StatusCodeCount class. - /// - /// The instance view status code - /// Number of instances having this status - /// code - public StatusCodeCount(string code = default(string), int? count = default(int?)) - { - Code = code; - Count = count; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the instance view status code - /// - [JsonProperty(PropertyName = "code")] - public string Code { get; private set; } - - /// - /// Gets number of instances having this status code - /// - [JsonProperty(PropertyName = "count")] - public int? Count { get; private set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SubResourceWithColocationStatus.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SubResourceWithColocationStatus.cs index e0b9d1f2304b..a90746619824 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/SubResourceWithColocationStatus.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SubResourceWithColocationStatus.cs @@ -10,12 +10,10 @@ namespace Microsoft.Azure.Management.Compute.Models { - using Microsoft.Rest; - using Microsoft.Rest.Azure; using Newtonsoft.Json; using System.Linq; - public partial class SubResourceWithColocationStatus : IResource + public partial class SubResourceWithColocationStatus : SubResource { /// /// Initializes a new instance of the SubResourceWithColocationStatus @@ -30,9 +28,11 @@ public SubResourceWithColocationStatus() /// Initializes a new instance of the SubResourceWithColocationStatus /// class. /// + /// Resource Id /// Describes colocation status of a /// resource in the Proximity Placement Group. - public SubResourceWithColocationStatus(InstanceViewStatus colocationStatus = default(InstanceViewStatus)) + public SubResourceWithColocationStatus(string id = default(string), InstanceViewStatus colocationStatus = default(InstanceViewStatus)) + : base(id) { ColocationStatus = colocationStatus; CustomInit(); diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SupportedCapabilities.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SupportedCapabilities.cs index 100a17891c83..c1a7f8ee3167 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/SupportedCapabilities.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SupportedCapabilities.cs @@ -37,11 +37,16 @@ public SupportedCapabilities() /// OS disk is created supports accelerated networking. /// CPU architecture supported by an OS /// disk. Possible values include: 'x64', 'Arm64' - public SupportedCapabilities(string diskControllerTypes = default(string), bool? acceleratedNetwork = default(bool?), string architecture = default(string)) + /// Refers to the security + /// capability of the disk supported to create a Trusted launch or + /// Confidential VM. Possible values include: 'TrustedLaunchSupported', + /// 'TrustedLaunchAndConfidentialVMSupported' + public SupportedCapabilities(string diskControllerTypes = default(string), bool? acceleratedNetwork = default(bool?), string architecture = default(string), string supportedSecurityOption = default(string)) { DiskControllerTypes = diskControllerTypes; AcceleratedNetwork = acceleratedNetwork; Architecture = architecture; + SupportedSecurityOption = supportedSecurityOption; CustomInit(); } @@ -71,5 +76,14 @@ public SupportedCapabilities() [JsonProperty(PropertyName = "architecture")] public string Architecture { get; set; } + /// + /// Gets or sets refers to the security capability of the disk + /// supported to create a Trusted launch or Confidential VM. Possible + /// values include: 'TrustedLaunchSupported', + /// 'TrustedLaunchAndConfidentialVMSupported' + /// + [JsonProperty(PropertyName = "supportedSecurityOption")] + public string SupportedSecurityOption { get; set; } + } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SupportedSecurityOption.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SupportedSecurityOption.cs new file mode 100644 index 000000000000..313a71cb62f8 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SupportedSecurityOption.cs @@ -0,0 +1,29 @@ +// +// 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 +{ + + /// + /// Defines values for SupportedSecurityOption. + /// + public static class SupportedSecurityOption + { + /// + /// The disk supports creating Trusted Launch VMs. + /// + public const string TrustedLaunchSupported = "TrustedLaunchSupported"; + /// + /// The disk supports creating both Trusted Launch and Confidential + /// VMs. + /// + public const string TrustedLaunchAndConfidentialVMSupported = "TrustedLaunchAndConfidentialVMSupported"; + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SystemData.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SystemData.cs index bbe7c8971855..7f55b8ef0c06 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/SystemData.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SystemData.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// The system meta data relating to this resource. + /// Metadata pertaining to creation and last modification of the resource. /// public partial class SystemData { @@ -29,15 +29,27 @@ public SystemData() /// /// Initializes a new instance of the SystemData class. /// - /// Specifies the time in UTC at which the - /// Cloud Service (extended support) resource was created. <br - /// />Minimum api-version: 2022-04-04. - /// Specifies the time in UTC at which the - /// Cloud Service (extended support) resource was last modified. <br - /// />Minimum api-version: 2022-04-04. - public SystemData(System.DateTime? createdAt = default(System.DateTime?), System.DateTime? lastModifiedAt = default(System.DateTime?)) + /// The identity that created the + /// resource. + /// The type of identity that created the + /// resource. Possible values include: 'User', 'Application', + /// 'ManagedIdentity', 'Key' + /// The timestamp of resource creation + /// (UTC). + /// The identity that last modified the + /// resource. + /// The type of identity that last + /// modified the resource. Possible values include: 'User', + /// 'Application', 'ManagedIdentity', 'Key' + /// The timestamp of resource last + /// modification (UTC) + public SystemData(string createdBy = default(string), string createdByType = default(string), System.DateTime? createdAt = default(System.DateTime?), string lastModifiedBy = default(string), string lastModifiedByType = default(string), System.DateTime? lastModifiedAt = default(System.DateTime?)) { + CreatedBy = createdBy; + CreatedByType = createdByType; CreatedAt = createdAt; + LastModifiedBy = lastModifiedBy; + LastModifiedByType = lastModifiedByType; LastModifiedAt = lastModifiedAt; CustomInit(); } @@ -48,20 +60,44 @@ public SystemData() partial void CustomInit(); /// - /// Gets specifies the time in UTC at which the Cloud Service (extended - /// support) resource was created. &lt;br /&gt;Minimum - /// api-version: 2022-04-04. + /// Gets or sets the identity that created the resource. + /// + [JsonProperty(PropertyName = "createdBy")] + public string CreatedBy { get; set; } + + /// + /// Gets or sets the type of identity that created the resource. + /// Possible values include: 'User', 'Application', 'ManagedIdentity', + /// 'Key' + /// + [JsonProperty(PropertyName = "createdByType")] + public string CreatedByType { get; set; } + + /// + /// Gets or sets the timestamp of resource creation (UTC). /// [JsonProperty(PropertyName = "createdAt")] - public System.DateTime? CreatedAt { get; private set; } + public System.DateTime? CreatedAt { get; set; } + + /// + /// Gets or sets the identity that last modified the resource. + /// + [JsonProperty(PropertyName = "lastModifiedBy")] + public string LastModifiedBy { get; set; } + + /// + /// Gets or sets the type of identity that last modified the resource. + /// Possible values include: 'User', 'Application', 'ManagedIdentity', + /// 'Key' + /// + [JsonProperty(PropertyName = "lastModifiedByType")] + public string LastModifiedByType { get; set; } /// - /// Gets specifies the time in UTC at which the Cloud Service (extended - /// support) resource was last modified. &lt;br /&gt;Minimum - /// api-version: 2022-04-04. + /// Gets or sets the timestamp of resource last modification (UTC) /// [JsonProperty(PropertyName = "lastModifiedAt")] - public System.DateTime? LastModifiedAt { get; private set; } + public System.DateTime? LastModifiedAt { get; set; } } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/SystemDataModel.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/SystemDataModel.cs new file mode 100644 index 000000000000..f052aad4ae8c --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/SystemDataModel.cs @@ -0,0 +1,67 @@ +// +// 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; + + /// + /// The system meta data relating to this resource. + /// + public partial class SystemDataModel + { + /// + /// Initializes a new instance of the SystemDataModel class. + /// + public SystemDataModel() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SystemDataModel class. + /// + /// Specifies the time in UTC at which the + /// Cloud Service (extended support) resource was created. <br + /// />Minimum api-version: 2022-04-04. + /// Specifies the time in UTC at which the + /// Cloud Service (extended support) resource was last modified. <br + /// />Minimum api-version: 2022-04-04. + public SystemDataModel(System.DateTime? createdAt = default(System.DateTime?), System.DateTime? lastModifiedAt = default(System.DateTime?)) + { + CreatedAt = createdAt; + LastModifiedAt = lastModifiedAt; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets specifies the time in UTC at which the Cloud Service (extended + /// support) resource was created. &lt;br /&gt;Minimum + /// api-version: 2022-04-04. + /// + [JsonProperty(PropertyName = "createdAt")] + public System.DateTime? CreatedAt { get; private set; } + + /// + /// Gets specifies the time in UTC at which the Cloud Service (extended + /// support) resource was last modified. &lt;br /&gt;Minimum + /// api-version: 2022-04-04. + /// + [JsonProperty(PropertyName = "lastModifiedAt")] + public System.DateTime? LastModifiedAt { get; private set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/TargetRegion.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/TargetRegion.cs index 3b7862883e79..60b5b73937d2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/TargetRegion.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/TargetRegion.cs @@ -40,6 +40,9 @@ public TargetRegion() /// to be used to store the image. This property is not updatable. /// Possible values include: 'Standard_LRS', 'Standard_ZRS', /// 'Premium_LRS', 'PremiumV2_LRS' + /// Optional. Allows users to provide customer + /// managed keys for encrypting the OS and data disks in the gallery + /// artifact. /// Contains the flag setting to hide /// an image when users specify version='latest' /// List of storage sku with @@ -82,6 +85,8 @@ public TargetRegion() public string StorageAccountType { get; set; } /// + /// Gets or sets optional. Allows users to provide customer managed + /// keys for encrypting the OS and data disks in the gallery artifact. /// [JsonProperty(PropertyName = "encryption")] public EncryptionImages Encryption { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/UpdateDomain.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/UpdateDomain.cs deleted file mode 100644 index a70bab5d5e0d..000000000000 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/UpdateDomain.cs +++ /dev/null @@ -1,59 +0,0 @@ -// -// 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 an update domain for the cloud service. - /// - public partial class UpdateDomain - { - /// - /// Initializes a new instance of the UpdateDomain class. - /// - public UpdateDomain() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the UpdateDomain class. - /// - /// Resource Id - /// Resource Name - public UpdateDomain(string id = default(string), string name = default(string)) - { - Id = id; - Name = name; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets resource Id - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } - - /// - /// Gets resource Name - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - } -} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/UpdateResourceDefinition.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/UpdateResourceDefinition.cs index d6e03b654c5f..5e3c55aa2d7d 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/UpdateResourceDefinition.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/UpdateResourceDefinition.cs @@ -10,8 +10,6 @@ namespace Microsoft.Azure.Management.Compute.Models { - using Microsoft.Rest; - using Microsoft.Rest.Azure; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -20,7 +18,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// /// The Update Resource model definition. /// - public partial class UpdateResourceDefinition : IResource + public partial class UpdateResourceDefinition { /// /// Initializes a new instance of the UpdateResourceDefinition class. diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachine.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachine.cs index e349b2f901be..b81cd31d8ea6 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachine.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachine.cs @@ -39,13 +39,6 @@ public VirtualMachine() /// Resource name /// Resource type /// Resource tags - /// Specifies information about the marketplace - /// image used to create the virtual machine. This element is only used - /// for marketplace images. Before you can use a marketplace image from - /// an API, you must enable the image for programmatic use. In the - /// Azure portal, find the marketplace image that you want to use and - /// then click **Want to deploy programmatically, Get Started ->**. - /// Enter any required information and then click **Save**. /// Specifies the hardware settings for /// the virtual machine. /// Specifies Redeploy, Reboot and @@ -160,11 +153,18 @@ public VirtualMachine() /// Specifies the time at which the Virtual /// Machine resource was created. Minimum api-version: /// 2021-11-01. + /// Specifies information about the marketplace + /// image used to create the virtual machine. This element is only used + /// for marketplace images. Before you can use a marketplace image from + /// an API, you must enable the image for programmatic use. In the + /// Azure portal, find the marketplace image that you want to use and + /// then click **Want to deploy programmatically, Get Started ->**. + /// Enter any required information and then click **Save**. /// The virtual machine child extension /// resources. /// The identity of the virtual machine, if /// configured. - /// The virtual machine zones. + /// The availability zones. /// The extended location of the Virtual /// Machine. /// ManagedBy is set to Virtual Machine Scale @@ -178,10 +178,9 @@ public VirtualMachine() /// user-defined constraints for virtual machine hardware placement. /// This property cannot be changed once VM is provisioned. Minimum /// api-version: 2024-11-01. - public VirtualMachine(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Plan plan = default(Plan), HardwareProfile hardwareProfile = default(HardwareProfile), ScheduledEventsPolicy scheduledEventsPolicy = default(ScheduledEventsPolicy), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), SecurityProfile securityProfile = default(SecurityProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource virtualMachineScaleSet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), string priority = default(string), string evictionPolicy = default(string), BillingProfile billingProfile = default(BillingProfile), SubResource host = default(SubResource), SubResource hostGroup = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), string extensionsTimeBudget = default(string), int? platformFaultDomain = default(int?), ScheduledEventsProfile scheduledEventsProfile = default(ScheduledEventsProfile), string userData = default(string), CapacityReservationProfile capacityReservation = default(CapacityReservationProfile), ApplicationProfile applicationProfile = default(ApplicationProfile), System.DateTime? timeCreated = default(System.DateTime?), IList resources = default(IList), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList), ExtendedLocation extendedLocation = default(ExtendedLocation), string managedBy = default(string), string etag = default(string), Placement placement = default(Placement)) + public VirtualMachine(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), HardwareProfile hardwareProfile = default(HardwareProfile), ScheduledEventsPolicy scheduledEventsPolicy = default(ScheduledEventsPolicy), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), SecurityProfile securityProfile = default(SecurityProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource virtualMachineScaleSet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), string priority = default(string), string evictionPolicy = default(string), BillingProfile billingProfile = default(BillingProfile), SubResource host = default(SubResource), SubResource hostGroup = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), string extensionsTimeBudget = default(string), int? platformFaultDomain = default(int?), ScheduledEventsProfile scheduledEventsProfile = default(ScheduledEventsProfile), string userData = default(string), CapacityReservationProfile capacityReservation = default(CapacityReservationProfile), ApplicationProfile applicationProfile = default(ApplicationProfile), System.DateTime? timeCreated = default(System.DateTime?), Plan plan = default(Plan), IList resources = default(IList), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList), ExtendedLocation extendedLocation = default(ExtendedLocation), string managedBy = default(string), string etag = default(string), Placement placement = default(Placement)) : base(location, id, name, type, tags) { - Plan = plan; HardwareProfile = hardwareProfile; ScheduledEventsPolicy = scheduledEventsPolicy; StorageProfile = storageProfile; @@ -209,6 +208,7 @@ public VirtualMachine() CapacityReservation = capacityReservation; ApplicationProfile = applicationProfile; TimeCreated = timeCreated; + Plan = plan; Resources = resources; Identity = identity; Zones = zones; @@ -224,18 +224,6 @@ public VirtualMachine() /// partial void CustomInit(); - /// - /// Gets or sets specifies information about the marketplace image used - /// to create the virtual machine. This element is only used for - /// marketplace images. Before you can use a marketplace image from an - /// API, you must enable the image for programmatic use. In the Azure - /// portal, find the marketplace image that you want to use and then - /// click **Want to deploy programmatically, Get Started -&gt;**. - /// Enter any required information and then click **Save**. - /// - [JsonProperty(PropertyName = "plan")] - public Plan Plan { get; set; } - /// /// Gets or sets specifies the hardware settings for the virtual /// machine. @@ -481,6 +469,18 @@ public VirtualMachine() [JsonProperty(PropertyName = "properties.timeCreated")] public System.DateTime? TimeCreated { get; private set; } + /// + /// Gets or sets specifies information about the marketplace image used + /// to create the virtual machine. This element is only used for + /// marketplace images. Before you can use a marketplace image from an + /// API, you must enable the image for programmatic use. In the Azure + /// portal, find the marketplace image that you want to use and then + /// click **Want to deploy programmatically, Get Started -&gt;**. + /// Enter any required information and then click **Save**. + /// + [JsonProperty(PropertyName = "plan")] + public Plan Plan { get; set; } + /// /// Gets the virtual machine child extension resources. /// @@ -494,7 +494,7 @@ public VirtualMachine() public VirtualMachineIdentity Identity { get; set; } /// - /// Gets or sets the virtual machine zones. + /// Gets or sets the availability zones. /// [JsonProperty(PropertyName = "zones")] public IList Zones { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineCaptureResult.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineCaptureResult.cs index a99ef8504432..95398bbdf8ad 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineCaptureResult.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineCaptureResult.cs @@ -10,8 +10,6 @@ namespace Microsoft.Azure.Management.Compute.Models { - using Microsoft.Rest; - using Microsoft.Rest.Azure; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -20,7 +18,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// /// Output of virtual machine capture operation. /// - public partial class VirtualMachineCaptureResult : IResource + public partial class VirtualMachineCaptureResult : SubResource { /// /// Initializes a new instance of the VirtualMachineCaptureResult @@ -35,6 +33,7 @@ public VirtualMachineCaptureResult() /// Initializes a new instance of the VirtualMachineCaptureResult /// class. /// + /// Resource Id /// the schema of the captured virtual /// machine /// the version of the content @@ -42,7 +41,8 @@ public VirtualMachineCaptureResult() /// machine /// a list of resource items of the captured /// virtual machine - public VirtualMachineCaptureResult(string schema = default(string), string contentVersion = default(string), object parameters = default(object), IList resources = default(IList)) + public VirtualMachineCaptureResult(string id = default(string), string schema = default(string), string contentVersion = default(string), object parameters = default(object), IList resources = default(IList)) + : base(id) { Schema = schema; ContentVersion = contentVersion; diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineExtension.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineExtension.cs index 68a90a583cb7..c42b0ada374b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineExtension.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineExtension.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// Describes a Virtual Machine Extension. /// [Rest.Serialization.JsonTransformation] - public partial class VirtualMachineExtension : ResourceWithOptionalLocation + public partial class VirtualMachineExtension : Resource { /// /// Initializes a new instance of the VirtualMachineExtension class. @@ -74,7 +74,7 @@ public VirtualMachineExtension() /// key vault /// Collection of extension /// names after which this extension needs to be provisioned. - public VirtualMachineExtension(string location = default(string), string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string forceUpdateTag = default(string), string publisher = default(string), string virtualMachineExtensionType = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference), IList provisionAfterExtensions = default(IList)) + public VirtualMachineExtension(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string forceUpdateTag = default(string), string publisher = default(string), string virtualMachineExtensionType = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference), IList provisionAfterExtensions = default(IList)) : base(location, id, name, type, tags) { ForceUpdateTag = forceUpdateTag; @@ -195,8 +195,9 @@ public VirtualMachineExtension() /// /// Thrown if validation fails /// - public virtual void Validate() + public override void Validate() { + base.Validate(); if (ProtectedSettingsFromKeyVault != null) { ProtectedSettingsFromKeyVault.Validate(); diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineExtensionsCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineExtensionsCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..020b805a7884 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineExtensionsCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class VirtualMachineExtensionsCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachineExtensionsCreateOrUpdateHeaders class. + /// + public VirtualMachineExtensionsCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineExtensionsCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineExtensionsCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineExtensionsUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineExtensionsUpdateHeaders.cs new file mode 100644 index 000000000000..2bc309ca8360 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineExtensionsUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Update operation. + /// + public partial class VirtualMachineExtensionsUpdateHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachineExtensionsUpdateHeaders class. + /// + public VirtualMachineExtensionsUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineExtensionsUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineExtensionsUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineImage.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineImage.cs index ab60c6ad93e2..9920329fd922 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineImage.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineImage.cs @@ -44,12 +44,22 @@ public VirtualMachineImage() /// resources](https://docs.microsoft.com/azure/azure-resource-manager/resource-group-using-tags.md). /// The extended location of the Virtual /// Machine. - /// Possible values include: 'V1', - /// 'V2' + /// Used for establishing the purchase context of + /// any 3rd Party artifact through MarketPlace. + /// Contains the os disk image + /// information. + /// The list of data disk images + /// information. + /// Describes automatic OS + /// upgrade properties on the image. + /// Specifies the HyperVGeneration Type. + /// Possible values include: 'V1', 'V2' /// Specifies disallowed configuration for the /// VirtualMachine created from the image - /// Possible values include: 'x64', - /// 'Arm64' + /// Specifies the Architecture Type. + /// Possible values include: 'x64', 'Arm64' + /// Describes image deprecation + /// status properties on the image. public VirtualMachineImage(string name, string location, string id = default(string), IDictionary tags = default(IDictionary), ExtendedLocation extendedLocation = default(ExtendedLocation), PurchasePlan plan = default(PurchasePlan), OSDiskImage osDiskImage = default(OSDiskImage), IList dataDiskImages = default(IList), AutomaticOSUpgradeProperties automaticOSUpgradeProperties = default(AutomaticOSUpgradeProperties), string hyperVGeneration = default(string), DisallowedConfiguration disallowed = default(DisallowedConfiguration), IList features = default(IList), string architecture = default(string), ImageDeprecationStatus imageDeprecationStatus = default(ImageDeprecationStatus)) : base(name, location, id, tags, extendedLocation) { @@ -71,27 +81,34 @@ public VirtualMachineImage() partial void CustomInit(); /// + /// Gets or sets used for establishing the purchase context of any 3rd + /// Party artifact through MarketPlace. /// [JsonProperty(PropertyName = "properties.plan")] public PurchasePlan Plan { get; set; } /// + /// Gets or sets contains the os disk image information. /// [JsonProperty(PropertyName = "properties.osDiskImage")] public OSDiskImage OsDiskImage { get; set; } /// + /// Gets or sets the list of data disk images information. /// [JsonProperty(PropertyName = "properties.dataDiskImages")] public IList DataDiskImages { get; set; } /// + /// Gets or sets describes automatic OS upgrade properties on the + /// image. /// [JsonProperty(PropertyName = "properties.automaticOSUpgradeProperties")] public AutomaticOSUpgradeProperties AutomaticOSUpgradeProperties { get; set; } /// - /// Gets or sets possible values include: 'V1', 'V2' + /// Gets or sets specifies the HyperVGeneration Type. Possible values + /// include: 'V1', 'V2' /// [JsonProperty(PropertyName = "properties.hyperVGeneration")] public string HyperVGeneration { get; set; } @@ -109,12 +126,15 @@ public VirtualMachineImage() public IList Features { get; set; } /// - /// Gets or sets possible values include: 'x64', 'Arm64' + /// Gets or sets specifies the Architecture Type. Possible values + /// include: 'x64', 'Arm64' /// [JsonProperty(PropertyName = "properties.architecture")] public string Architecture { get; set; } /// + /// Gets or sets describes image deprecation status properties on the + /// image. /// [JsonProperty(PropertyName = "properties.imageDeprecationStatus")] public ImageDeprecationStatus ImageDeprecationStatus { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineInstallPatchesParameters.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineInstallPatchesParameters.cs index 8b461cf4c849..a2fea3379579 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineInstallPatchesParameters.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineInstallPatchesParameters.cs @@ -42,7 +42,7 @@ public VirtualMachineInstallPatchesParameters() /// Windows VM, as directly received by the API /// Input for InstallPatches on a Linux /// VM, as directly received by the API - public VirtualMachineInstallPatchesParameters(string rebootSetting, string maximumDuration = default(string), WindowsParameters windowsParameters = default(WindowsParameters), LinuxParameters linuxParameters = default(LinuxParameters)) + public VirtualMachineInstallPatchesParameters(string rebootSetting, System.TimeSpan? maximumDuration = default(System.TimeSpan?), WindowsParameters windowsParameters = default(WindowsParameters), LinuxParameters linuxParameters = default(LinuxParameters)) { MaximumDuration = maximumDuration; RebootSetting = rebootSetting; @@ -62,7 +62,7 @@ public VirtualMachineInstallPatchesParameters() /// string such as PT4H (4 hours) /// [JsonProperty(PropertyName = "maximumDuration")] - public string MaximumDuration { get; set; } + public System.TimeSpan? MaximumDuration { get; set; } /// /// Gets or sets defines when it is acceptable to reboot a VM during a diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineInstanceView.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineInstanceView.cs index 43a578cfcf76..55d6139ca22b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineInstanceView.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineInstanceView.cs @@ -52,8 +52,7 @@ public VirtualMachineInstanceView() /// status on the virtual machine. /// The virtual machine disk information. /// The extensions information. - /// The application health status for the VM, - /// provided through Application Health Extension. + /// The health status for the VM. /// Boot Diagnostics is a debugging /// feature which allows you to view Console Output and Screenshot to /// diagnose VM status. You can easily view the output of your console @@ -166,8 +165,7 @@ public VirtualMachineInstanceView() public IList Extensions { get; set; } /// - /// Gets the application health status for the VM, provided through - /// Application Health Extension. + /// Gets the health status for the VM. /// [JsonProperty(PropertyName = "vmHealth")] public VirtualMachineHealthStatus VmHealth { get; private set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinePublicIPAddressConfiguration.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinePublicIPAddressConfiguration.cs index 573abfe35c08..5b02a6a0c7e6 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinePublicIPAddressConfiguration.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinePublicIPAddressConfiguration.cs @@ -57,6 +57,8 @@ public VirtualMachinePublicIPAddressConfiguration() /// Specify the public IP /// allocation type. Possible values include: 'Dynamic', /// 'Static' + /// Describes the public IP Sku. It can only be set + /// with OrchestrationMode as Flexible. public VirtualMachinePublicIPAddressConfiguration(string name, int? idleTimeoutInMinutes = default(int?), string deleteOption = default(string), VirtualMachinePublicIPAddressDnsSettingsConfiguration dnsSettings = default(VirtualMachinePublicIPAddressDnsSettingsConfiguration), IList ipTags = default(IList), SubResource publicIPPrefix = default(SubResource), string publicIPAddressVersion = default(string), string publicIPAllocationMethod = default(string), PublicIPAddressSku sku = default(PublicIPAddressSku)) { Name = name; @@ -133,6 +135,8 @@ public VirtualMachinePublicIPAddressConfiguration() public string PublicIPAllocationMethod { get; set; } /// + /// Gets or sets describes the public IP Sku. It can only be set with + /// OrchestrationMode as Flexible. /// [JsonProperty(PropertyName = "sku")] public PublicIPAddressSku Sku { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommand.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommand.cs index a48ed0397d6a..af395bdc0aae 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommand.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommand.cs @@ -55,8 +55,8 @@ public VirtualMachineRunCommand() /// Specifies the Azure storage blob where /// script output stream will be uploaded. Use a SAS URI with read, /// append, create, write access OR use managed identity to provide the - /// VM access to the blob. Refer outputBlobManagedIdentity parameter. - /// + /// VM access to the blob. Refer outputBlobManagedIdentity + /// parameter. /// Specifies the Azure storage blob where /// script error stream will be uploaded. Use a SAS URI with read, /// append, create, write access OR use managed identity to provide the @@ -69,8 +69,8 @@ public VirtualMachineRunCommand() /// Blob Data Contributor' role assignment. In case of user-assigned /// identity, make sure you add it under VM's identity. For more info /// on managed identity and Run Command, refer - /// https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged - /// + /// https://aka.ms/ManagedIdentity and + /// https://aka.ms/RunCommandManaged /// User-assigned managed /// identity that has access to errorBlobUri storage blob. Use an empty /// object in case of system-assigned identity. Make sure managed @@ -78,8 +78,8 @@ public VirtualMachineRunCommand() /// Blob Data Contributor' role assignment. In case of user-assigned /// identity, make sure you add it under VM's identity. For more info /// on managed identity and Run Command, refer - /// https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged - /// + /// https://aka.ms/ManagedIdentity and + /// https://aka.ms/RunCommandManaged /// The provisioning state, which only /// appears in the response. If treatFailureAsDeploymentFailure set to /// true, any failure in the script will fail the deployment and @@ -89,8 +89,7 @@ public VirtualMachineRunCommand() /// extensions platform, it would not indicate whether script failed in /// case of script failures. See instance view of run command in case /// of script failures to see executionMessage, output, error: - /// https://aka.ms/runcommandmanaged#get-execution-status-and-results - /// + /// https://aka.ms/runcommandmanaged#get-execution-status-and-results /// The virtual machine run command instance /// view. /// Optional. If set to @@ -101,8 +100,7 @@ public VirtualMachineRunCommand() /// whether script failed in case of script failures. See instance view /// of run command in case of script failures to see executionMessage, /// output, error: - /// https://aka.ms/runcommandmanaged#get-execution-status-and-results - /// + /// https://aka.ms/runcommandmanaged#get-execution-status-and-results public VirtualMachineRunCommand(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), VirtualMachineRunCommandScriptSource source = default(VirtualMachineRunCommandScriptSource), IList parameters = default(IList), IList protectedParameters = default(IList), bool? asyncExecution = default(bool?), string runAsUser = default(string), string runAsPassword = default(string), int? timeoutInSeconds = default(int?), string outputBlobUri = default(string), string errorBlobUri = default(string), RunCommandManagedIdentity outputBlobManagedIdentity = default(RunCommandManagedIdentity), RunCommandManagedIdentity errorBlobManagedIdentity = default(RunCommandManagedIdentity), string provisioningState = default(string), VirtualMachineRunCommandInstanceView instanceView = default(VirtualMachineRunCommandInstanceView), bool? treatFailureAsDeploymentFailure = default(bool?)) : base(location, id, name, type, tags) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommandUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommandUpdate.cs index d495858d7f17..3a54ac63c34f 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommandUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommandUpdate.cs @@ -53,8 +53,8 @@ public VirtualMachineRunCommandUpdate() /// Specifies the Azure storage blob where /// script output stream will be uploaded. Use a SAS URI with read, /// append, create, write access OR use managed identity to provide the - /// VM access to the blob. Refer outputBlobManagedIdentity parameter. - /// + /// VM access to the blob. Refer outputBlobManagedIdentity + /// parameter. /// Specifies the Azure storage blob where /// script error stream will be uploaded. Use a SAS URI with read, /// append, create, write access OR use managed identity to provide the @@ -67,8 +67,8 @@ public VirtualMachineRunCommandUpdate() /// Blob Data Contributor' role assignment. In case of user-assigned /// identity, make sure you add it under VM's identity. For more info /// on managed identity and Run Command, refer - /// https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged - /// + /// https://aka.ms/ManagedIdentity and + /// https://aka.ms/RunCommandManaged /// User-assigned managed /// identity that has access to errorBlobUri storage blob. Use an empty /// object in case of system-assigned identity. Make sure managed @@ -76,8 +76,8 @@ public VirtualMachineRunCommandUpdate() /// Blob Data Contributor' role assignment. In case of user-assigned /// identity, make sure you add it under VM's identity. For more info /// on managed identity and Run Command, refer - /// https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged - /// + /// https://aka.ms/ManagedIdentity and + /// https://aka.ms/RunCommandManaged /// The provisioning state, which only /// appears in the response. If treatFailureAsDeploymentFailure set to /// true, any failure in the script will fail the deployment and @@ -87,8 +87,7 @@ public VirtualMachineRunCommandUpdate() /// extensions platform, it would not indicate whether script failed in /// case of script failures. See instance view of run command in case /// of script failures to see executionMessage, output, error: - /// https://aka.ms/runcommandmanaged#get-execution-status-and-results - /// + /// https://aka.ms/runcommandmanaged#get-execution-status-and-results /// The virtual machine run command instance /// view. /// Optional. If set to @@ -99,8 +98,7 @@ public VirtualMachineRunCommandUpdate() /// whether script failed in case of script failures. See instance view /// of run command in case of script failures to see executionMessage, /// output, error: - /// https://aka.ms/runcommandmanaged#get-execution-status-and-results - /// + /// https://aka.ms/runcommandmanaged#get-execution-status-and-results public VirtualMachineRunCommandUpdate(IDictionary tags = default(IDictionary), VirtualMachineRunCommandScriptSource source = default(VirtualMachineRunCommandScriptSource), IList parameters = default(IList), IList protectedParameters = default(IList), bool? asyncExecution = default(bool?), string runAsUser = default(string), string runAsPassword = default(string), int? timeoutInSeconds = default(int?), string outputBlobUri = default(string), string errorBlobUri = default(string), RunCommandManagedIdentity outputBlobManagedIdentity = default(RunCommandManagedIdentity), RunCommandManagedIdentity errorBlobManagedIdentity = default(RunCommandManagedIdentity), string provisioningState = default(string), VirtualMachineRunCommandInstanceView instanceView = default(VirtualMachineRunCommandInstanceView), bool? treatFailureAsDeploymentFailure = default(bool?)) : base(tags) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommandsCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommandsCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..a0aed1998267 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommandsCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class VirtualMachineRunCommandsCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachineRunCommandsCreateOrUpdateHeaders class. + /// + public VirtualMachineRunCommandsCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineRunCommandsCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineRunCommandsCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommandsUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommandsUpdateHeaders.cs new file mode 100644 index 000000000000..b5a939f36538 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineRunCommandsUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Update operation. + /// + public partial class VirtualMachineRunCommandsUpdateHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachineRunCommandsUpdateHeaders class. + /// + public VirtualMachineRunCommandsUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineRunCommandsUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineRunCommandsUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSet.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSet.cs index 979a89360689..a30670132a0b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSet.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSet.cs @@ -114,7 +114,7 @@ public VirtualMachineScaleSet() /// machine scale set. /// The identity of the virtual machine scale /// set, if configured. - /// The virtual machine scale set zones. + /// The availability zones. /// The extended location of the Virtual /// Machine Scale Set. /// Etag is property returned in Create/Update/Get @@ -354,7 +354,7 @@ public VirtualMachineScaleSet() public VirtualMachineScaleSetIdentity Identity { get; set; } /// - /// Gets or sets the virtual machine scale set zones. + /// Gets or sets the availability zones. /// [JsonProperty(PropertyName = "zones")] public IList Zones { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtension.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtension.cs index e73c85a639e0..496f4b9fe989 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtension.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtension.cs @@ -37,16 +37,16 @@ public VirtualMachineScaleSetExtension() /// class. /// /// Resource Id - /// The name of the extension. - /// Resource type /// If a value is provided and is /// different from the previous value, the extension handler will be /// forced to update even if the extension configuration has not /// changed. /// The name of the extension handler /// publisher. - /// Specifies the type of the extension; an example - /// is "CustomScriptExtension". + /// Specifies the + /// type of the extension; an example is + /// "CustomScriptExtension". /// Specifies the version of the /// script handler. /// Indicates whether the @@ -73,14 +73,14 @@ public VirtualMachineScaleSetExtension() /// The extensions /// protected settings that are passed by reference, and consumed from /// key vault - public VirtualMachineScaleSetExtension(string id = default(string), string name = default(string), string type = default(string), string forceUpdateTag = default(string), string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), IList provisionAfterExtensions = default(IList), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference)) + /// Resource type + /// Resource name + public VirtualMachineScaleSetExtension(string id = default(string), string forceUpdateTag = default(string), string publisher = default(string), string virtualMachineScaleSetExtensionPropertiesType = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), IList provisionAfterExtensions = default(IList), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference), string type = default(string), string name = default(string)) : base(id) { - Name = name; - Type = type; ForceUpdateTag = forceUpdateTag; Publisher = publisher; - Type1 = type1; + VirtualMachineScaleSetExtensionPropertiesType = virtualMachineScaleSetExtensionPropertiesType; TypeHandlerVersion = typeHandlerVersion; AutoUpgradeMinorVersion = autoUpgradeMinorVersion; EnableAutomaticUpgrade = enableAutomaticUpgrade; @@ -90,6 +90,8 @@ public VirtualMachineScaleSetExtension() ProvisionAfterExtensions = provisionAfterExtensions; SuppressFailures = suppressFailures; ProtectedSettingsFromKeyVault = protectedSettingsFromKeyVault; + Type = type; + Name = name; CustomInit(); } @@ -98,18 +100,6 @@ public VirtualMachineScaleSetExtension() /// partial void CustomInit(); - /// - /// Gets or sets the name of the extension. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// Gets resource type - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } - /// /// Gets or sets if a value is provided and is different from the /// previous value, the extension handler will be forced to update even @@ -129,7 +119,7 @@ public VirtualMachineScaleSetExtension() /// "CustomScriptExtension". /// [JsonProperty(PropertyName = "properties.type")] - public string Type1 { get; set; } + public string VirtualMachineScaleSetExtensionPropertiesType { get; set; } /// /// Gets or sets specifies the version of the script handler. @@ -196,6 +186,18 @@ public VirtualMachineScaleSetExtension() [JsonProperty(PropertyName = "properties.protectedSettingsFromKeyVault")] public KeyVaultSecretReference ProtectedSettingsFromKeyVault { get; set; } + /// + /// Gets resource type + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets or sets resource name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + /// /// Validate the object. /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtensionUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtensionUpdate.cs index 11e1ba59579c..a100df931865 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtensionUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtensionUpdate.cs @@ -11,7 +11,6 @@ namespace Microsoft.Azure.Management.Compute.Models { using Microsoft.Rest; - using Microsoft.Rest.Azure; using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; @@ -22,7 +21,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// Describes a Virtual Machine Scale Set Extension. /// [Rest.Serialization.JsonTransformation] - public partial class VirtualMachineScaleSetExtensionUpdate : IResource + public partial class VirtualMachineScaleSetExtensionUpdate : SubResourceReadOnly { /// /// Initializes a new instance of the @@ -37,6 +36,7 @@ public VirtualMachineScaleSetExtensionUpdate() /// Initializes a new instance of the /// VirtualMachineScaleSetExtensionUpdate class. /// + /// Resource Id /// The name of the extension. /// Resource type /// If a value is provided and is @@ -73,7 +73,8 @@ public VirtualMachineScaleSetExtensionUpdate() /// The extensions /// protected settings that are passed by reference, and consumed from /// key vault - public VirtualMachineScaleSetExtensionUpdate(string name = default(string), string type = default(string), string forceUpdateTag = default(string), string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), IList provisionAfterExtensions = default(IList), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference)) + public VirtualMachineScaleSetExtensionUpdate(string id = default(string), string name = default(string), string type = default(string), string forceUpdateTag = default(string), string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), IList provisionAfterExtensions = default(IList), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference)) + : base(id) { Name = name; Type = type; diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtensionsCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtensionsCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..8035501779eb --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtensionsCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class VirtualMachineScaleSetExtensionsCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetExtensionsCreateOrUpdateHeaders class. + /// + public VirtualMachineScaleSetExtensionsCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetExtensionsCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineScaleSetExtensionsCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtensionsUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtensionsUpdateHeaders.cs new file mode 100644 index 000000000000..ab9b625ccfe9 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetExtensionsUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Update operation. + /// + public partial class VirtualMachineScaleSetExtensionsUpdateHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetExtensionsUpdateHeaders class. + /// + public VirtualMachineScaleSetExtensionsUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetExtensionsUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineScaleSetExtensionsUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetNetworkProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetNetworkProfile.cs index e24e44fc5785..302db710df56 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetNetworkProfile.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetNetworkProfile.cs @@ -39,11 +39,10 @@ public VirtualMachineScaleSetNetworkProfile() /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'. /// The list of network /// configurations. - /// Specifies the Microsoft.Network API + /// specifies the Microsoft.Network API /// version used when creating networking resources in the Network /// Interface Configurations for Virtual Machine Scale Set with - /// orchestration mode 'Flexible'. For support of all network - /// properties, use '2022-11-01'. Possible values include: + /// orchestration mode 'Flexible'. Possible values include: /// '2020-11-01', '2022-11-01' public VirtualMachineScaleSetNetworkProfile(ApiEntityReference healthProbe = default(ApiEntityReference), IList networkInterfaceConfigurations = default(IList), string networkApiVersion = default(string)) { @@ -77,8 +76,8 @@ public VirtualMachineScaleSetNetworkProfile() /// Gets or sets specifies the Microsoft.Network API version used when /// creating networking resources in the Network Interface /// Configurations for Virtual Machine Scale Set with orchestration - /// mode 'Flexible'. For support of all network properties, use - /// '2022-11-01'. Possible values include: '2020-11-01', '2022-11-01' + /// mode 'Flexible'. Possible values include: '2020-11-01', + /// '2022-11-01' /// [JsonProperty(PropertyName = "networkApiVersion")] public string NetworkApiVersion { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetPublicIPAddressConfiguration.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetPublicIPAddressConfiguration.cs index 7be218d6cda9..726d974d791b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetPublicIPAddressConfiguration.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetPublicIPAddressConfiguration.cs @@ -54,6 +54,8 @@ public VirtualMachineScaleSetPublicIPAddressConfiguration() /// Specify what happens to the public IP /// when the VM is deleted. Possible values include: 'Delete', /// 'Detach' + /// Describes the public IP Sku. It can only be set + /// with OrchestrationMode as Flexible. public VirtualMachineScaleSetPublicIPAddressConfiguration(string name, int? idleTimeoutInMinutes = default(int?), VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings dnsSettings = default(VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings), IList ipTags = default(IList), SubResource publicIPPrefix = default(SubResource), string publicIPAddressVersion = default(string), string deleteOption = default(string), PublicIPAddressSku sku = default(PublicIPAddressSku)) { Name = name; @@ -122,6 +124,8 @@ public VirtualMachineScaleSetPublicIPAddressConfiguration() public string DeleteOption { get; set; } /// + /// Gets or sets describes the public IP Sku. It can only be set with + /// OrchestrationMode as Flexible. /// [JsonProperty(PropertyName = "sku")] public PublicIPAddressSku Sku { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetStorageProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetStorageProfile.cs index 098d3755ef83..5bfd97599f7c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetStorageProfile.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetStorageProfile.cs @@ -49,6 +49,10 @@ public VirtualMachineScaleSetStorageProfile() /// information about disks, see [About disks and VHDs for Azure /// virtual /// machines](https://docs.microsoft.com/azure/virtual-machines/managed-disks-overview). + /// Specifies the disk controller type + /// configured for the virtual machines in the scale set. Minimum + /// api-version: 2022-08-01. Possible values include: 'SCSI', + /// 'NVMe' public VirtualMachineScaleSetStorageProfile(ImageReference imageReference = default(ImageReference), VirtualMachineScaleSetOSDisk osDisk = default(VirtualMachineScaleSetOSDisk), IList dataDisks = default(IList), string diskControllerType = default(string)) { ImageReference = imageReference; @@ -93,6 +97,9 @@ public VirtualMachineScaleSetStorageProfile() public IList DataDisks { get; set; } /// + /// Gets or sets specifies the disk controller type configured for the + /// virtual machines in the scale set. Minimum api-version: 2022-08-01. + /// Possible values include: 'SCSI', 'NVMe' /// [JsonProperty(PropertyName = "diskControllerType")] public string DiskControllerType { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateIPConfiguration.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateIPConfiguration.cs index b70b05f5047f..121e6bb1b8a5 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateIPConfiguration.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateIPConfiguration.cs @@ -11,7 +11,6 @@ namespace Microsoft.Azure.Management.Compute.Models { using Microsoft.Rest; - using Microsoft.Rest.Azure; using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; @@ -25,7 +24,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// network /// [Rest.Serialization.JsonTransformation] - public partial class VirtualMachineScaleSetUpdateIPConfiguration : IResource + public partial class VirtualMachineScaleSetUpdateIPConfiguration { /// /// Initializes a new instance of the diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateNetworkConfiguration.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateNetworkConfiguration.cs index 5f16ae3d9c65..ec605df9aef4 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateNetworkConfiguration.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateNetworkConfiguration.cs @@ -11,7 +11,6 @@ namespace Microsoft.Azure.Management.Compute.Models { using Microsoft.Rest; - using Microsoft.Rest.Azure; using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; @@ -23,7 +22,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// configurations. /// [Rest.Serialization.JsonTransformation] - public partial class VirtualMachineScaleSetUpdateNetworkConfiguration : IResource + public partial class VirtualMachineScaleSetUpdateNetworkConfiguration { /// /// Initializes a new instance of the diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateNetworkProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateNetworkProfile.cs index 2a1e354a8afa..da19ccd2b575 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateNetworkProfile.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateNetworkProfile.cs @@ -39,11 +39,10 @@ public VirtualMachineScaleSetUpdateNetworkProfile() /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'. /// The list of network /// configurations. - /// Specifies the Microsoft.Network API + /// specifies the Microsoft.Network API /// version used when creating networking resources in the Network /// Interface Configurations for Virtual Machine Scale Set with - /// orchestration mode 'Flexible'. For support of all network - /// properties, use '2022-11-01'. Possible values include: + /// orchestration mode 'Flexible'. Possible values include: /// '2020-11-01', '2022-11-01' public VirtualMachineScaleSetUpdateNetworkProfile(ApiEntityReference healthProbe = default(ApiEntityReference), IList networkInterfaceConfigurations = default(IList), string networkApiVersion = default(string)) { @@ -77,8 +76,8 @@ public VirtualMachineScaleSetUpdateNetworkProfile() /// Gets or sets specifies the Microsoft.Network API version used when /// creating networking resources in the Network Interface /// Configurations for Virtual Machine Scale Set with orchestration - /// mode 'Flexible'. For support of all network properties, use - /// '2022-11-01'. Possible values include: '2020-11-01', '2022-11-01' + /// mode 'Flexible'. Possible values include: '2020-11-01', + /// '2022-11-01' /// [JsonProperty(PropertyName = "networkApiVersion")] public string NetworkApiVersion { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateStorageProfile.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateStorageProfile.cs index a1b87a7f6c9c..5cfa9a4cb5bd 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateStorageProfile.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetUpdateStorageProfile.cs @@ -36,6 +36,12 @@ public VirtualMachineScaleSetUpdateStorageProfile() /// The image reference. /// The OS disk. /// The data disks. + /// Specifies the disk controller type + /// configured for the virtual machines in the scale set. **Note:** You + /// need to deallocate the virtual machines in the scale set before + /// updating its disk controller type based on the upgrade mode + /// configured for the scale set. Minimum api-version: 2022-08-01. + /// Possible values include: 'SCSI', 'NVMe' public VirtualMachineScaleSetUpdateStorageProfile(ImageReference imageReference = default(ImageReference), VirtualMachineScaleSetUpdateOSDisk osDisk = default(VirtualMachineScaleSetUpdateOSDisk), IList dataDisks = default(IList), string diskControllerType = default(string)) { ImageReference = imageReference; @@ -69,6 +75,12 @@ public VirtualMachineScaleSetUpdateStorageProfile() public IList DataDisks { get; set; } /// + /// Gets or sets specifies the disk controller type configured for the + /// virtual machines in the scale set. **Note:** You need to deallocate + /// the virtual machines in the scale set before updating its disk + /// controller type based on the upgrade mode configured for the scale + /// set. Minimum api-version: 2022-08-01. Possible values include: + /// 'SCSI', 'NVMe' /// [JsonProperty(PropertyName = "diskControllerType")] public string DiskControllerType { get; set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVM.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVM.cs index 0e32c3d7077b..953c29a79f2c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVM.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVM.cs @@ -39,8 +39,6 @@ public VirtualMachineScaleSetVM() /// Resource name /// Resource type /// Resource tags - /// The virtual machine instance ID. - /// The virtual machine SKU. /// Specifies whether the latest model /// has been applied to the virtual machine. /// Azure VM unique ID. @@ -106,6 +104,8 @@ public VirtualMachineScaleSetVM() /// Specifies the time at which the Virtual /// Machine resource was created. Minimum api-version: /// 2021-11-01. + /// The virtual machine instance ID. + /// The virtual machine SKU. /// Specifies information about the marketplace /// image used to create the virtual machine. This element is only used /// for marketplace images. Before you can use a marketplace image from @@ -121,11 +121,9 @@ public VirtualMachineScaleSetVM() /// Etag is property returned in Update/Get response /// of the VMSS VM, so that customer can supply it in the header to /// ensure optimistic updates. - public VirtualMachineScaleSetVM(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string instanceId = default(string), Sku sku = default(Sku), bool? latestModelApplied = default(bool?), string vmId = default(string), VirtualMachineScaleSetVMInstanceView instanceView = default(VirtualMachineScaleSetVMInstanceView), HardwareProfile hardwareProfile = default(HardwareProfile), string resilientVMDeletionStatus = default(string), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), SecurityProfile securityProfile = default(SecurityProfile), NetworkProfile networkProfile = default(NetworkProfile), VirtualMachineScaleSetVMNetworkProfileConfiguration networkProfileConfiguration = default(VirtualMachineScaleSetVMNetworkProfileConfiguration), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), string provisioningState = default(string), string licenseType = default(string), string modelDefinitionApplied = default(string), VirtualMachineScaleSetVMProtectionPolicy protectionPolicy = default(VirtualMachineScaleSetVMProtectionPolicy), string userData = default(string), System.DateTime? timeCreated = default(System.DateTime?), Plan plan = default(Plan), IList resources = default(IList), IList zones = default(IList), VirtualMachineIdentity identity = default(VirtualMachineIdentity), string etag = default(string)) + public VirtualMachineScaleSetVM(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), bool? latestModelApplied = default(bool?), string vmId = default(string), VirtualMachineScaleSetVMInstanceView instanceView = default(VirtualMachineScaleSetVMInstanceView), HardwareProfile hardwareProfile = default(HardwareProfile), string resilientVMDeletionStatus = default(string), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), SecurityProfile securityProfile = default(SecurityProfile), NetworkProfile networkProfile = default(NetworkProfile), VirtualMachineScaleSetVMNetworkProfileConfiguration networkProfileConfiguration = default(VirtualMachineScaleSetVMNetworkProfileConfiguration), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), string provisioningState = default(string), string licenseType = default(string), string modelDefinitionApplied = default(string), VirtualMachineScaleSetVMProtectionPolicy protectionPolicy = default(VirtualMachineScaleSetVMProtectionPolicy), string userData = default(string), System.DateTime? timeCreated = default(System.DateTime?), string instanceId = default(string), Sku sku = default(Sku), Plan plan = default(Plan), IList resources = default(IList), IList zones = default(IList), VirtualMachineIdentity identity = default(VirtualMachineIdentity), string etag = default(string)) : base(location, id, name, type, tags) { - InstanceId = instanceId; - Sku = sku; LatestModelApplied = latestModelApplied; VmId = vmId; InstanceView = instanceView; @@ -145,6 +143,8 @@ public VirtualMachineScaleSetVM() ProtectionPolicy = protectionPolicy; UserData = userData; TimeCreated = timeCreated; + InstanceId = instanceId; + Sku = sku; Plan = plan; Resources = resources; Zones = zones; @@ -158,18 +158,6 @@ public VirtualMachineScaleSetVM() /// partial void CustomInit(); - /// - /// Gets the virtual machine instance ID. - /// - [JsonProperty(PropertyName = "instanceId")] - public string InstanceId { get; private set; } - - /// - /// Gets the virtual machine SKU. - /// - [JsonProperty(PropertyName = "sku")] - public Sku Sku { get; private set; } - /// /// Gets specifies whether the latest model has been applied to the /// virtual machine. @@ -328,6 +316,18 @@ public VirtualMachineScaleSetVM() [JsonProperty(PropertyName = "properties.timeCreated")] public System.DateTime? TimeCreated { get; private set; } + /// + /// Gets the virtual machine instance ID. + /// + [JsonProperty(PropertyName = "instanceId")] + public string InstanceId { get; private set; } + + /// + /// Gets the virtual machine SKU. + /// + [JsonProperty(PropertyName = "sku")] + public Sku Sku { get; private set; } + /// /// Gets or sets specifies information about the marketplace image used /// to create the virtual machine. This element is only used for diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtension.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtension.cs index 6ae09ab14e23..93f1c6c9264b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtension.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtension.cs @@ -11,7 +11,6 @@ namespace Microsoft.Azure.Management.Compute.Models { using Microsoft.Rest; - using Microsoft.Rest.Azure; using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; @@ -22,7 +21,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// Describes a VMSS VM Extension. /// [Rest.Serialization.JsonTransformation] - public partial class VirtualMachineScaleSetVMExtension : IResource + public partial class VirtualMachineScaleSetVMExtension : SubResourceReadOnly { /// /// Initializes a new instance of the VirtualMachineScaleSetVMExtension @@ -37,16 +36,15 @@ public VirtualMachineScaleSetVMExtension() /// Initializes a new instance of the VirtualMachineScaleSetVMExtension /// class. /// - /// The name of the extension. - /// Resource type - /// The location of the extension. + /// Resource Id /// How the extension handler should be /// forced to update even if the extension configuration has not /// changed. /// The name of the extension handler /// publisher. - /// Specifies the type of the extension; an example - /// is "CustomScriptExtension". + /// Specifies the + /// type of the extension; an example is + /// "CustomScriptExtension". /// Specifies the version of the /// script handler. /// Indicates whether the @@ -75,14 +73,15 @@ public VirtualMachineScaleSetVMExtension() /// key vault /// Collection of extension /// names after which this extension needs to be provisioned. - public VirtualMachineScaleSetVMExtension(string name = default(string), string type = default(string), string location = default(string), string forceUpdateTag = default(string), string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference), IList provisionAfterExtensions = default(IList)) + /// The location of the extension. + /// Resource type + /// Resource name + public VirtualMachineScaleSetVMExtension(string id = default(string), string forceUpdateTag = default(string), string publisher = default(string), string virtualMachineExtensionPropertiesType = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), string provisioningState = default(string), VirtualMachineExtensionInstanceView instanceView = default(VirtualMachineExtensionInstanceView), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference), IList provisionAfterExtensions = default(IList), string location = default(string), string type = default(string), string name = default(string)) + : base(id) { - Name = name; - Type = type; - Location = location; ForceUpdateTag = forceUpdateTag; Publisher = publisher; - Type1 = type1; + VirtualMachineExtensionPropertiesType = virtualMachineExtensionPropertiesType; TypeHandlerVersion = typeHandlerVersion; AutoUpgradeMinorVersion = autoUpgradeMinorVersion; EnableAutomaticUpgrade = enableAutomaticUpgrade; @@ -93,6 +92,9 @@ public VirtualMachineScaleSetVMExtension() SuppressFailures = suppressFailures; ProtectedSettingsFromKeyVault = protectedSettingsFromKeyVault; ProvisionAfterExtensions = provisionAfterExtensions; + Location = location; + Type = type; + Name = name; CustomInit(); } @@ -101,24 +103,6 @@ public VirtualMachineScaleSetVMExtension() /// partial void CustomInit(); - /// - /// Gets the name of the extension. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets resource type - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } - - /// - /// Gets or sets the location of the extension. - /// - [JsonProperty(PropertyName = "location")] - public string Location { get; set; } - /// /// Gets or sets how the extension handler should be forced to update /// even if the extension configuration has not changed. @@ -137,7 +121,7 @@ public VirtualMachineScaleSetVMExtension() /// "CustomScriptExtension". /// [JsonProperty(PropertyName = "properties.type")] - public string Type1 { get; set; } + public string VirtualMachineExtensionPropertiesType { get; set; } /// /// Gets or sets specifies the version of the script handler. @@ -210,6 +194,24 @@ public VirtualMachineScaleSetVMExtension() [JsonProperty(PropertyName = "properties.provisionAfterExtensions")] public IList ProvisionAfterExtensions { get; set; } + /// + /// Gets or sets the location of the extension. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets resource type + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets resource name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + /// /// Validate the object. /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtensionUpdate.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtensionUpdate.cs index 8337cd87d61f..fdbb3911e616 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtensionUpdate.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtensionUpdate.cs @@ -11,7 +11,6 @@ namespace Microsoft.Azure.Management.Compute.Models { using Microsoft.Rest; - using Microsoft.Rest.Azure; using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; @@ -20,7 +19,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// Describes a VMSS VM Extension. /// [Rest.Serialization.JsonTransformation] - public partial class VirtualMachineScaleSetVMExtensionUpdate : IResource + public partial class VirtualMachineScaleSetVMExtensionUpdate : SubResourceReadOnly { /// /// Initializes a new instance of the @@ -35,6 +34,7 @@ public VirtualMachineScaleSetVMExtensionUpdate() /// Initializes a new instance of the /// VirtualMachineScaleSetVMExtensionUpdate class. /// + /// Resource Id /// The name of the extension. /// Resource type /// How the extension handler should be @@ -66,7 +66,8 @@ public VirtualMachineScaleSetVMExtensionUpdate() /// The extensions /// protected settings that are passed by reference, and consumed from /// key vault - public VirtualMachineScaleSetVMExtensionUpdate(string name = default(string), string type = default(string), string forceUpdateTag = default(string), string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference)) + public VirtualMachineScaleSetVMExtensionUpdate(string id = default(string), string name = default(string), string type = default(string), string forceUpdateTag = default(string), string publisher = default(string), string type1 = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), bool? enableAutomaticUpgrade = default(bool?), object settings = default(object), object protectedSettings = default(object), bool? suppressFailures = default(bool?), KeyVaultSecretReference protectedSettingsFromKeyVault = default(KeyVaultSecretReference)) + : base(id) { Name = name; Type = type; diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtensionsCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtensionsCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..97ca62bbdba0 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtensionsCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class VirtualMachineScaleSetVMExtensionsCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetVMExtensionsCreateOrUpdateHeaders class. + /// + public VirtualMachineScaleSetVMExtensionsCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetVMExtensionsCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineScaleSetVMExtensionsCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtensionsUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtensionsUpdateHeaders.cs new file mode 100644 index 000000000000..04dad5689610 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMExtensionsUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Update operation. + /// + public partial class VirtualMachineScaleSetVMExtensionsUpdateHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetVMExtensionsUpdateHeaders class. + /// + public VirtualMachineScaleSetVMExtensionsUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetVMExtensionsUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineScaleSetVMExtensionsUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMInstanceView.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMInstanceView.cs index 33269c9969d5..0a0d04711bc1 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMInstanceView.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMInstanceView.cs @@ -43,9 +43,7 @@ public VirtualMachineScaleSetVMInstanceView() /// status on the virtual machine. /// The disks information. /// The extensions information. - /// The application health status for the VM, - /// provided through Application Health Extension or Load Balancer - /// Health Probes. + /// The health status for the VM. /// Boot Diagnostics is a debugging /// feature which allows you to view Console Output and Screenshot to /// diagnose VM status. You can easily view the output of your console @@ -145,8 +143,7 @@ public VirtualMachineScaleSetVMInstanceView() public IList Extensions { get; set; } /// - /// Gets the application health status for the VM, provided through - /// Application Health Extension or Load Balancer Health Probes. + /// Gets the health status for the VM. /// [JsonProperty(PropertyName = "vmHealth")] public VirtualMachineHealthStatus VmHealth { get; private set; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMRunCommandsCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMRunCommandsCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..e8c756488d63 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMRunCommandsCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class VirtualMachineScaleSetVMRunCommandsCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetVMRunCommandsCreateOrUpdateHeaders class. + /// + public VirtualMachineScaleSetVMRunCommandsCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetVMRunCommandsCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineScaleSetVMRunCommandsCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMRunCommandsUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMRunCommandsUpdateHeaders.cs new file mode 100644 index 000000000000..e09a4bfdffd9 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMRunCommandsUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Update operation. + /// + public partial class VirtualMachineScaleSetVMRunCommandsUpdateHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetVMRunCommandsUpdateHeaders class. + /// + public VirtualMachineScaleSetVMRunCommandsUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetVMRunCommandsUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineScaleSetVMRunCommandsUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders.cs index 6556e21b46de..0b4fb9f75511 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders.cs @@ -31,9 +31,15 @@ public VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders() /// Initializes a new instance of the /// VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders class. /// - public VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders(string location = default(string)) + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders(string location = default(string), int? retryAfter = default(int?)) { Location = location; + RetryAfter = retryAfter; CustomInit(); } @@ -43,9 +49,18 @@ public VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders() partial void CustomInit(); /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. /// [JsonProperty(PropertyName = "Location")] public string Location { get; set; } + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMsAttachDetachDataDisksHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMsAttachDetachDataDisksHeaders.cs index 96d384ae55eb..9b7b3eb8ff1e 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMsAttachDetachDataDisksHeaders.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetVMsAttachDetachDataDisksHeaders.cs @@ -31,9 +31,15 @@ public VirtualMachineScaleSetVMsAttachDetachDataDisksHeaders() /// Initializes a new instance of the /// VirtualMachineScaleSetVMsAttachDetachDataDisksHeaders class. /// - public VirtualMachineScaleSetVMsAttachDetachDataDisksHeaders(string location = default(string)) + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineScaleSetVMsAttachDetachDataDisksHeaders(string location = default(string), int? retryAfter = default(int?)) { Location = location; + RetryAfter = retryAfter; CustomInit(); } @@ -43,9 +49,18 @@ public VirtualMachineScaleSetVMsAttachDetachDataDisksHeaders() partial void CustomInit(); /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. /// [JsonProperty(PropertyName = "Location")] public string Location { get; set; } + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsApproveRollingUpgradeHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsApproveRollingUpgradeHeaders.cs index 85be5d434525..966db1c1b756 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsApproveRollingUpgradeHeaders.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsApproveRollingUpgradeHeaders.cs @@ -31,9 +31,15 @@ public VirtualMachineScaleSetsApproveRollingUpgradeHeaders() /// Initializes a new instance of the /// VirtualMachineScaleSetsApproveRollingUpgradeHeaders class. /// - public VirtualMachineScaleSetsApproveRollingUpgradeHeaders(string location = default(string)) + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineScaleSetsApproveRollingUpgradeHeaders(string location = default(string), int? retryAfter = default(int?)) { Location = location; + RetryAfter = retryAfter; CustomInit(); } @@ -43,9 +49,18 @@ public VirtualMachineScaleSetsApproveRollingUpgradeHeaders() partial void CustomInit(); /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. /// [JsonProperty(PropertyName = "Location")] public string Location { get; set; } + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..95267ef1c709 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class VirtualMachineScaleSetsCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetsCreateOrUpdateHeaders class. + /// + public VirtualMachineScaleSetsCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetsCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineScaleSetsCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsReapplyHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsReapplyHeaders.cs index 4ac7cf0ab688..4c6765904e48 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsReapplyHeaders.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsReapplyHeaders.cs @@ -31,9 +31,15 @@ public VirtualMachineScaleSetsReapplyHeaders() /// Initializes a new instance of the /// VirtualMachineScaleSetsReapplyHeaders class. /// - public VirtualMachineScaleSetsReapplyHeaders(string location = default(string)) + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineScaleSetsReapplyHeaders(string location = default(string), int? retryAfter = default(int?)) { Location = location; + RetryAfter = retryAfter; CustomInit(); } @@ -43,9 +49,18 @@ public VirtualMachineScaleSetsReapplyHeaders() partial void CustomInit(); /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. /// [JsonProperty(PropertyName = "Location")] public string Location { get; set; } + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsUpdateHeaders.cs new file mode 100644 index 000000000000..80b685f88ed9 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachineScaleSetsUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Update operation. + /// + public partial class VirtualMachineScaleSetsUpdateHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetsUpdateHeaders class. + /// + public VirtualMachineScaleSetsUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetsUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachineScaleSetsUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinesAttachDetachDataDisksHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinesAttachDetachDataDisksHeaders.cs index 13df012da45f..f8933f05da58 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinesAttachDetachDataDisksHeaders.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinesAttachDetachDataDisksHeaders.cs @@ -31,9 +31,15 @@ public VirtualMachinesAttachDetachDataDisksHeaders() /// Initializes a new instance of the /// VirtualMachinesAttachDetachDataDisksHeaders class. /// - public VirtualMachinesAttachDetachDataDisksHeaders(string location = default(string)) + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachinesAttachDetachDataDisksHeaders(string location = default(string), int? retryAfter = default(int?)) { Location = location; + RetryAfter = retryAfter; CustomInit(); } @@ -43,9 +49,18 @@ public VirtualMachinesAttachDetachDataDisksHeaders() partial void CustomInit(); /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. /// [JsonProperty(PropertyName = "Location")] public string Location { get; set; } + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinesCreateOrUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinesCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..44552aad5855 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinesCreateOrUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 CreateOrUpdate operation. + /// + public partial class VirtualMachinesCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachinesCreateOrUpdateHeaders class. + /// + public VirtualMachinesCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachinesCreateOrUpdateHeaders class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachinesCreateOrUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinesUpdateHeaders.cs b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinesUpdateHeaders.cs new file mode 100644 index 000000000000..d4b2c846c7b8 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Generated/Models/VirtualMachinesUpdateHeaders.cs @@ -0,0 +1,66 @@ +// +// 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 Update operation. + /// + public partial class VirtualMachinesUpdateHeaders + { + /// + /// Initializes a new instance of the VirtualMachinesUpdateHeaders + /// class. + /// + public VirtualMachinesUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the VirtualMachinesUpdateHeaders + /// class. + /// + /// The Location header contains the URL where + /// the status of the long running operation can be checked. + /// The Retry-After header can indicate how + /// long the client should wait before polling the operation + /// status. + public VirtualMachinesUpdateHeaders(string location = default(string), int? retryAfter = default(int?)) + { + Location = location; + RetryAfter = retryAfter; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Location header contains the URL where the status + /// of the long running operation can be checked. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + /// + /// Gets or sets the Retry-After header can indicate how long the + /// client should wait before polling the operation status. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + } +} diff --git a/src/Compute/Compute.Management.Sdk/Generated/Operations.cs b/src/Compute/Compute.Management.Sdk/Generated/Operations.cs index 7dae4dbbba58..a371952f2fb5 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/Operations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/Operations.cs @@ -51,7 +51,7 @@ internal Operations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Gets a list of compute operations. + /// List the operations for the provider /// /// /// Headers that will be added to request. @@ -68,7 +68,7 @@ internal Operations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { string apiVersion = "2024-11-01"; // Tracing @@ -183,7 +183,7 @@ internal Operations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -196,7 +196,7 @@ internal Operations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/OperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/OperationsExtensions.cs index 5f8d049c48f2..0702941d0fee 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/OperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/OperationsExtensions.cs @@ -24,18 +24,18 @@ namespace Microsoft.Azure.Management.Compute public static partial class OperationsExtensions { /// - /// Gets a list of compute operations. + /// List the operations for the provider /// /// /// The operations group for this extension method. /// - public static IEnumerable List(this IOperations operations) + public static IEnumerable List(this IOperations operations) { return operations.ListAsync().GetAwaiter().GetResult(); } /// - /// Gets a list of compute operations. + /// List the operations for the provider /// /// /// The operations group for this extension method. @@ -43,7 +43,7 @@ public static IEnumerable List(this IOperations operation /// /// The cancellation token. /// - public static async Task> ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/ProximityPlacementGroupsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ProximityPlacementGroupsOperations.cs index da0af68eb497..47fae874d998 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ProximityPlacementGroupsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ProximityPlacementGroupsOperations.cs @@ -51,17 +51,8 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update a proximity placement group. + /// Lists all proximity placement groups in a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the proximity placement group. - /// - /// - /// Parameters supplied to the Create Proximity Placement Group operation. - /// /// /// Headers that will be added to request. /// @@ -83,24 +74,8 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, ProximityPlacementGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (proximityPlacementGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "proximityPlacementGroupName"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -113,18 +88,13 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("proximityPlacementGroupName", proximityPlacementGroupName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", 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/proximityPlacementGroups/{proximityPlacementGroupName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{proximityPlacementGroupName}", System.Uri.EscapeDataString(proximityPlacementGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/proximityPlacementGroups").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -138,7 +108,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -169,12 +139,6 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -195,7 +159,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -230,7 +194,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -243,25 +207,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -281,16 +227,10 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) } /// - /// Update a proximity placement group. + /// Lists all proximity placement groups in a resource group. /// /// - /// The name of the resource group. - /// - /// - /// The name of the proximity placement group. - /// - /// - /// Resource tags + /// The name of the resource group. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -313,26 +253,28 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (proximityPlacementGroupName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "proximityPlacementGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } string apiVersion = "2024-11-01"; - ProximityPlacementGroupUpdate parameters = new ProximityPlacementGroupUpdate(); - if (tags != null) - { - parameters.Tags = tags; - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -340,19 +282,16 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("proximityPlacementGroupName", proximityPlacementGroupName); tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", 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/proximityPlacementGroups/{proximityPlacementGroupName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{proximityPlacementGroupName}", System.Uri.EscapeDataString(proximityPlacementGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/proximityPlacementGroups").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -365,7 +304,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -396,12 +335,6 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -457,7 +390,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -470,7 +403,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -490,14 +423,18 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) } /// - /// Delete a proximity placement group. + /// Retrieves information about a proximity placement group . /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the proximity placement group. /// + /// + /// includeColocationStatus=true enables fetching the colocation status of all + /// the resources in the proximity placement group. + /// /// /// Headers that will be added to request. /// @@ -507,6 +444,9 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -516,19 +456,30 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, string includeColocationStatus = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (proximityPlacementGroupName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "proximityPlacementGroupName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (proximityPlacementGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "proximityPlacementGroupName"); } string apiVersion = "2024-11-01"; // Tracing @@ -538,23 +489,28 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("proximityPlacementGroupName", proximityPlacementGroupName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("includeColocationStatus", includeColocationStatus); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/proximityPlacementGroups/{proximityPlacementGroupName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{proximityPlacementGroupName}", System.Uri.EscapeDataString(proximityPlacementGroupName)); - _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 (includeColocationStatus != null) + { + _queryParameters.Add(string.Format("includeColocationStatus={0}", System.Uri.EscapeDataString(includeColocationStatus))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -562,7 +518,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -648,13 +604,31 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -663,17 +637,16 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) } /// - /// Retrieves information about a proximity placement group . + /// Create or update a proximity placement group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the proximity placement group. /// - /// - /// includeColocationStatus=true enables fetching the colocation status of all - /// the resources in the proximity placement group. + /// + /// Parameters supplied to the Create Proximity Placement Group operation. /// /// /// Headers that will be added to request. @@ -696,19 +669,38 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, string includeColocationStatus = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, ProximityPlacementGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (proximityPlacementGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "proximityPlacementGroupName"); } - if (Client.SubscriptionId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2024-11-01"; // Tracing @@ -718,24 +710,20 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("proximityPlacementGroupName", proximityPlacementGroupName); - tracingParameters.Add("includeColocationStatus", includeColocationStatus); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", 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/proximityPlacementGroups/{proximityPlacementGroupName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{proximityPlacementGroupName}", System.Uri.EscapeDataString(proximityPlacementGroupName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (includeColocationStatus != null) - { - _queryParameters.Add(string.Format("includeColocationStatus={0}", System.Uri.EscapeDataString(includeColocationStatus))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -747,7 +735,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -778,6 +766,12 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -798,7 +792,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -858,6 +852,24 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -866,8 +878,17 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) } /// - /// Lists all proximity placement groups in a subscription. + /// Update a proximity placement group. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the proximity placement group. + /// + /// + /// Resource tags + /// /// /// Headers that will be added to request. /// @@ -889,13 +910,37 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (proximityPlacementGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "proximityPlacementGroupName"); + } string apiVersion = "2024-11-01"; + ProximityPlacementGroupUpdate parameters = new ProximityPlacementGroupUpdate(); + if (tags != null) + { + parameters.Tags = tags; + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -904,13 +949,18 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("proximityPlacementGroupName", proximityPlacementGroupName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/proximityPlacementGroups").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/proximityPlacementGroups/{proximityPlacementGroupName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{proximityPlacementGroupName}", System.Uri.EscapeDataString(proximityPlacementGroupName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -923,7 +973,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -954,6 +1004,12 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -1009,7 +1065,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1022,7 +1078,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1042,10 +1098,13 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) } /// - /// Lists all proximity placement groups in a resource group. + /// Delete a proximity placement group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the proximity placement group. /// /// /// Headers that will be added to request. @@ -1056,9 +1115,6 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1068,15 +1124,30 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string proximityPlacementGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (proximityPlacementGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "proximityPlacementGroupName"); } string apiVersion = "2024-11-01"; // Tracing @@ -1086,16 +1157,18 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("proximityPlacementGroupName", proximityPlacementGroupName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", 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/proximityPlacementGroups").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/proximityPlacementGroups/{proximityPlacementGroupName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{proximityPlacementGroupName}", System.Uri.EscapeDataString(proximityPlacementGroupName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1108,7 +1181,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1194,31 +1267,13 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); diff --git a/src/Compute/Compute.Management.Sdk/Generated/ProximityPlacementGroupsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/ProximityPlacementGroupsOperationsExtensions.cs index 81148c9ca4c6..6ee92e7b4b65 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ProximityPlacementGroupsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ProximityPlacementGroupsOperationsExtensions.cs @@ -24,242 +24,242 @@ namespace Microsoft.Azure.Management.Compute public static partial class ProximityPlacementGroupsOperationsExtensions { /// - /// Create or update a proximity placement group. + /// Lists all proximity placement groups in a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the proximity placement group. - /// - /// - /// Parameters supplied to the Create Proximity Placement Group operation. - /// - public static ProximityPlacementGroup CreateOrUpdate(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, ProximityPlacementGroup parameters) + public static IPage ListBySubscription(this IProximityPlacementGroupsOperations operations) { - return operations.CreateOrUpdateAsync(resourceGroupName, proximityPlacementGroupName, parameters).GetAwaiter().GetResult(); + return operations.ListBySubscriptionAsync().GetAwaiter().GetResult(); } /// - /// Create or update a proximity placement group. + /// Lists all proximity placement groups in a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the proximity placement group. - /// - /// - /// Parameters supplied to the Create Proximity Placement Group operation. - /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, ProximityPlacementGroup parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListBySubscriptionAsync(this IProximityPlacementGroupsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, proximityPlacementGroupName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Update a proximity placement group. + /// Lists all proximity placement groups in a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the proximity placement group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// Resource tags - /// - public static ProximityPlacementGroup Update(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, IDictionary tags = default(IDictionary)) + public static IPage ListByResourceGroup(this IProximityPlacementGroupsOperations operations, string resourceGroupName) { - return operations.UpdateAsync(resourceGroupName, proximityPlacementGroupName, tags).GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); } /// - /// Update a proximity placement group. + /// Lists all proximity placement groups in a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the proximity placement group. - /// - /// - /// Resource tags + /// The name of the resource group. The name is case insensitive. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IProximityPlacementGroupsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, proximityPlacementGroupName, tags, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Delete a proximity placement group. + /// Retrieves information about a proximity placement group . /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the proximity placement group. /// - public static void Delete(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName) + /// + /// includeColocationStatus=true enables fetching the colocation status of all + /// the resources in the proximity placement group. + /// + public static ProximityPlacementGroup Get(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, string includeColocationStatus = default(string)) { - operations.DeleteAsync(resourceGroupName, proximityPlacementGroupName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, proximityPlacementGroupName, includeColocationStatus).GetAwaiter().GetResult(); } /// - /// Delete a proximity placement group. + /// Retrieves information about a proximity placement group . /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the proximity placement group. /// + /// + /// includeColocationStatus=true enables fetching the colocation status of all + /// the resources in the proximity placement group. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, string includeColocationStatus = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, proximityPlacementGroupName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, proximityPlacementGroupName, includeColocationStatus, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Retrieves information about a proximity placement group . + /// Create or update a proximity placement group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the proximity placement group. /// - /// - /// includeColocationStatus=true enables fetching the colocation status of all - /// the resources in the proximity placement group. + /// + /// Parameters supplied to the Create Proximity Placement Group operation. /// - public static ProximityPlacementGroup Get(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, string includeColocationStatus = default(string)) + public static ProximityPlacementGroup CreateOrUpdate(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, ProximityPlacementGroup parameters) { - return operations.GetAsync(resourceGroupName, proximityPlacementGroupName, includeColocationStatus).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, proximityPlacementGroupName, parameters).GetAwaiter().GetResult(); } /// - /// Retrieves information about a proximity placement group . + /// Create or update a proximity placement group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the proximity placement group. /// - /// - /// includeColocationStatus=true enables fetching the colocation status of all - /// the resources in the proximity placement group. + /// + /// Parameters supplied to the Create Proximity Placement Group operation. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, string includeColocationStatus = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, ProximityPlacementGroup parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, proximityPlacementGroupName, includeColocationStatus, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, proximityPlacementGroupName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all proximity placement groups in a subscription. + /// Update a proximity placement group. /// /// /// The operations group for this extension method. /// - public static IPage ListBySubscription(this IProximityPlacementGroupsOperations operations) + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the proximity placement group. + /// + /// + /// Resource tags + /// + public static ProximityPlacementGroup Update(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, IDictionary tags = default(IDictionary)) { - return operations.ListBySubscriptionAsync().GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, proximityPlacementGroupName, tags).GetAwaiter().GetResult(); } /// - /// Lists all proximity placement groups in a subscription. + /// Update a proximity placement group. /// /// /// The operations group for this extension method. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the proximity placement group. + /// + /// + /// Resource tags + /// /// /// The cancellation token. /// - public static async Task> ListBySubscriptionAsync(this IProximityPlacementGroupsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, proximityPlacementGroupName, tags, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all proximity placement groups in a resource group. + /// Delete a proximity placement group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - public static IPage ListByResourceGroup(this IProximityPlacementGroupsOperations operations, string resourceGroupName) + /// + /// The name of the proximity placement group. + /// + public static void Delete(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName) { - return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, proximityPlacementGroupName).GetAwaiter().GetResult(); } /// - /// Lists all proximity placement groups in a resource group. + /// Delete a proximity placement group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the proximity placement group. /// /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IProximityPlacementGroupsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IProximityPlacementGroupsOperations operations, string resourceGroupName, string proximityPlacementGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, proximityPlacementGroupName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/ResourceSkusOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/ResourceSkusOperations.cs index 82ca514a3eba..8d62052c1f02 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/ResourceSkusOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/ResourceSkusOperations.cs @@ -66,7 +66,7 @@ internal ResourceSkusOperations(ComputeManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -178,14 +178,13 @@ internal ResourceSkusOperations(ComputeManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(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); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -195,10 +194,6 @@ internal ResourceSkusOperations(ComputeManagementClient client) } 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); @@ -255,7 +250,7 @@ internal ResourceSkusOperations(ComputeManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -351,14 +346,13 @@ internal ResourceSkusOperations(ComputeManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(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); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -368,10 +362,6 @@ internal ResourceSkusOperations(ComputeManagementClient client) } 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); diff --git a/src/Compute/Compute.Management.Sdk/Generated/RestorePointCollectionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/RestorePointCollectionsOperations.cs index af465cb2a71f..ca8a49ab801c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/RestorePointCollectionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/RestorePointCollectionsOperations.cs @@ -51,20 +51,11 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// The operation to create or update the restore point collection. Please - /// refer to https://aka.ms/RestorePoints for more details. When updating a - /// restore point collection, only tags may be modified. + /// Gets the list of restore point collections in the subscription. Use + /// nextLink property in the response to get the next page of restore point + /// collections. Do this till nextLink is not null to fetch all the restore + /// point collections. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the restore point collection. - /// - /// - /// Parameters supplied to the Create or Update restore point collection - /// operation. - /// /// /// Headers that will be added to request. /// @@ -86,28 +77,12 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, RestorePointCollection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (restorePointCollectionName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "restorePointCollectionName"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -116,19 +91,14 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("restorePointCollectionName", restorePointCollectionName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAll", 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/restorePointCollections/{restorePointCollectionName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/restorePointCollections").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{restorePointCollectionName}", System.Uri.EscapeDataString(restorePointCollectionName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -141,7 +111,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -172,12 +142,6 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -198,7 +162,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -233,7 +197,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -246,25 +210,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -284,16 +230,10 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) } /// - /// The operation to update the restore point collection. + /// Gets the list of restore point collections in a resource group. /// /// - /// The name of the resource group. - /// - /// - /// The name of the restore point collection. - /// - /// - /// Parameters supplied to the Update restore point collection operation. + /// The name of the resource group. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -316,7 +256,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, RestorePointCollectionUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -326,13 +266,16 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (restorePointCollectionName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "restorePointCollectionName"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } string apiVersion = "2024-11-01"; // Tracing @@ -342,19 +285,16 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("restorePointCollectionName", restorePointCollectionName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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/restorePointCollections/{restorePointCollectionName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/restorePointCollections").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{restorePointCollectionName}", System.Uri.EscapeDataString(restorePointCollectionName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -367,7 +307,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -398,12 +338,6 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -459,7 +393,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -472,7 +406,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -491,34 +425,11 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) return _result; } - /// - /// The operation to delete the restore point collection. This operation will - /// also delete all the contained restore points. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Restore Point Collection. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// The operation to get the restore point collection. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. @@ -559,6 +470,17 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (restorePointCollectionName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "restorePointCollectionName"); @@ -571,10 +493,10 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("restorePointCollectionName", restorePointCollectionName); tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -585,14 +507,14 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{restorePointCollectionName}", System.Uri.EscapeDataString(restorePointCollectionName)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -719,10 +641,19 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) } /// - /// Gets the list of restore point collections in a resource group. + /// The operation to create or update the restore point collection. Please + /// refer to https://aka.ms/RestorePoints for more details. When updating a + /// restore point collection, only tags may be modified. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the restore point collection. + /// + /// + /// Parameters supplied to the Create or Update restore point collection + /// operation. /// /// /// Headers that will be added to request. @@ -745,7 +676,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, RestorePointCollection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -755,6 +686,29 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (restorePointCollectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "restorePointCollectionName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -763,16 +717,19 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("restorePointCollectionName", restorePointCollectionName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", 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/restorePointCollections").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/restorePointCollections/{restorePointCollectionName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{restorePointCollectionName}", System.Uri.EscapeDataString(restorePointCollectionName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -785,7 +742,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -816,6 +773,12 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -836,7 +799,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -871,7 +834,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -884,7 +847,25 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -904,11 +885,17 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) } /// - /// Gets the list of restore point collections in the subscription. Use - /// nextLink property in the response to get the next page of restore point - /// collections. Do this till nextLink is not null to fetch all the restore - /// point collections. + /// The operation to update the restore point collection. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the restore point collection. + /// + /// + /// Parameters supplied to the Update restore point collection operation. + /// /// /// Headers that will be added to request. /// @@ -930,12 +917,35 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, RestorePointCollectionUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (restorePointCollectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "restorePointCollectionName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -945,13 +955,18 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("restorePointCollectionName", restorePointCollectionName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAll", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/restorePointCollections").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/restorePointCollections/{restorePointCollectionName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{restorePointCollectionName}", System.Uri.EscapeDataString(restorePointCollectionName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -964,7 +979,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -995,6 +1010,12 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -1050,7 +1071,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1063,7 +1084,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1087,10 +1108,33 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) /// also delete all the contained restore points. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the restore point collection. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to delete the restore point collection. This operation will + /// also delete all the contained restore points. + /// + /// + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. /// /// /// Headers that will be added to request. @@ -1120,6 +1164,17 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (restorePointCollectionName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "restorePointCollectionName"); @@ -1132,9 +1187,9 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("restorePointCollectionName", restorePointCollectionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } @@ -1257,7 +1312,10 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) } /// - /// Gets the list of restore point collections in a resource group. + /// Gets the list of restore point collections in the subscription. Use + /// nextLink property in the response to get the next page of restore point + /// collections. Do this till nextLink is not null to fetch all the restore + /// point collections. /// /// /// The NextLink from the previous successful call to List operation. @@ -1283,7 +1341,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1298,7 +1356,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAllNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -1430,10 +1488,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) } /// - /// Gets the list of restore point collections in the subscription. Use - /// nextLink property in the response to get the next page of restore point - /// collections. Do this till nextLink is not null to fetch all the restore - /// point collections. + /// Gets the list of restore point collections in a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -1459,7 +1514,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1474,7 +1529,7 @@ internal RestorePointCollectionsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAllNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/Compute/Compute.Management.Sdk/Generated/RestorePointCollectionsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/RestorePointCollectionsOperationsExtensions.cs index 36fa0f5039e8..dc33eb00e4d8 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/RestorePointCollectionsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/RestorePointCollectionsOperationsExtensions.cs @@ -22,258 +22,258 @@ namespace Microsoft.Azure.Management.Compute public static partial class RestorePointCollectionsOperationsExtensions { /// - /// The operation to create or update the restore point collection. Please - /// refer to https://aka.ms/RestorePoints for more details. When updating a - /// restore point collection, only tags may be modified. + /// Gets the list of restore point collections in the subscription. Use + /// nextLink property in the response to get the next page of restore point + /// collections. Do this till nextLink is not null to fetch all the restore + /// point collections. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the restore point collection. - /// - /// - /// Parameters supplied to the Create or Update restore point collection - /// operation. - /// - public static RestorePointCollection CreateOrUpdate(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, RestorePointCollection parameters) + public static IPage ListAll(this IRestorePointCollectionsOperations operations) { - return operations.CreateOrUpdateAsync(resourceGroupName, restorePointCollectionName, parameters).GetAwaiter().GetResult(); + return operations.ListAllAsync().GetAwaiter().GetResult(); } /// - /// The operation to create or update the restore point collection. Please - /// refer to https://aka.ms/RestorePoints for more details. When updating a - /// restore point collection, only tags may be modified. + /// Gets the list of restore point collections in the subscription. Use + /// nextLink property in the response to get the next page of restore point + /// collections. Do this till nextLink is not null to fetch all the restore + /// point collections. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the restore point collection. - /// - /// - /// Parameters supplied to the Create or Update restore point collection - /// operation. - /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, RestorePointCollection parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAllAsync(this IRestorePointCollectionsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to update the restore point collection. + /// Gets the list of restore point collections in a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The name of the restore point collection. - /// - /// - /// Parameters supplied to the Update restore point collection operation. - /// - public static RestorePointCollection Update(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, RestorePointCollectionUpdate parameters) + public static IPage List(this IRestorePointCollectionsOperations operations, string resourceGroupName) { - return operations.UpdateAsync(resourceGroupName, restorePointCollectionName, parameters).GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName).GetAwaiter().GetResult(); } /// - /// The operation to update the restore point collection. + /// Gets the list of restore point collections in a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the restore point collection. - /// - /// - /// Parameters supplied to the Update restore point collection operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, RestorePointCollectionUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IRestorePointCollectionsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to delete the restore point collection. This operation will - /// also delete all the contained restore points. + /// The operation to get the restore point collection. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. /// - public static void Delete(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName) + /// + /// The expand expression to apply on the operation. If expand=restorePoints, + /// server will return all contained restore points in the + /// restorePointCollection. Possible values include: 'restorePoints' + /// + public static RestorePointCollection Get(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, string expand = default(string)) { - operations.DeleteAsync(resourceGroupName, restorePointCollectionName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, restorePointCollectionName, expand).GetAwaiter().GetResult(); } /// - /// The operation to delete the restore point collection. This operation will - /// also delete all the contained restore points. + /// The operation to get the restore point collection. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. + /// + /// + /// The expand expression to apply on the operation. If expand=restorePoints, + /// server will return all contained restore points in the + /// restorePointCollection. Possible values include: 'restorePoints' /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// The operation to get the restore point collection. + /// The operation to create or update the restore point collection. Please + /// refer to https://aka.ms/RestorePoints for more details. When updating a + /// restore point collection, only tags may be modified. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. /// - /// - /// The expand expression to apply on the operation. If expand=restorePoints, - /// server will return all contained restore points in the - /// restorePointCollection. Possible values include: 'restorePoints' + /// + /// Parameters supplied to the Create or Update restore point collection + /// operation. /// - public static RestorePointCollection Get(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, string expand = default(string)) + public static RestorePointCollection CreateOrUpdate(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, RestorePointCollection parameters) { - return operations.GetAsync(resourceGroupName, restorePointCollectionName, expand).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, restorePointCollectionName, parameters).GetAwaiter().GetResult(); } /// - /// The operation to get the restore point collection. + /// The operation to create or update the restore point collection. Please + /// refer to https://aka.ms/RestorePoints for more details. When updating a + /// restore point collection, only tags may be modified. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. /// - /// - /// The expand expression to apply on the operation. If expand=restorePoints, - /// server will return all contained restore points in the - /// restorePointCollection. Possible values include: 'restorePoints' + /// + /// Parameters supplied to the Create or Update restore point collection + /// operation. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, RestorePointCollection parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the list of restore point collections in a resource group. + /// The operation to update the restore point collection. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - public static IPage List(this IRestorePointCollectionsOperations operations, string resourceGroupName) + /// + /// The name of the restore point collection. + /// + /// + /// Parameters supplied to the Update restore point collection operation. + /// + public static RestorePointCollection Update(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, RestorePointCollectionUpdate parameters) { - return operations.ListAsync(resourceGroupName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, restorePointCollectionName, parameters).GetAwaiter().GetResult(); } /// - /// Gets the list of restore point collections in a resource group. + /// The operation to update the restore point collection. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the restore point collection. + /// + /// + /// Parameters supplied to the Update restore point collection operation. /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IRestorePointCollectionsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, RestorePointCollectionUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the list of restore point collections in the subscription. Use - /// nextLink property in the response to get the next page of restore point - /// collections. Do this till nextLink is not null to fetch all the restore - /// point collections. + /// The operation to delete the restore point collection. This operation will + /// also delete all the contained restore points. /// /// /// The operations group for this extension method. /// - public static IPage ListAll(this IRestorePointCollectionsOperations operations) + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the restore point collection. + /// + public static void Delete(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName) { - return operations.ListAllAsync().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, restorePointCollectionName).GetAwaiter().GetResult(); } /// - /// Gets the list of restore point collections in the subscription. Use - /// nextLink property in the response to get the next page of restore point - /// collections. Do this till nextLink is not null to fetch all the restore - /// point collections. + /// The operation to delete the restore point collection. This operation will + /// also delete all the contained restore points. /// /// /// The operations group for this extension method. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the restore point collection. + /// /// /// The cancellation token. /// - public static async Task> ListAllAsync(this IRestorePointCollectionsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -284,10 +284,10 @@ public static IPage ListAll(this IRestorePointCollection /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. /// public static void BeginDelete(this IRestorePointCollectionsOperations operations, string resourceGroupName, string restorePointCollectionName) { @@ -302,10 +302,10 @@ public static void BeginDelete(this IRestorePointCollectionsOperations operation /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. /// /// /// The cancellation token. @@ -316,7 +316,10 @@ public static void BeginDelete(this IRestorePointCollectionsOperations operation } /// - /// Gets the list of restore point collections in a resource group. + /// Gets the list of restore point collections in the subscription. Use + /// nextLink property in the response to get the next page of restore point + /// collections. Do this till nextLink is not null to fetch all the restore + /// point collections. /// /// /// The operations group for this extension method. @@ -324,13 +327,16 @@ public static void BeginDelete(this IRestorePointCollectionsOperations operation /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IRestorePointCollectionsOperations operations, string nextPageLink) + public static IPage ListAllNext(this IRestorePointCollectionsOperations operations, string nextPageLink) { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListAllNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Gets the list of restore point collections in a resource group. + /// Gets the list of restore point collections in the subscription. Use + /// nextLink property in the response to get the next page of restore point + /// collections. Do this till nextLink is not null to fetch all the restore + /// point collections. /// /// /// The operations group for this extension method. @@ -341,19 +347,16 @@ public static IPage ListNext(this IRestorePointCollectio /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IRestorePointCollectionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAllNextAsync(this IRestorePointCollectionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the list of restore point collections in the subscription. Use - /// nextLink property in the response to get the next page of restore point - /// collections. Do this till nextLink is not null to fetch all the restore - /// point collections. + /// Gets the list of restore point collections in a resource group. /// /// /// The operations group for this extension method. @@ -361,16 +364,13 @@ public static IPage ListNext(this IRestorePointCollectio /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListAllNext(this IRestorePointCollectionsOperations operations, string nextPageLink) + public static IPage ListNext(this IRestorePointCollectionsOperations operations, string nextPageLink) { - return operations.ListAllNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Gets the list of restore point collections in the subscription. Use - /// nextLink property in the response to get the next page of restore point - /// collections. Do this till nextLink is not null to fetch all the restore - /// point collections. + /// Gets the list of restore point collections in a resource group. /// /// /// The operations group for this extension method. @@ -381,9 +381,9 @@ public static IPage ListAllNext(this IRestorePointCollec /// /// The cancellation token. /// - public static async Task> ListAllNextAsync(this IRestorePointCollectionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this IRestorePointCollectionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/RestorePointsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/RestorePointsOperations.cs index 3a9799093384..ef523c8f2b8b 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/RestorePointsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/RestorePointsOperations.cs @@ -50,65 +50,11 @@ internal RestorePointsOperations(ComputeManagementClient client) /// public ComputeManagementClient Client { get; private set; } - /// - /// The operation to create the restore point. Updating properties of an - /// existing restore point is not allowed - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the restore point collection. - /// - /// - /// The name of the restore point. - /// - /// - /// Parameters supplied to the Create restore point operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, RestorePoint parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, restorePointName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to delete the restore point. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Restore Point Collection. - /// - /// - /// The name of the restore point. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, restorePointName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// The operation to get the restore point. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. @@ -152,6 +98,17 @@ internal RestorePointsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (restorePointCollectionName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "restorePointCollectionName"); @@ -168,11 +125,11 @@ internal RestorePointsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("restorePointCollectionName", restorePointCollectionName); tracingParameters.Add("restorePointName", restorePointName); tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -184,14 +141,14 @@ internal RestorePointsOperations(ComputeManagementClient client) _url = _url.Replace("{restorePointCollectionName}", System.Uri.EscapeDataString(restorePointCollectionName)); _url = _url.Replace("{restorePointName}", System.Uri.EscapeDataString(restorePointName)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -322,7 +279,61 @@ internal RestorePointsOperations(ComputeManagementClient client) /// existing restore point is not allowed /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the restore point collection. + /// + /// + /// The name of the restore point. + /// + /// + /// Parameters supplied to the Create restore point operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, RestorePoint parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, restorePointName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to delete the restore point. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the restore point collection. + /// + /// + /// The name of the restore point. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, restorePointName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to create the restore point. Updating properties of an + /// existing restore point is not allowed + /// + /// + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. @@ -354,7 +365,7 @@ internal RestorePointsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, RestorePoint parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string restorePointCollectionName, string restorePointName, RestorePoint parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -364,6 +375,17 @@ internal RestorePointsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (restorePointCollectionName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "restorePointCollectionName"); @@ -388,11 +410,11 @@ internal RestorePointsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("restorePointCollectionName", restorePointCollectionName); tracingParameters.Add("restorePointName", restorePointName); tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); } @@ -507,7 +529,7 @@ internal RestorePointsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -532,6 +554,19 @@ internal RestorePointsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -543,10 +578,10 @@ internal RestorePointsOperations(ComputeManagementClient client) /// The operation to delete the restore point. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. /// /// /// The name of the restore point. @@ -579,6 +614,17 @@ internal RestorePointsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (restorePointCollectionName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "restorePointCollectionName"); @@ -595,10 +641,10 @@ internal RestorePointsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("restorePointCollectionName", restorePointCollectionName); tracingParameters.Add("restorePointName", restorePointName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } diff --git a/src/Compute/Compute.Management.Sdk/Generated/RestorePointsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/RestorePointsOperationsExtensions.cs index 83dbdacd7df4..0074497a476d 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/RestorePointsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/RestorePointsOperationsExtensions.cs @@ -22,14 +22,13 @@ namespace Microsoft.Azure.Management.Compute public static partial class RestorePointsOperationsExtensions { /// - /// The operation to create the restore point. Updating properties of an - /// existing restore point is not allowed + /// The operation to get the restore point. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. @@ -37,23 +36,24 @@ public static partial class RestorePointsOperationsExtensions /// /// The name of the restore point. /// - /// - /// Parameters supplied to the Create restore point operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' retrieves + /// information about the run-time state of a restore point. Possible values + /// include: 'instanceView' /// - public static RestorePoint Create(this IRestorePointsOperations operations, string resourceGroupName, string restorePointCollectionName, string restorePointName, RestorePoint parameters) + public static RestorePoint Get(this IRestorePointsOperations operations, string resourceGroupName, string restorePointCollectionName, string restorePointName, string expand = default(string)) { - return operations.CreateAsync(resourceGroupName, restorePointCollectionName, restorePointName, parameters).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, restorePointCollectionName, restorePointName, expand).GetAwaiter().GetResult(); } /// - /// The operation to create the restore point. Updating properties of an - /// existing restore point is not allowed + /// The operation to get the restore point. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. @@ -61,71 +61,84 @@ public static RestorePoint Create(this IRestorePointsOperations operations, stri /// /// The name of the restore point. /// - /// - /// Parameters supplied to the Create restore point operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' retrieves + /// information about the run-time state of a restore point. Possible values + /// include: 'instanceView' /// /// /// The cancellation token. /// - public static async Task CreateAsync(this IRestorePointsOperations operations, string resourceGroupName, string restorePointCollectionName, string restorePointName, RestorePoint parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IRestorePointsOperations operations, string resourceGroupName, string restorePointCollectionName, string restorePointName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, restorePointName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, restorePointName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to delete the restore point. + /// The operation to create the restore point. Updating properties of an + /// existing restore point is not allowed /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. /// /// /// The name of the restore point. /// - public static void Delete(this IRestorePointsOperations operations, string resourceGroupName, string restorePointCollectionName, string restorePointName) + /// + /// Parameters supplied to the Create restore point operation. + /// + public static RestorePoint Create(this IRestorePointsOperations operations, string resourceGroupName, string restorePointCollectionName, string restorePointName, RestorePoint parameters) { - operations.DeleteAsync(resourceGroupName, restorePointCollectionName, restorePointName).GetAwaiter().GetResult(); + return operations.CreateAsync(resourceGroupName, restorePointCollectionName, restorePointName, parameters).GetAwaiter().GetResult(); } /// - /// The operation to delete the restore point. + /// The operation to create the restore point. Updating properties of an + /// existing restore point is not allowed /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. /// /// /// The name of the restore point. /// + /// + /// Parameters supplied to the Create restore point operation. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IRestorePointsOperations operations, string resourceGroupName, string restorePointCollectionName, string restorePointName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateAsync(this IRestorePointsOperations operations, string resourceGroupName, string restorePointCollectionName, string restorePointName, RestorePoint parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, restorePointName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, restorePointName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// The operation to get the restore point. + /// The operation to delete the restore point. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. @@ -133,24 +146,19 @@ public static void Delete(this IRestorePointsOperations operations, string resou /// /// The name of the restore point. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' retrieves - /// information about the run-time state of a restore point. Possible values - /// include: 'instanceView' - /// - public static RestorePoint Get(this IRestorePointsOperations operations, string resourceGroupName, string restorePointCollectionName, string restorePointName, string expand = default(string)) + public static void Delete(this IRestorePointsOperations operations, string resourceGroupName, string restorePointCollectionName, string restorePointName) { - return operations.GetAsync(resourceGroupName, restorePointCollectionName, restorePointName, expand).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, restorePointCollectionName, restorePointName).GetAwaiter().GetResult(); } /// - /// The operation to get the restore point. + /// The operation to delete the restore point. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. @@ -158,20 +166,12 @@ public static void Delete(this IRestorePointsOperations operations, string resou /// /// The name of the restore point. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' retrieves - /// information about the run-time state of a restore point. Possible values - /// include: 'instanceView' - /// /// /// The cancellation token. /// - public static async Task GetAsync(this IRestorePointsOperations operations, string resourceGroupName, string restorePointCollectionName, string restorePointName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IRestorePointsOperations operations, string resourceGroupName, string restorePointCollectionName, string restorePointName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, restorePointName, expand, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, restorePointCollectionName, restorePointName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -182,7 +182,7 @@ public static void Delete(this IRestorePointsOperations operations, string resou /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. @@ -206,7 +206,7 @@ public static RestorePoint BeginCreate(this IRestorePointsOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the restore point collection. @@ -235,10 +235,10 @@ public static RestorePoint BeginCreate(this IRestorePointsOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. /// /// /// The name of the restore point. @@ -255,10 +255,10 @@ public static void BeginDelete(this IRestorePointsOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Restore Point Collection. + /// The name of the restore point collection. /// /// /// The name of the restore point. diff --git a/src/Compute/Compute.Management.Sdk/Generated/SdkInfo_ComputeManagementClient.cs b/src/Compute/Compute.Management.Sdk/Generated/SdkInfo_ComputeManagementClient.cs index bc37c067961b..85e0df9799f7 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/SdkInfo_ComputeManagementClient.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/SdkInfo_ComputeManagementClient.cs @@ -22,20 +22,15 @@ public static IEnumerable> ApiInfo_ComputeManageme new Tuple("Compute", "AvailabilitySets", "2024-11-01"), new Tuple("Compute", "CapacityReservationGroups", "2024-11-01"), new Tuple("Compute", "CapacityReservations", "2024-11-01"), - new Tuple("Compute", "CloudServiceOperatingSystems", "2022-09-04"), - new Tuple("Compute", "CloudServiceRoleInstances", "2022-09-04"), - new Tuple("Compute", "CloudServiceRoles", "2022-09-04"), - new Tuple("Compute", "CloudServices", "2022-09-04"), - new Tuple("Compute", "CloudServicesUpdateDomain", "2022-09-04"), new Tuple("Compute", "CommunityGalleries", "2024-03-03"), new Tuple("Compute", "CommunityGalleryImageVersions", "2024-03-03"), new Tuple("Compute", "CommunityGalleryImages", "2024-03-03"), new Tuple("Compute", "DedicatedHostGroups", "2024-11-01"), new Tuple("Compute", "DedicatedHosts", "2024-11-01"), - new Tuple("Compute", "DiskAccesses", "2024-03-02"), - new Tuple("Compute", "DiskEncryptionSets", "2024-03-02"), - new Tuple("Compute", "DiskRestorePoint", "2024-03-02"), - new Tuple("Compute", "Disks", "2024-03-02"), + new Tuple("Compute", "DiskAccesses", "2025-01-02"), + new Tuple("Compute", "DiskEncryptionSets", "2025-01-02"), + new Tuple("Compute", "DiskRestorePoint", "2025-01-02"), + new Tuple("Compute", "Disks", "2025-01-02"), new Tuple("Compute", "Galleries", "2024-03-03"), new Tuple("Compute", "GalleryApplicationVersions", "2024-03-03"), new Tuple("Compute", "GalleryApplications", "2024-03-03"), @@ -54,7 +49,7 @@ public static IEnumerable> ApiInfo_ComputeManageme new Tuple("Compute", "SharedGalleries", "2024-03-03"), new Tuple("Compute", "SharedGalleryImageVersions", "2024-03-03"), new Tuple("Compute", "SharedGalleryImages", "2024-03-03"), - new Tuple("Compute", "Snapshots", "2024-03-02"), + new Tuple("Compute", "Snapshots", "2025-01-02"), new Tuple("Compute", "SoftDeletedResource", "2024-03-03"), new Tuple("Compute", "SshPublicKeys", "2024-11-01"), new Tuple("Compute", "Usage", "2024-11-01"), diff --git a/src/Compute/Compute.Management.Sdk/Generated/SharedGalleriesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/SharedGalleriesOperations.cs index 34e82891b6ce..6552611ea185 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/SharedGalleriesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/SharedGalleriesOperations.cs @@ -54,7 +54,7 @@ internal SharedGalleriesOperations(ComputeManagementClient client) /// List shared galleries by subscription id or tenant id. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The query parameter to decide what shared galleries to fetch when doing @@ -91,6 +91,13 @@ internal SharedGalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } string apiVersion = "2024-03-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -99,8 +106,8 @@ internal SharedGalleriesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("sharedTo", sharedTo); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); @@ -248,7 +255,7 @@ internal SharedGalleriesOperations(ComputeManagementClient client) /// Get a shared gallery by subscription id or tenant id. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -284,6 +291,13 @@ internal SharedGalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (galleryUniqueName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); @@ -296,9 +310,9 @@ internal SharedGalleriesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("galleryUniqueName", galleryUniqueName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } diff --git a/src/Compute/Compute.Management.Sdk/Generated/SharedGalleriesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/SharedGalleriesOperationsExtensions.cs index fbc46821ac94..4da33fea85ca 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/SharedGalleriesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/SharedGalleriesOperationsExtensions.cs @@ -28,7 +28,7 @@ public static partial class SharedGalleriesOperationsExtensions /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The query parameter to decide what shared galleries to fetch when doing @@ -46,7 +46,7 @@ public static partial class SharedGalleriesOperationsExtensions /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The query parameter to decide what shared galleries to fetch when doing @@ -70,7 +70,7 @@ public static partial class SharedGalleriesOperationsExtensions /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -87,7 +87,7 @@ public static SharedGallery Get(this ISharedGalleriesOperations operations, stri /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. diff --git a/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImageVersionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImageVersionsOperations.cs index aea41737de08..66732d27d1f8 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImageVersionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImageVersionsOperations.cs @@ -54,7 +54,7 @@ internal SharedGalleryImageVersionsOperations(ComputeManagementClient client) /// List shared gallery image versions by subscription id or tenant id. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -98,6 +98,13 @@ internal SharedGalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (galleryUniqueName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); @@ -114,8 +121,8 @@ internal SharedGalleryImageVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("galleryUniqueName", galleryUniqueName); tracingParameters.Add("galleryImageName", galleryImageName); tracingParameters.Add("sharedTo", sharedTo); @@ -267,7 +274,7 @@ internal SharedGalleryImageVersionsOperations(ComputeManagementClient client) /// Get a shared gallery image version by subscription id or tenant id. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -313,6 +320,13 @@ internal SharedGalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (galleryUniqueName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); @@ -333,8 +347,8 @@ internal SharedGalleryImageVersionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("galleryUniqueName", galleryUniqueName); tracingParameters.Add("galleryImageName", galleryImageName); tracingParameters.Add("galleryImageVersionName", galleryImageVersionName); diff --git a/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImageVersionsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImageVersionsOperationsExtensions.cs index 30ce93c9da32..9d9ec2f80ab3 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImageVersionsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImageVersionsOperationsExtensions.cs @@ -28,7 +28,7 @@ public static partial class SharedGalleryImageVersionsOperationsExtensions /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -53,7 +53,7 @@ public static partial class SharedGalleryImageVersionsOperationsExtensions /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -84,7 +84,7 @@ public static partial class SharedGalleryImageVersionsOperationsExtensions /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -111,7 +111,7 @@ public static SharedGalleryImageVersion Get(this ISharedGalleryImageVersionsOper /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. diff --git a/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImagesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImagesOperations.cs index aa1e13b1d793..592f0a0d9cb6 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImagesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImagesOperations.cs @@ -54,7 +54,7 @@ internal SharedGalleryImagesOperations(ComputeManagementClient client) /// List shared gallery images by subscription id or tenant id. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -94,6 +94,13 @@ internal SharedGalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (galleryUniqueName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); @@ -106,8 +113,8 @@ internal SharedGalleryImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("galleryUniqueName", galleryUniqueName); tracingParameters.Add("sharedTo", sharedTo); tracingParameters.Add("cancellationToken", cancellationToken); @@ -257,7 +264,7 @@ internal SharedGalleryImagesOperations(ComputeManagementClient client) /// Get a shared gallery image by subscription id or tenant id. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -297,6 +304,13 @@ internal SharedGalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (galleryUniqueName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); @@ -313,8 +327,8 @@ internal SharedGalleryImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("galleryUniqueName", galleryUniqueName); tracingParameters.Add("galleryImageName", galleryImageName); tracingParameters.Add("cancellationToken", cancellationToken); diff --git a/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImagesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImagesOperationsExtensions.cs index 6f7b97ca6e91..52290ed7b8e9 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImagesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/SharedGalleryImagesOperationsExtensions.cs @@ -28,7 +28,7 @@ public static partial class SharedGalleryImagesOperationsExtensions /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -49,7 +49,7 @@ public static partial class SharedGalleryImagesOperationsExtensions /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -76,7 +76,7 @@ public static partial class SharedGalleryImagesOperationsExtensions /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. @@ -97,7 +97,7 @@ public static SharedGalleryImage Get(this ISharedGalleryImagesOperations operati /// The operations group for this extension method. /// /// - /// Resource location. + /// The name of Azure region. /// /// /// The unique name of the Shared Gallery. diff --git a/src/Compute/Compute.Management.Sdk/Generated/SnapshotsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/SnapshotsOperations.cs index 82fa736b090c..7359a46a57f0 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/SnapshotsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/SnapshotsOperations.cs @@ -51,70 +51,8 @@ internal SnapshotsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Creates or updates a snapshot. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the snapshot that is being created. The name can't be changed - /// after the snapshot is created. Supported characters for the name are a-z, - /// A-Z, 0-9, _ and -. The max name length is 80 characters. - /// - /// - /// Snapshot object supplied in the body of the Put disk operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string snapshotName, Snapshot snapshot, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, snapshotName, snapshot, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Updates (patches) a snapshot. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the snapshot that is being created. The name can't be changed - /// after the snapshot is created. Supported characters for the name are a-z, - /// A-Z, 0-9, _ and -. The max name length is 80 characters. - /// - /// - /// Snapshot object supplied in the body of the Patch snapshot operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string snapshotName, SnapshotUpdate snapshot, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, snapshotName, snapshot, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets information about a snapshot. + /// Lists snapshots under a subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the snapshot that is being created. The name can't be changed - /// after the snapshot is created. Supported characters for the name are a-z, - /// A-Z, 0-9, _ and -. The max name length is 80 characters. - /// /// /// Headers that will be added to request. /// @@ -136,21 +74,13 @@ internal SnapshotsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string snapshotName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (snapshotName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "snapshotName"); - } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -158,18 +88,14 @@ internal SnapshotsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("snapshotName", snapshotName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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/snapshots/{snapshotName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/snapshots").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{snapshotName}", System.Uri.EscapeDataString(snapshotName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -268,7 +194,7 @@ internal SnapshotsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -281,7 +207,7 @@ internal SnapshotsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -300,35 +226,11 @@ internal SnapshotsOperations(ComputeManagementClient client) return _result; } - /// - /// Deletes a snapshot. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the snapshot that is being created. The name can't be changed - /// after the snapshot is created. Supported characters for the name are a-z, - /// A-Z, 0-9, _ and -. The max name length is 80 characters. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string snapshotName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, snapshotName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// Lists snapshots under a resource group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -361,7 +263,18 @@ internal SnapshotsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - string apiVersion = "2024-03-02"; + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -369,8 +282,8 @@ internal SnapshotsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } @@ -510,8 +423,16 @@ internal SnapshotsOperations(ComputeManagementClient client) } /// - /// Lists snapshots under a subscription. + /// Gets information about a snapshot. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the snapshot that is being created. The name can't be changed + /// after the snapshot is created. Supported characters for the name are a-z, + /// A-Z, 0-9, _ and -. The max name length is 80 characters. + /// /// /// Headers that will be added to request. /// @@ -533,13 +454,32 @@ internal SnapshotsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string snapshotName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2024-03-02"; + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (snapshotName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "snapshotName"); + } + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -548,13 +488,17 @@ internal SnapshotsOperations(ComputeManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("snapshotName", snapshotName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/snapshots").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots/{snapshotName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{snapshotName}", System.Uri.EscapeDataString(snapshotName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -653,7 +597,7 @@ internal SnapshotsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -666,7 +610,7 @@ internal SnapshotsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -685,11 +629,89 @@ internal SnapshotsOperations(ComputeManagementClient client) return _result; } + /// + /// Creates or updates a snapshot. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the snapshot that is being created. The name can't be changed + /// after the snapshot is created. Supported characters for the name are a-z, + /// A-Z, 0-9, _ and -. The max name length is 80 characters. + /// + /// + /// Snapshot object supplied in the body of the Put disk operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string snapshotName, Snapshot snapshot, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, snapshotName, snapshot, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Updates (patches) a snapshot. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the snapshot that is being created. The name can't be changed + /// after the snapshot is created. Supported characters for the name are a-z, + /// A-Z, 0-9, _ and -. The max name length is 80 characters. + /// + /// + /// Snapshot object supplied in the body of the Patch snapshot operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string snapshotName, SnapshotUpdate snapshot, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, snapshotName, snapshot, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a snapshot. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the snapshot that is being created. The name can't be changed + /// after the snapshot is created. Supported characters for the name are a-z, + /// A-Z, 0-9, _ and -. The max name length is 80 characters. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string snapshotName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, snapshotName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Grants access to a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -717,7 +739,7 @@ internal SnapshotsOperations(ComputeManagementClient client) /// Revokes access to a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -741,7 +763,7 @@ internal SnapshotsOperations(ComputeManagementClient client) /// Creates or updates a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -782,6 +804,17 @@ internal SnapshotsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (snapshotName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "snapshotName"); @@ -794,7 +827,7 @@ internal SnapshotsOperations(ComputeManagementClient client) { snapshot.Validate(); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -802,9 +835,9 @@ internal SnapshotsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("snapshotName", snapshotName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("snapshot", snapshot); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); @@ -944,24 +977,6 @@ internal SnapshotsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -973,7 +988,7 @@ internal SnapshotsOperations(ComputeManagementClient client) /// Updates (patches) a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -1014,6 +1029,17 @@ internal SnapshotsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (snapshotName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "snapshotName"); @@ -1022,7 +1048,7 @@ internal SnapshotsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "snapshot"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1030,9 +1056,9 @@ internal SnapshotsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("snapshotName", snapshotName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("snapshot", snapshot); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); @@ -1172,24 +1198,6 @@ internal SnapshotsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1201,7 +1209,7 @@ internal SnapshotsOperations(ComputeManagementClient client) /// Deletes a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -1236,11 +1244,22 @@ internal SnapshotsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (snapshotName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "snapshotName"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1248,9 +1267,9 @@ internal SnapshotsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("snapshotName", snapshotName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } @@ -1376,7 +1395,7 @@ internal SnapshotsOperations(ComputeManagementClient client) /// Grants access to a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -1418,6 +1437,17 @@ internal SnapshotsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (snapshotName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "snapshotName"); @@ -1430,7 +1460,7 @@ internal SnapshotsOperations(ComputeManagementClient client) { grantAccessData.Validate(); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1438,9 +1468,9 @@ internal SnapshotsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("snapshotName", snapshotName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("grantAccessData", grantAccessData); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginGrantAccess", tracingParameters); @@ -1591,7 +1621,7 @@ internal SnapshotsOperations(ComputeManagementClient client) /// Revokes access to a snapshot. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -1626,11 +1656,22 @@ internal SnapshotsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (snapshotName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "snapshotName"); } - string apiVersion = "2024-03-02"; + string apiVersion = "2025-01-02"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1638,9 +1679,9 @@ internal SnapshotsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("snapshotName", snapshotName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginRevokeAccess", tracingParameters); } @@ -1763,7 +1804,7 @@ internal SnapshotsOperations(ComputeManagementClient client) } /// - /// Lists snapshots under a resource group. + /// Lists snapshots under a subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -1789,7 +1830,7 @@ internal SnapshotsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1804,7 +1845,7 @@ internal SnapshotsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -1936,7 +1977,7 @@ internal SnapshotsOperations(ComputeManagementClient client) } /// - /// Lists snapshots under a subscription. + /// Lists snapshots under a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -1962,7 +2003,7 @@ internal SnapshotsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1977,7 +2018,7 @@ internal SnapshotsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/Compute/Compute.Management.Sdk/Generated/SnapshotsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/SnapshotsOperationsExtensions.cs index bf0a0eed6b9e..0ae6ee072ac8 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/SnapshotsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/SnapshotsOperationsExtensions.cs @@ -22,100 +22,62 @@ namespace Microsoft.Azure.Management.Compute public static partial class SnapshotsOperationsExtensions { /// - /// Creates or updates a snapshot. + /// Lists snapshots under a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the snapshot that is being created. The name can't be changed - /// after the snapshot is created. Supported characters for the name are a-z, - /// A-Z, 0-9, _ and -. The max name length is 80 characters. - /// - /// - /// Snapshot object supplied in the body of the Put disk operation. - /// - public static Snapshot CreateOrUpdate(this ISnapshotsOperations operations, string resourceGroupName, string snapshotName, Snapshot snapshot) + public static IPage List(this ISnapshotsOperations operations) { - return operations.CreateOrUpdateAsync(resourceGroupName, snapshotName, snapshot).GetAwaiter().GetResult(); + return operations.ListAsync().GetAwaiter().GetResult(); } /// - /// Creates or updates a snapshot. + /// Lists snapshots under a subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the snapshot that is being created. The name can't be changed - /// after the snapshot is created. Supported characters for the name are a-z, - /// A-Z, 0-9, _ and -. The max name length is 80 characters. - /// - /// - /// Snapshot object supplied in the body of the Put disk operation. - /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this ISnapshotsOperations operations, string resourceGroupName, string snapshotName, Snapshot snapshot, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this ISnapshotsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, snapshotName, snapshot, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Updates (patches) a snapshot. + /// Lists snapshots under a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the snapshot that is being created. The name can't be changed - /// after the snapshot is created. Supported characters for the name are a-z, - /// A-Z, 0-9, _ and -. The max name length is 80 characters. + /// The name of the resource group. The name is case insensitive. /// - /// - /// Snapshot object supplied in the body of the Patch snapshot operation. - /// - public static Snapshot Update(this ISnapshotsOperations operations, string resourceGroupName, string snapshotName, SnapshotUpdate snapshot) + public static IPage ListByResourceGroup(this ISnapshotsOperations operations, string resourceGroupName) { - return operations.UpdateAsync(resourceGroupName, snapshotName, snapshot).GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); } /// - /// Updates (patches) a snapshot. + /// Lists snapshots under a resource group. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The name of the snapshot that is being created. The name can't be changed - /// after the snapshot is created. Supported characters for the name are a-z, - /// A-Z, 0-9, _ and -. The max name length is 80 characters. - /// - /// - /// Snapshot object supplied in the body of the Patch snapshot operation. + /// The name of the resource group. The name is case insensitive. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this ISnapshotsOperations operations, string resourceGroupName, string snapshotName, SnapshotUpdate snapshot, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupAsync(this ISnapshotsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, snapshotName, snapshot, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -128,7 +90,7 @@ public static Snapshot Update(this ISnapshotsOperations operations, string resou /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -147,7 +109,7 @@ public static Snapshot Get(this ISnapshotsOperations operations, string resource /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -166,106 +128,144 @@ public static Snapshot Get(this ISnapshotsOperations operations, string resource } /// - /// Deletes a snapshot. + /// Creates or updates a snapshot. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed /// after the snapshot is created. Supported characters for the name are a-z, /// A-Z, 0-9, _ and -. The max name length is 80 characters. /// - public static void Delete(this ISnapshotsOperations operations, string resourceGroupName, string snapshotName) + /// + /// Snapshot object supplied in the body of the Put disk operation. + /// + public static Snapshot CreateOrUpdate(this ISnapshotsOperations operations, string resourceGroupName, string snapshotName, Snapshot snapshot) { - operations.DeleteAsync(resourceGroupName, snapshotName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, snapshotName, snapshot).GetAwaiter().GetResult(); } /// - /// Deletes a snapshot. + /// Creates or updates a snapshot. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed /// after the snapshot is created. Supported characters for the name are a-z, /// A-Z, 0-9, _ and -. The max name length is 80 characters. /// + /// + /// Snapshot object supplied in the body of the Put disk operation. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this ISnapshotsOperations operations, string resourceGroupName, string snapshotName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this ISnapshotsOperations operations, string resourceGroupName, string snapshotName, Snapshot snapshot, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, snapshotName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, snapshotName, snapshot, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Lists snapshots under a resource group. + /// Updates (patches) a snapshot. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - public static IPage ListByResourceGroup(this ISnapshotsOperations operations, string resourceGroupName) + /// + /// The name of the snapshot that is being created. The name can't be changed + /// after the snapshot is created. Supported characters for the name are a-z, + /// A-Z, 0-9, _ and -. The max name length is 80 characters. + /// + /// + /// Snapshot object supplied in the body of the Patch snapshot operation. + /// + public static Snapshot Update(this ISnapshotsOperations operations, string resourceGroupName, string snapshotName, SnapshotUpdate snapshot) { - return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, snapshotName, snapshot).GetAwaiter().GetResult(); } /// - /// Lists snapshots under a resource group. + /// Updates (patches) a snapshot. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the snapshot that is being created. The name can't be changed + /// after the snapshot is created. Supported characters for the name are a-z, + /// A-Z, 0-9, _ and -. The max name length is 80 characters. + /// + /// + /// Snapshot object supplied in the body of the Patch snapshot operation. /// /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this ISnapshotsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this ISnapshotsOperations operations, string resourceGroupName, string snapshotName, SnapshotUpdate snapshot, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, snapshotName, snapshot, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists snapshots under a subscription. + /// Deletes a snapshot. /// /// /// The operations group for this extension method. /// - public static IPage List(this ISnapshotsOperations operations) + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the snapshot that is being created. The name can't be changed + /// after the snapshot is created. Supported characters for the name are a-z, + /// A-Z, 0-9, _ and -. The max name length is 80 characters. + /// + public static void Delete(this ISnapshotsOperations operations, string resourceGroupName, string snapshotName) { - return operations.ListAsync().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, snapshotName).GetAwaiter().GetResult(); } /// - /// Lists snapshots under a subscription. + /// Deletes a snapshot. /// /// /// The operations group for this extension method. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the snapshot that is being created. The name can't be changed + /// after the snapshot is created. Supported characters for the name are a-z, + /// A-Z, 0-9, _ and -. The max name length is 80 characters. + /// /// /// The cancellation token. /// - public static async Task> ListAsync(this ISnapshotsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this ISnapshotsOperations operations, string resourceGroupName, string snapshotName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, snapshotName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -275,7 +275,7 @@ public static IPage List(this ISnapshotsOperations operations) /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -298,7 +298,7 @@ public static AccessUri GrantAccess(this ISnapshotsOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -327,7 +327,7 @@ public static AccessUri GrantAccess(this ISnapshotsOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -346,7 +346,7 @@ public static void RevokeAccess(this ISnapshotsOperations operations, string res /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -368,7 +368,7 @@ public static void RevokeAccess(this ISnapshotsOperations operations, string res /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -390,7 +390,7 @@ public static Snapshot BeginCreateOrUpdate(this ISnapshotsOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -418,7 +418,7 @@ public static Snapshot BeginCreateOrUpdate(this ISnapshotsOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -440,7 +440,7 @@ public static Snapshot BeginUpdate(this ISnapshotsOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -468,7 +468,7 @@ public static Snapshot BeginUpdate(this ISnapshotsOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -487,7 +487,7 @@ public static void BeginDelete(this ISnapshotsOperations operations, string reso /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -509,7 +509,7 @@ public static void BeginDelete(this ISnapshotsOperations operations, string reso /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -532,7 +532,7 @@ public static AccessUri BeginGrantAccess(this ISnapshotsOperations operations, s /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -561,7 +561,7 @@ public static AccessUri BeginGrantAccess(this ISnapshotsOperations operations, s /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -580,7 +580,7 @@ public static void BeginRevokeAccess(this ISnapshotsOperations operations, strin /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the snapshot that is being created. The name can't be changed @@ -596,7 +596,7 @@ public static void BeginRevokeAccess(this ISnapshotsOperations operations, strin } /// - /// Lists snapshots under a resource group. + /// Lists snapshots under a subscription. /// /// /// The operations group for this extension method. @@ -604,13 +604,13 @@ public static void BeginRevokeAccess(this ISnapshotsOperations operations, strin /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByResourceGroupNext(this ISnapshotsOperations operations, string nextPageLink) + public static IPage ListNext(this ISnapshotsOperations operations, string nextPageLink) { - return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists snapshots under a resource group. + /// Lists snapshots under a subscription. /// /// /// The operations group for this extension method. @@ -621,16 +621,16 @@ public static IPage ListByResourceGroupNext(this ISnapshotsOperations /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this ISnapshotsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this ISnapshotsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists snapshots under a subscription. + /// Lists snapshots under a resource group. /// /// /// The operations group for this extension method. @@ -638,13 +638,13 @@ public static IPage ListByResourceGroupNext(this ISnapshotsOperations /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this ISnapshotsOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this ISnapshotsOperations operations, string nextPageLink) { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists snapshots under a subscription. + /// Lists snapshots under a resource group. /// /// /// The operations group for this extension method. @@ -655,9 +655,9 @@ public static IPage ListNext(this ISnapshotsOperations operations, str /// /// The cancellation token. /// - public static async Task> ListNextAsync(this ISnapshotsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this ISnapshotsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/SoftDeletedResourceOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/SoftDeletedResourceOperations.cs index f0be59249090..a62e91e9cf85 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/SoftDeletedResourceOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/SoftDeletedResourceOperations.cs @@ -55,10 +55,10 @@ internal SoftDeletedResourceOperations(ComputeManagementClient client) /// soft-deleted gallery image version of an image. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Gallery in which the soft-deleted resources resides. + /// The name of the Shared Image Gallery. /// /// /// The type of the artifact to be listed, such as gallery image version. @@ -98,17 +98,21 @@ internal SoftDeletedResourceOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (galleryName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); - } - if (galleryName != null) + if (resourceGroupName != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(galleryName, "^[a-zA-Z0-9]+([_]?[a-zA-Z0-9]+)*$")) + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "galleryName", "^[a-zA-Z0-9]+([_]?[a-zA-Z0-9]+)*$"); + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); } } + if (galleryName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); + } if (artifactType == null) { throw new ValidationException(ValidationRules.CannotBeNull, "artifactType"); @@ -139,17 +143,17 @@ internal SoftDeletedResourceOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("artifactType", artifactType); tracingParameters.Add("artifactName", artifactName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByArtifactName", 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/galleries/{galleryName}/softDeletedArtifactTypes/{artifactType}/artifacts/{artifactName}/versions").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/softdeletedartifacttypes/{artifactType}/artifacts/{artifactName}/versions").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName)); diff --git a/src/Compute/Compute.Management.Sdk/Generated/SoftDeletedResourceOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/SoftDeletedResourceOperationsExtensions.cs index a361751c816f..a1f3cb509591 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/SoftDeletedResourceOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/SoftDeletedResourceOperationsExtensions.cs @@ -29,10 +29,10 @@ public static partial class SoftDeletedResourceOperationsExtensions /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Gallery in which the soft-deleted resources resides. + /// The name of the Shared Image Gallery. /// /// /// The type of the artifact to be listed, such as gallery image version. @@ -54,10 +54,10 @@ public static IPage ListByArtifactName(this ISoftDel /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the Gallery in which the soft-deleted resources resides. + /// The name of the Shared Image Gallery. /// /// /// The type of the artifact to be listed, such as gallery image version. diff --git a/src/Compute/Compute.Management.Sdk/Generated/SshPublicKeysOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/SshPublicKeysOperations.cs index bb2c3e266bd5..ad862f998686 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/SshPublicKeysOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/SshPublicKeysOperations.cs @@ -232,7 +232,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) /// nextLink property in the response to get the next page of SSH public keys. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -257,13 +257,24 @@ internal SshPublicKeysOperations(ComputeManagementClient client) /// public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } string apiVersion = "2024-11-01"; // Tracing @@ -273,16 +284,16 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", 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/sshPublicKeys").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -414,17 +425,14 @@ internal SshPublicKeysOperations(ComputeManagementClient client) } /// - /// Creates a new SSH public key resource. + /// Retrieves information about an SSH public key. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. /// - /// - /// Parameters supplied to create the SSH public key. - /// /// /// Headers that will be added to request. /// @@ -446,27 +454,30 @@ internal SshPublicKeysOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, SshPublicKeyResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (sshPublicKeyName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "sshPublicKeyName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (parameters == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (parameters != null) + if (resourceGroupName != null) { - parameters.Validate(); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (sshPublicKeyName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "sshPublicKeyName"); } string apiVersion = "2024-11-01"; // Tracing @@ -476,19 +487,18 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("sshPublicKeyName", sshPublicKeyName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/sshPublicKeys/{sshPublicKeyName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{sshPublicKeyName}", System.Uri.EscapeDataString(sshPublicKeyName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -501,7 +511,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -532,12 +542,6 @@ internal SshPublicKeysOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -558,7 +562,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -618,24 +622,6 @@ internal SshPublicKeysOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -644,16 +630,16 @@ internal SshPublicKeysOperations(ComputeManagementClient client) } /// - /// Updates a new SSH public key resource. + /// Creates a new SSH public key resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. /// /// - /// Parameters supplied to update the SSH public key. + /// Parameters supplied to create the SSH public key. /// /// /// Headers that will be added to request. @@ -676,12 +662,27 @@ internal SshPublicKeysOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, SshPublicKeyUpdateResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, SshPublicKeyResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (sshPublicKeyName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "sshPublicKeyName"); @@ -690,9 +691,9 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (Client.SubscriptionId == null) + if (parameters != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + parameters.Validate(); } string apiVersion = "2024-11-01"; // Tracing @@ -702,19 +703,19 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("sshPublicKeyName", sshPublicKeyName); tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Create", 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/sshPublicKeys/{sshPublicKeyName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{sshPublicKeyName}", System.Uri.EscapeDataString(sshPublicKeyName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -727,7 +728,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -784,7 +785,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -844,6 +845,24 @@ internal SshPublicKeysOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -852,14 +871,17 @@ internal SshPublicKeysOperations(ComputeManagementClient client) } /// - /// Delete an SSH public key. + /// Updates a new SSH public key resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. /// + /// + /// Parameters supplied to update the SSH public key. + /// /// /// Headers that will be added to request. /// @@ -869,6 +891,9 @@ internal SshPublicKeysOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -878,19 +903,34 @@ internal SshPublicKeysOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, SshPublicKeyUpdateResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (sshPublicKeyName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "sshPublicKeyName"); } - if (Client.SubscriptionId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } string apiVersion = "2024-11-01"; // Tracing @@ -900,18 +940,19 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("sshPublicKeyName", sshPublicKeyName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Update", 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/sshPublicKeys/{sshPublicKeyName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{sshPublicKeyName}", System.Uri.EscapeDataString(sshPublicKeyName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -924,7 +965,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -955,6 +996,12 @@ internal SshPublicKeysOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -975,7 +1022,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1010,13 +1057,31 @@ internal SshPublicKeysOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1025,10 +1090,10 @@ internal SshPublicKeysOperations(ComputeManagementClient client) } /// - /// Retrieves information about an SSH public key. + /// Delete an SSH public key. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. @@ -1042,9 +1107,6 @@ internal SshPublicKeysOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1054,19 +1116,30 @@ internal SshPublicKeysOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (sshPublicKeyName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "sshPublicKeyName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (sshPublicKeyName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "sshPublicKeyName"); } string apiVersion = "2024-11-01"; // Tracing @@ -1076,18 +1149,18 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("sshPublicKeyName", sshPublicKeyName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", 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/sshPublicKeys/{sshPublicKeyName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{sshPublicKeyName}", System.Uri.EscapeDataString(sshPublicKeyName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1100,7 +1173,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1151,7 +1224,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1186,31 +1259,13 @@ internal SshPublicKeysOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1225,7 +1280,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) /// resource. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. @@ -1258,17 +1313,28 @@ internal SshPublicKeysOperations(ComputeManagementClient client) /// public async Task> GenerateKeyPairWithHttpMessagesAsync(string resourceGroupName, string sshPublicKeyName, string encryptionType = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (sshPublicKeyName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "sshPublicKeyName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (sshPublicKeyName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "sshPublicKeyName"); } string apiVersion = "2024-11-01"; SshGenerateKeyPairInputParameters parameters = default(SshGenerateKeyPairInputParameters); @@ -1284,9 +1350,9 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("sshPublicKeyName", sshPublicKeyName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GenerateKeyPair", tracingParameters); @@ -1294,9 +1360,9 @@ internal SshPublicKeysOperations(ComputeManagementClient client) // 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/sshPublicKeys/{sshPublicKeyName}/generateKeyPair").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{sshPublicKeyName}", System.Uri.EscapeDataString(sshPublicKeyName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/SshPublicKeysOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/SshPublicKeysOperationsExtensions.cs index ce20dcf2a9da..accf927bcede 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/SshPublicKeysOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/SshPublicKeysOperationsExtensions.cs @@ -59,7 +59,7 @@ public static IPage ListBySubscription(this ISshPublicKeys /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// public static IPage ListByResourceGroup(this ISshPublicKeysOperations operations, string resourceGroupName) { @@ -74,7 +74,7 @@ public static IPage ListByResourceGroup(this ISshPublicKey /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The cancellation token. @@ -88,159 +88,162 @@ public static IPage ListByResourceGroup(this ISshPublicKey } /// - /// Creates a new SSH public key resource. + /// Retrieves information about an SSH public key. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. /// - /// - /// Parameters supplied to create the SSH public key. - /// - public static SshPublicKeyResource Create(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName, SshPublicKeyResource parameters) + public static SshPublicKeyResource Get(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName) { - return operations.CreateAsync(resourceGroupName, sshPublicKeyName, parameters).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, sshPublicKeyName).GetAwaiter().GetResult(); } /// - /// Creates a new SSH public key resource. + /// Retrieves information about an SSH public key. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. /// - /// - /// Parameters supplied to create the SSH public key. - /// /// /// The cancellation token. /// - public static async Task CreateAsync(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName, SshPublicKeyResource parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, sshPublicKeyName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, sshPublicKeyName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Updates a new SSH public key resource. + /// Creates a new SSH public key resource. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. /// /// - /// Parameters supplied to update the SSH public key. + /// Parameters supplied to create the SSH public key. /// - public static SshPublicKeyResource Update(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName, SshPublicKeyUpdateResource parameters) + public static SshPublicKeyResource Create(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName, SshPublicKeyResource parameters) { - return operations.UpdateAsync(resourceGroupName, sshPublicKeyName, parameters).GetAwaiter().GetResult(); + return operations.CreateAsync(resourceGroupName, sshPublicKeyName, parameters).GetAwaiter().GetResult(); } /// - /// Updates a new SSH public key resource. + /// Creates a new SSH public key resource. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. /// /// - /// Parameters supplied to update the SSH public key. + /// Parameters supplied to create the SSH public key. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName, SshPublicKeyUpdateResource parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateAsync(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName, SshPublicKeyResource parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, sshPublicKeyName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, sshPublicKeyName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Delete an SSH public key. + /// Updates a new SSH public key resource. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. /// - public static void Delete(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName) + /// + /// Parameters supplied to update the SSH public key. + /// + public static SshPublicKeyResource Update(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName, SshPublicKeyUpdateResource parameters) { - operations.DeleteAsync(resourceGroupName, sshPublicKeyName).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, sshPublicKeyName, parameters).GetAwaiter().GetResult(); } /// - /// Delete an SSH public key. + /// Updates a new SSH public key resource. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. /// + /// + /// Parameters supplied to update the SSH public key. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName, SshPublicKeyUpdateResource parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, sshPublicKeyName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, sshPublicKeyName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Retrieves information about an SSH public key. + /// Delete an SSH public key. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. /// - public static SshPublicKeyResource Get(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName) + public static void Delete(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName) { - return operations.GetAsync(resourceGroupName, sshPublicKeyName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, sshPublicKeyName).GetAwaiter().GetResult(); } /// - /// Retrieves information about an SSH public key. + /// Delete an SSH public key. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. @@ -248,12 +251,9 @@ public static SshPublicKeyResource Get(this ISshPublicKeysOperations operations, /// /// The cancellation token. /// - public static async Task GetAsync(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, sshPublicKeyName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, sshPublicKeyName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -266,7 +266,7 @@ public static SshPublicKeyResource Get(this ISshPublicKeysOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. @@ -291,7 +291,7 @@ public static SshPublicKeyResource Get(this ISshPublicKeysOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the SSH public key. diff --git a/src/Compute/Compute.Management.Sdk/Generated/UsageOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/UsageOperations.cs index 2b14a32cc030..77625e74169f 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/UsageOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/UsageOperations.cs @@ -56,7 +56,7 @@ internal UsageOperations(ComputeManagementClient client) /// subscription. /// /// - /// The location for which resource usage is queried. + /// The name of Azure region. /// /// /// Headers that will be added to request. @@ -81,21 +81,21 @@ internal UsageOperations(ComputeManagementClient client) /// public async Task>> ListWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } if (location != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(location, "^[-\\w\\._]+$")) + if (location.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "location", "^[-\\w\\._]+$"); + throw new ValidationException(ValidationRules.MinLength, "location", 1); } } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -104,16 +104,16 @@ internal UsageOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/usages").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); List _queryParameters = new List(); if (apiVersion != null) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/UsageOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/UsageOperationsExtensions.cs index 39b3384749f1..c8c19f4fd180 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/UsageOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/UsageOperationsExtensions.cs @@ -30,7 +30,7 @@ public static partial class UsageOperationsExtensions /// The operations group for this extension method. /// /// - /// The location for which resource usage is queried. + /// The name of Azure region. /// public static IPage List(this IUsageOperations operations, string location) { @@ -46,7 +46,7 @@ public static IPage List(this IUsageOperations operations, string locatio /// The operations group for this extension method. /// /// - /// The location for which resource usage is queried. + /// The name of Azure region. /// /// /// The cancellation token. diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionImagesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionImagesOperations.cs index 2ca7dfb735c9..c607f8e6e3ea 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionImagesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionImagesOperations.cs @@ -12,7 +12,6 @@ namespace Microsoft.Azure.Management.Compute { using Microsoft.Rest; using Microsoft.Rest.Azure; - using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; using System.Collections; @@ -52,17 +51,13 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Gets a virtual machine extension image. + /// Gets a list of virtual machine extension image types. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// - /// - /// - /// - /// /// /// Headers that will be added to request. /// @@ -84,27 +79,26 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string location, string publisherName, string type, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListTypesWithHttpMessagesAsync(string location, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); - } - if (publisherName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (type == null) + if (location == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "type"); + throw new ValidationException(ValidationRules.CannotBeNull, "location"); } - if (version == null) + if (location != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "version"); + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } } - if (Client.SubscriptionId == null) + if (publisherName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); } string apiVersion = "2024-11-01"; // Tracing @@ -114,22 +108,18 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("publisherName", publisherName); - tracingParameters.Add("type", type); - tracingParameters.Add("version", version); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListTypes", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmextension/types/{type}/versions/{version}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmextension/types").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); - _url = _url.Replace("{type}", System.Uri.EscapeDataString(type)); - _url = _url.Replace("{version}", System.Uri.EscapeDataString(version)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -228,7 +218,7 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -241,7 +231,7 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -261,13 +251,22 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) } /// - /// Gets a list of virtual machine extension image types. + /// Gets a list of virtual machine extension image versions. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// + /// + /// + /// + /// The filter to apply on the operation. + /// + /// + /// + /// + /// /// /// Headers that will be added to request. /// @@ -289,19 +288,30 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListTypesWithHttpMessagesAsync(string location, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListVersionsWithHttpMessagesAsync(string location, string publisherName, string type, string filter = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (publisherName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); } - if (Client.SubscriptionId == null) + if (type == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "type"); } string apiVersion = "2024-11-01"; // Tracing @@ -311,23 +321,40 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("publisherName", publisherName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("type", type); + tracingParameters.Add("filter", filter); + tracingParameters.Add("top", top); + tracingParameters.Add("orderby", orderby); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListTypes", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListVersions", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmextension/types").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmextension/types/{type}/versions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{type}", System.Uri.EscapeDataString(type)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (orderby != null) + { + _queryParameters.Add(string.Format("$orderby={0}", System.Uri.EscapeDataString(orderby))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -454,17 +481,16 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) } /// - /// Gets a list of virtual machine extension image versions. + /// Gets a virtual machine extension image. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// /// /// - /// - /// OData parameters to apply to the operation. + /// /// /// /// Headers that will be added to request. @@ -487,12 +513,23 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListVersionsWithHttpMessagesAsync(string location, string publisherName, string type, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string location, string publisherName, string type, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (publisherName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); @@ -501,9 +538,9 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "type"); } - if (Client.SubscriptionId == null) + if (version == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "version"); } string apiVersion = "2024-11-01"; // Tracing @@ -513,30 +550,23 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("publisherName", publisherName); tracingParameters.Add("type", type); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("version", version); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListVersions", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmextension/types/{type}/versions").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmextension/types/{type}/versions/{version}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); _url = _url.Replace("{type}", System.Uri.EscapeDataString(type)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{version}", System.Uri.EscapeDataString(version)); List _queryParameters = new List(); - if (odataQuery != null) - { - var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) - { - _queryParameters.Add(_odataFilter); - } - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -634,7 +664,7 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -647,7 +677,7 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionImagesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionImagesOperationsExtensions.cs index 8677d2b14eaa..45ffaadda3e2 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionImagesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionImagesOperationsExtensions.cs @@ -12,7 +12,6 @@ namespace Microsoft.Azure.Management.Compute { using Microsoft.Rest; using Microsoft.Rest.Azure; - using Microsoft.Rest.Azure.OData; using Models; using System.Collections; using System.Collections.Generic; @@ -25,132 +24,140 @@ namespace Microsoft.Azure.Management.Compute public static partial class VirtualMachineExtensionImagesOperationsExtensions { /// - /// Gets a virtual machine extension image. + /// Gets a list of virtual machine extension image types. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// - /// - /// - /// - /// - public static VirtualMachineExtensionImage Get(this IVirtualMachineExtensionImagesOperations operations, string location, string publisherName, string type, string version) + public static IList ListTypes(this IVirtualMachineExtensionImagesOperations operations, string location, string publisherName) { - return operations.GetAsync(location, publisherName, type, version).GetAwaiter().GetResult(); + return operations.ListTypesAsync(location, publisherName).GetAwaiter().GetResult(); } /// - /// Gets a virtual machine extension image. + /// Gets a list of virtual machine extension image types. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// - /// - /// - /// - /// /// /// The cancellation token. /// - public static async Task GetAsync(this IVirtualMachineExtensionImagesOperations operations, string location, string publisherName, string type, string version, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListTypesAsync(this IVirtualMachineExtensionImagesOperations operations, string location, string publisherName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(location, publisherName, type, version, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListTypesWithHttpMessagesAsync(location, publisherName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets a list of virtual machine extension image types. + /// Gets a list of virtual machine extension image versions. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// - public static IList ListTypes(this IVirtualMachineExtensionImagesOperations operations, string location, string publisherName) + /// + /// + /// + /// The filter to apply on the operation. + /// + /// + /// + /// + /// + public static IList ListVersions(this IVirtualMachineExtensionImagesOperations operations, string location, string publisherName, string type, string filter = default(string), int? top = default(int?), string orderby = default(string)) { - return operations.ListTypesAsync(location, publisherName).GetAwaiter().GetResult(); + return operations.ListVersionsAsync(location, publisherName, type, filter, top, orderby).GetAwaiter().GetResult(); } /// - /// Gets a list of virtual machine extension image types. + /// Gets a list of virtual machine extension image versions. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// + /// + /// + /// + /// The filter to apply on the operation. + /// + /// + /// + /// + /// /// /// The cancellation token. /// - public static async Task> ListTypesAsync(this IVirtualMachineExtensionImagesOperations operations, string location, string publisherName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListVersionsAsync(this IVirtualMachineExtensionImagesOperations operations, string location, string publisherName, string type, string filter = default(string), int? top = default(int?), string orderby = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListTypesWithHttpMessagesAsync(location, publisherName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListVersionsWithHttpMessagesAsync(location, publisherName, type, filter, top, orderby, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets a list of virtual machine extension image versions. + /// Gets a virtual machine extension image. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// /// /// - /// - /// OData parameters to apply to the operation. + /// /// - public static IList ListVersions(this IVirtualMachineExtensionImagesOperations operations, string location, string publisherName, string type, ODataQuery odataQuery = default(ODataQuery)) + public static VirtualMachineExtensionImage Get(this IVirtualMachineExtensionImagesOperations operations, string location, string publisherName, string type, string version) { - return operations.ListVersionsAsync(location, publisherName, type, odataQuery).GetAwaiter().GetResult(); + return operations.GetAsync(location, publisherName, type, version).GetAwaiter().GetResult(); } /// - /// Gets a list of virtual machine extension image versions. + /// Gets a virtual machine extension image. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// /// /// - /// - /// OData parameters to apply to the operation. + /// /// /// /// The cancellation token. /// - public static async Task> ListVersionsAsync(this IVirtualMachineExtensionImagesOperations operations, string location, string publisherName, string type, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IVirtualMachineExtensionImagesOperations operations, string location, string publisherName, string type, string version, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListVersionsWithHttpMessagesAsync(location, publisherName, type, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(location, publisherName, type, version, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionsOperations.cs index 31c01d56063f..2edf49f38d4f 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionsOperations.cs @@ -51,98 +51,13 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// The operation to create or update the extension. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine where the extension should be created or - /// updated. - /// - /// - /// The name of the virtual machine extension. - /// - /// - /// Parameters supplied to the Create Virtual Machine Extension operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, extensionParameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to update the extension. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine where the extension should be updated. - /// - /// - /// The name of the virtual machine extension. - /// - /// - /// Parameters supplied to the Update Virtual Machine Extension operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, extensionParameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to delete the extension. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine where the extension should be deleted. - /// - /// - /// The name of the virtual machine extension. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to get the extension. + /// The operation to get all extensions of a Virtual Machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the extension. - /// - /// - /// The name of the virtual machine extension. + /// The name of the virtual machine. /// /// /// The expand expression to apply on the operation. @@ -168,23 +83,30 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListWithHttpMessagesAsync(string resourceGroupName, string vmName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (vmName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmExtensionName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmExtensionName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -194,30 +116,28 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("vmExtensionName", vmExtensionName); tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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/virtualMachines/{vmName}/extensions/{vmExtensionName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/extensions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{vmExtensionName}", System.Uri.EscapeDataString(vmExtensionName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -311,7 +231,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -324,7 +244,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -344,13 +264,16 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) } /// - /// The operation to get all extensions of a Virtual Machine. + /// The operation to get the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the extension. + /// The name of the virtual machine. + /// + /// + /// The name of the virtual machine extension. /// /// /// The expand expression to apply on the operation. @@ -376,19 +299,34 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListWithHttpMessagesAsync(string resourceGroupName, string vmName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } - if (Client.SubscriptionId == null) + if (vmExtensionName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmExtensionName"); } string apiVersion = "2024-11-01"; // Tracing @@ -398,28 +336,30 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); + tracingParameters.Add("vmExtensionName", vmExtensionName); tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/virtualMachines/{vmName}/extensions").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/extensions/{vmExtensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{vmExtensionName}", System.Uri.EscapeDataString(vmExtensionName)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -513,7 +453,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -526,7 +466,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -549,11 +489,91 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) /// The operation to create or update the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be created or - /// updated. + /// The name of the virtual machine. + /// + /// + /// The name of the virtual machine extension. + /// + /// + /// Parameters supplied to the Create Virtual Machine Extension operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, extensionParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to update the extension. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// The name of the virtual machine extension. + /// + /// + /// Parameters supplied to the Update Virtual Machine Extension operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, extensionParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to delete the extension. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// The name of the virtual machine extension. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to create or update the extension. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. @@ -582,12 +602,27 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); @@ -604,10 +639,6 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { extensionParameters.Validate(); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -616,21 +647,21 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); tracingParameters.Add("vmExtensionName", vmExtensionName); tracingParameters.Add("extensionParameters", extensionParameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", 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/virtualMachines/{vmName}/extensions/{vmExtensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); _url = _url.Replace("{vmExtensionName}", System.Uri.EscapeDataString(vmExtensionName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -735,7 +766,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -778,6 +809,19 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -789,10 +833,10 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) /// The operation to update the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be updated. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. @@ -821,12 +865,27 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); @@ -839,10 +898,6 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "extensionParameters"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -851,21 +906,21 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); tracingParameters.Add("vmExtensionName", vmExtensionName); tracingParameters.Add("extensionParameters", extensionParameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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/virtualMachines/{vmName}/extensions/{vmExtensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); _url = _url.Replace("{vmExtensionName}", System.Uri.EscapeDataString(vmExtensionName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -970,7 +1025,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -995,6 +1050,19 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1006,10 +1074,10 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) /// The operation to delete the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be deleted. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. @@ -1034,10 +1102,25 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) /// public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); @@ -1046,10 +1129,6 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "vmExtensionName"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1058,20 +1137,20 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); tracingParameters.Add("vmExtensionName", vmExtensionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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/virtualMachines/{vmName}/extensions/{vmExtensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); _url = _url.Replace("{vmExtensionName}", System.Uri.EscapeDataString(vmExtensionName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionsOperationsExtensions.cs index c63a4d94c60e..2d29f0423bc6 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineExtensionsOperationsExtensions.cs @@ -22,250 +22,248 @@ namespace Microsoft.Azure.Management.Compute public static partial class VirtualMachineExtensionsOperationsExtensions { /// - /// The operation to create or update the extension. + /// The operation to get all extensions of a Virtual Machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be created or - /// updated. + /// The name of the virtual machine. /// - /// - /// The name of the virtual machine extension. - /// - /// - /// Parameters supplied to the Create Virtual Machine Extension operation. + /// + /// The expand expression to apply on the operation. /// - public static VirtualMachineExtension CreateOrUpdate(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters) + public static VirtualMachineExtensionsListResult List(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string expand = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, vmName, vmExtensionName, extensionParameters).GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, vmName, expand).GetAwaiter().GetResult(); } /// - /// The operation to create or update the extension. + /// The operation to get all extensions of a Virtual Machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be created or - /// updated. - /// - /// - /// The name of the virtual machine extension. + /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Create Virtual Machine Extension operation. + /// + /// The expand expression to apply on the operation. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListAsync(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, extensionParameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, vmName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to update the extension. + /// The operation to get the extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be updated. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. /// - /// - /// Parameters supplied to the Update Virtual Machine Extension operation. + /// + /// The expand expression to apply on the operation. /// - public static VirtualMachineExtension Update(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtensionUpdate extensionParameters) + public static VirtualMachineExtension Get(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, string expand = default(string)) { - return operations.UpdateAsync(resourceGroupName, vmName, vmExtensionName, extensionParameters).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, vmName, vmExtensionName, expand).GetAwaiter().GetResult(); } /// - /// The operation to update the extension. + /// The operation to get the extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be updated. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. /// - /// - /// Parameters supplied to the Update Virtual Machine Extension operation. + /// + /// The expand expression to apply on the operation. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtensionUpdate extensionParameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, extensionParameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to delete the extension. + /// The operation to create or update the extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be deleted. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. /// - public static void Delete(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName) + /// + /// Parameters supplied to the Create Virtual Machine Extension operation. + /// + public static VirtualMachineExtension CreateOrUpdate(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters) { - operations.DeleteAsync(resourceGroupName, vmName, vmExtensionName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, vmName, vmExtensionName, extensionParameters).GetAwaiter().GetResult(); } /// - /// The operation to delete the extension. + /// The operation to create or update the extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be deleted. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. /// + /// + /// Parameters supplied to the Create Virtual Machine Extension operation. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, extensionParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// The operation to get the extension. + /// The operation to update the extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the extension. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Update Virtual Machine Extension operation. /// - public static VirtualMachineExtension Get(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, string expand = default(string)) + public static VirtualMachineExtension Update(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtensionUpdate extensionParameters) { - return operations.GetAsync(resourceGroupName, vmName, vmExtensionName, expand).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, vmName, vmExtensionName, extensionParameters).GetAwaiter().GetResult(); } /// - /// The operation to get the extension. + /// The operation to update the extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the extension. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Update Virtual Machine Extension operation. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtensionUpdate extensionParameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, extensionParameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to get all extensions of a Virtual Machine. + /// The operation to delete the extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the extension. + /// The name of the virtual machine. /// - /// - /// The expand expression to apply on the operation. + /// + /// The name of the virtual machine extension. /// - public static VirtualMachineExtensionsListResult List(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string expand = default(string)) + public static void Delete(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName) { - return operations.ListAsync(resourceGroupName, vmName, expand).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, vmName, vmExtensionName).GetAwaiter().GetResult(); } /// - /// The operation to get all extensions of a Virtual Machine. + /// The operation to delete the extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the extension. + /// The name of the virtual machine. /// - /// - /// The expand expression to apply on the operation. + /// + /// The name of the virtual machine extension. /// /// /// The cancellation token. /// - public static async Task ListAsync(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IVirtualMachineExtensionsOperations operations, string resourceGroupName, string vmName, string vmExtensionName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, vmName, expand, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmName, vmExtensionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -275,11 +273,10 @@ public static void Delete(this IVirtualMachineExtensionsOperations operations, s /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be created or - /// updated. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. @@ -299,11 +296,10 @@ public static VirtualMachineExtension BeginCreateOrUpdate(this IVirtualMachineEx /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be created or - /// updated. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. @@ -329,10 +325,10 @@ public static VirtualMachineExtension BeginCreateOrUpdate(this IVirtualMachineEx /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be updated. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. @@ -352,10 +348,10 @@ public static VirtualMachineExtension BeginUpdate(this IVirtualMachineExtensions /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be updated. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. @@ -381,10 +377,10 @@ public static VirtualMachineExtension BeginUpdate(this IVirtualMachineExtensions /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be deleted. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. @@ -401,10 +397,10 @@ public static void BeginDelete(this IVirtualMachineExtensionsOperations operatio /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the extension should be deleted. + /// The name of the virtual machine. /// /// /// The name of the virtual machine extension. diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesEdgeZoneOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesEdgeZoneOperations.cs index 6fd8e815d235..0cd03243c33e 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesEdgeZoneOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesEdgeZoneOperations.cs @@ -51,26 +51,15 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Gets a virtual machine image in an edge zone. + /// Gets a list of virtual machine image publishers for the specified Azure + /// location and edge zone. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// A valid image SKU version. - /// /// /// Headers that will be added to request. /// @@ -92,35 +81,26 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListPublishersWithHttpMessagesAsync(string location, string edgeZone, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); - } - if (edgeZone == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); - } - if (publisherName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); - } - if (offer == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "offer"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (skus == null) + if (location == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "skus"); + throw new ValidationException(ValidationRules.CannotBeNull, "location"); } - if (version == null) + if (location != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "version"); + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } } - if (Client.SubscriptionId == null) + if (edgeZone == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); } string apiVersion = "2024-11-01"; // Tracing @@ -130,26 +110,18 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("edgeZone", edgeZone); - tracingParameters.Add("publisherName", publisherName); - tracingParameters.Add("offer", offer); - tracingParameters.Add("skus", skus); - tracingParameters.Add("version", version); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListPublishers", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions/{version}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); - _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); - _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); - _url = _url.Replace("{skus}", System.Uri.EscapeDataString(skus)); - _url = _url.Replace("{version}", System.Uri.EscapeDataString(version)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -248,7 +220,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -261,7 +233,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -281,11 +253,11 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) } /// - /// Gets a list of all virtual machine image versions for the specified - /// location, edge zone, publisher, offer, and SKU. + /// Gets a list of virtual machine image offers for the specified location, + /// edge zone and publisher. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. @@ -293,22 +265,6 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// A valid image publisher. /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// The expand expression to apply on the operation. - /// - /// - /// An integer value specifying the number of images to return that matches - /// supplied values. - /// - /// - /// Specifies the order of the results returned. Formatted as an OData query. - /// /// /// Headers that will be added to request. /// @@ -330,12 +286,23 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListOffersWithHttpMessagesAsync(string location, string edgeZone, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (edgeZone == null) { throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); @@ -344,18 +311,6 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); } - if (offer == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "offer"); - } - if (skus == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "skus"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -364,40 +319,21 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("edgeZone", edgeZone); tracingParameters.Add("publisherName", publisherName); - tracingParameters.Add("offer", offer); - tracingParameters.Add("skus", skus); - tracingParameters.Add("expand", expand); - tracingParameters.Add("top", top); - tracingParameters.Add("orderby", orderby); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListOffers", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); - _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); - _url = _url.Replace("{skus}", System.Uri.EscapeDataString(skus)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } - if (top != null) - { - _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); - } - if (orderby != null) - { - _queryParameters.Add(string.Format("$orderby={0}", System.Uri.EscapeDataString(orderby))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -528,11 +464,11 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) } /// - /// Gets a list of virtual machine image offers for the specified location, - /// edge zone and publisher. + /// Gets a list of virtual machine image SKUs for the specified location, edge + /// zone, publisher, and offer. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. @@ -540,6 +476,9 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// A valid image publisher. /// + /// + /// A valid image publisher offer. + /// /// /// Headers that will be added to request. /// @@ -561,12 +500,23 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListOffersWithHttpMessagesAsync(string location, string edgeZone, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListSkusWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (edgeZone == null) { throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); @@ -575,9 +525,9 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); } - if (Client.SubscriptionId == null) + if (offer == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "offer"); } string apiVersion = "2024-11-01"; // Tracing @@ -587,20 +537,22 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("edgeZone", edgeZone); tracingParameters.Add("publisherName", publisherName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("offer", offer); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListOffers", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListSkus", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); List _queryParameters = new List(); if (apiVersion != null) { @@ -732,15 +684,34 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) } /// - /// Gets a list of virtual machine image publishers for the specified Azure - /// location and edge zone. + /// Gets a list of all virtual machine image versions for the specified + /// location, edge zone, publisher, offer, and SKU. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// The expand expression to apply on the operation. + /// + /// + /// An integer value specifying the number of images to return that matches + /// supplied values. + /// + /// + /// Specifies the order of the results returned. Formatted as an OData query. + /// /// /// Headers that will be added to request. /// @@ -762,19 +733,38 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListPublishersWithHttpMessagesAsync(string location, string edgeZone, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (edgeZone == null) { throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); } - if (Client.SubscriptionId == null) + if (publisherName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); + } + if (offer == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "offer"); + } + if (skus == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "skus"); } string apiVersion = "2024-11-01"; // Tracing @@ -784,23 +774,44 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("edgeZone", edgeZone); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("publisherName", publisherName); + tracingParameters.Add("offer", offer); + tracingParameters.Add("skus", skus); + tracingParameters.Add("expand", expand); + tracingParameters.Add("top", top); + tracingParameters.Add("orderby", orderby); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListPublishers", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); + _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); + _url = _url.Replace("{skus}", System.Uri.EscapeDataString(skus)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (orderby != null) + { + _queryParameters.Add(string.Format("$orderby={0}", System.Uri.EscapeDataString(orderby))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -927,11 +938,10 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) } /// - /// Gets a list of virtual machine image SKUs for the specified location, edge - /// zone, publisher, and offer. + /// Gets a virtual machine image in an edge zone. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. @@ -942,6 +952,12 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// A valid image publisher offer. /// + /// + /// A valid image SKU. + /// + /// + /// A valid image SKU version. + /// /// /// Headers that will be added to request. /// @@ -963,12 +979,19 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListSkusWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (edgeZone == null) { throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); @@ -981,6 +1004,14 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "offer"); } + if (skus == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "skus"); + } + if (version == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "version"); + } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -993,21 +1024,25 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("edgeZone", edgeZone); tracingParameters.Add("publisherName", publisherName); tracingParameters.Add("offer", offer); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("skus", skus); + tracingParameters.Add("version", version); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListSkus", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions/{version}").ToString(); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); + _url = _url.Replace("{skus}", System.Uri.EscapeDataString(skus)); + _url = _url.Replace("{version}", System.Uri.EscapeDataString(version)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -1107,7 +1142,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1120,7 +1155,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesEdgeZoneOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesEdgeZoneOperationsExtensions.cs index b7c0df8deb58..7de8001583ac 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesEdgeZoneOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesEdgeZoneOperationsExtensions.cs @@ -24,78 +24,56 @@ namespace Microsoft.Azure.Management.Compute public static partial class VirtualMachineImagesEdgeZoneOperationsExtensions { /// - /// Gets a virtual machine image in an edge zone. + /// Gets a list of virtual machine image publishers for the specified Azure + /// location and edge zone. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// A valid image SKU version. - /// - public static VirtualMachineImage Get(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string version) + public static IList ListPublishers(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone) { - return operations.GetAsync(location, edgeZone, publisherName, offer, skus, version).GetAwaiter().GetResult(); + return operations.ListPublishersAsync(location, edgeZone).GetAwaiter().GetResult(); } /// - /// Gets a virtual machine image in an edge zone. + /// Gets a list of virtual machine image publishers for the specified Azure + /// location and edge zone. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// A valid image SKU version. - /// /// /// The cancellation token. /// - public static async Task GetAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string version, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListPublishersAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(location, edgeZone, publisherName, offer, skus, version, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListPublishersWithHttpMessagesAsync(location, edgeZone, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets a list of all virtual machine image versions for the specified - /// location, edge zone, publisher, offer, and SKU. + /// Gets a list of virtual machine image offers for the specified location, + /// edge zone and publisher. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. @@ -103,36 +81,20 @@ public static VirtualMachineImage Get(this IVirtualMachineImagesEdgeZoneOperatio /// /// A valid image publisher. /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// The expand expression to apply on the operation. - /// - /// - /// An integer value specifying the number of images to return that matches - /// supplied values. - /// - /// - /// Specifies the order of the results returned. Formatted as an OData query. - /// - public static IList List(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string)) + public static IList ListOffers(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName) { - return operations.ListAsync(location, edgeZone, publisherName, offer, skus, expand, top, orderby).GetAwaiter().GetResult(); + return operations.ListOffersAsync(location, edgeZone, publisherName).GetAwaiter().GetResult(); } /// - /// Gets a list of all virtual machine image versions for the specified - /// location, edge zone, publisher, offer, and SKU. + /// Gets a list of virtual machine image offers for the specified location, + /// edge zone and publisher. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. @@ -140,42 +102,26 @@ public static VirtualMachineImage Get(this IVirtualMachineImagesEdgeZoneOperatio /// /// A valid image publisher. /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// The expand expression to apply on the operation. - /// - /// - /// An integer value specifying the number of images to return that matches - /// supplied values. - /// - /// - /// Specifies the order of the results returned. Formatted as an OData query. - /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListOffersAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(location, edgeZone, publisherName, offer, skus, expand, top, orderby, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListOffersWithHttpMessagesAsync(location, edgeZone, publisherName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets a list of virtual machine image offers for the specified location, - /// edge zone and publisher. + /// Gets a list of virtual machine image SKUs for the specified location, edge + /// zone, publisher, and offer. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. @@ -183,20 +129,23 @@ public static VirtualMachineImage Get(this IVirtualMachineImagesEdgeZoneOperatio /// /// A valid image publisher. /// - public static IList ListOffers(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName) + /// + /// A valid image publisher offer. + /// + public static IList ListSkus(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer) { - return operations.ListOffersAsync(location, edgeZone, publisherName).GetAwaiter().GetResult(); + return operations.ListSkusAsync(location, edgeZone, publisherName, offer).GetAwaiter().GetResult(); } /// - /// Gets a list of virtual machine image offers for the specified location, - /// edge zone and publisher. + /// Gets a list of virtual machine image SKUs for the specified location, edge + /// zone, publisher, and offer. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. @@ -204,68 +153,108 @@ public static IList ListOffers(this IVirtualMachine /// /// A valid image publisher. /// + /// + /// A valid image publisher offer. + /// /// /// The cancellation token. /// - public static async Task> ListOffersAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListSkusAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListOffersWithHttpMessagesAsync(location, edgeZone, publisherName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListSkusWithHttpMessagesAsync(location, edgeZone, publisherName, offer, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets a list of virtual machine image publishers for the specified Azure - /// location and edge zone. + /// Gets a list of all virtual machine image versions for the specified + /// location, edge zone, publisher, offer, and SKU. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. /// - public static IList ListPublishers(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone) + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// The expand expression to apply on the operation. + /// + /// + /// An integer value specifying the number of images to return that matches + /// supplied values. + /// + /// + /// Specifies the order of the results returned. Formatted as an OData query. + /// + public static IList List(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string)) { - return operations.ListPublishersAsync(location, edgeZone).GetAwaiter().GetResult(); + return operations.ListAsync(location, edgeZone, publisherName, offer, skus, expand, top, orderby).GetAwaiter().GetResult(); } /// - /// Gets a list of virtual machine image publishers for the specified Azure - /// location and edge zone. + /// Gets a list of all virtual machine image versions for the specified + /// location, edge zone, publisher, offer, and SKU. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// The expand expression to apply on the operation. + /// + /// + /// An integer value specifying the number of images to return that matches + /// supplied values. + /// + /// + /// Specifies the order of the results returned. Formatted as an OData query. + /// /// /// The cancellation token. /// - public static async Task> ListPublishersAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListPublishersWithHttpMessagesAsync(location, edgeZone, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(location, edgeZone, publisherName, offer, skus, expand, top, orderby, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets a list of virtual machine image SKUs for the specified location, edge - /// zone, publisher, and offer. + /// Gets a virtual machine image in an edge zone. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. @@ -276,20 +265,25 @@ public static IList ListPublishers(this IVirtualMac /// /// A valid image publisher offer. /// - public static IList ListSkus(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer) + /// + /// A valid image SKU. + /// + /// + /// A valid image SKU version. + /// + public static VirtualMachineImage Get(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string version) { - return operations.ListSkusAsync(location, edgeZone, publisherName, offer).GetAwaiter().GetResult(); + return operations.GetAsync(location, edgeZone, publisherName, offer, skus, version).GetAwaiter().GetResult(); } /// - /// Gets a list of virtual machine image SKUs for the specified location, edge - /// zone, publisher, and offer. + /// Gets a virtual machine image in an edge zone. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// The name of the edge zone. @@ -300,12 +294,18 @@ public static IList ListSkus(this IVirtualMachineIm /// /// A valid image publisher offer. /// + /// + /// A valid image SKU. + /// + /// + /// A valid image SKU version. + /// /// /// The cancellation token. /// - public static async Task> ListSkusAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string version, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListSkusWithHttpMessagesAsync(location, edgeZone, publisherName, offer, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(location, edgeZone, publisherName, offer, skus, version, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesOperations.cs index 87e2fedb5f8c..a9c12a2816a5 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesOperations.cs @@ -51,22 +51,14 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Gets a virtual machine image. + /// Gets a list of all virtual machine image versions for the specified edge + /// zone /// /// - /// The name of a supported Azure region. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. + /// The name of Azure region. /// - /// - /// A valid image SKU version. + /// + /// The name of the edge zone. /// /// /// Headers that will be added to request. @@ -89,31 +81,26 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string location, string publisherName, string offer, string skus, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListByEdgeZoneWithHttpMessagesAsync(string location, string edgeZone, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); - } - if (publisherName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); - } - if (offer == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "offer"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (skus == null) + if (location == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "skus"); + throw new ValidationException(ValidationRules.CannotBeNull, "location"); } - if (version == null) + if (location != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "version"); + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } } - if (Client.SubscriptionId == null) + if (edgeZone == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); } string apiVersion = "2024-11-01"; // Tracing @@ -123,24 +110,18 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); - tracingParameters.Add("publisherName", publisherName); - tracingParameters.Add("offer", offer); - tracingParameters.Add("skus", skus); - tracingParameters.Add("version", version); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); + tracingParameters.Add("edgeZone", edgeZone); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByEdgeZone", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions/{version}").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); - _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); - _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); - _url = _url.Replace("{skus}", System.Uri.EscapeDataString(skus)); - _url = _url.Replace("{version}", System.Uri.EscapeDataString(version)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/vmimages").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); List _queryParameters = new List(); if (apiVersion != null) { @@ -239,7 +220,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -252,7 +233,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -272,27 +253,11 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) } /// - /// Gets a list of all virtual machine image versions for the specified - /// location, publisher, offer, and SKU. + /// Gets a list of virtual machine image publishers for the specified Azure + /// location. /// /// - /// The name of a supported Azure region. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// The expand expression to apply on the operation. - /// - /// - /// - /// + /// The name of Azure region. /// /// /// Headers that will be added to request. @@ -315,27 +280,22 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string location, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListPublishersWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); - } - if (publisherName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); - } - if (offer == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "offer"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (skus == null) + if (location == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "skus"); + throw new ValidationException(ValidationRules.CannotBeNull, "location"); } - if (Client.SubscriptionId == null) + if (location != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } } string apiVersion = "2024-11-01"; // Tracing @@ -345,38 +305,17 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); - tracingParameters.Add("publisherName", publisherName); - tracingParameters.Add("offer", offer); - tracingParameters.Add("skus", skus); - tracingParameters.Add("expand", expand); - tracingParameters.Add("top", top); - tracingParameters.Add("orderby", orderby); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListPublishers", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); - _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); - _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); - _url = _url.Replace("{skus}", System.Uri.EscapeDataString(skus)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } - if (top != null) - { - _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); - } - if (orderby != null) - { - _queryParameters.Add(string.Format("$orderby={0}", System.Uri.EscapeDataString(orderby))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -511,7 +450,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) /// publisher. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// A valid image publisher. @@ -539,17 +478,24 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) /// public async Task>> ListOffersWithHttpMessagesAsync(string location, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } - if (publisherName == null) + if (location != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } } - if (Client.SubscriptionId == null) + if (publisherName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); } string apiVersion = "2024-11-01"; // Tracing @@ -559,18 +505,18 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("publisherName", publisherName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListOffers", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -702,11 +648,17 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) } /// - /// Gets a list of virtual machine image publishers for the specified Azure - /// location. + /// Gets a list of virtual machine image SKUs for the specified location, + /// publisher, and offer. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. + /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. /// /// /// Headers that will be added to request. @@ -729,15 +681,30 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListPublishersWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListSkusWithHttpMessagesAsync(string location, string publisherName, string offer, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } - if (Client.SubscriptionId == null) + if (location != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } + if (publisherName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); + } + if (offer == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "offer"); } string apiVersion = "2024-11-01"; // Tracing @@ -747,16 +714,20 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); + tracingParameters.Add("publisherName", publisherName); + tracingParameters.Add("offer", offer); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListPublishers", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListSkus", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); + _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); List _queryParameters = new List(); if (apiVersion != null) { @@ -888,11 +859,11 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) } /// - /// Gets a list of virtual machine image SKUs for the specified location, - /// publisher, and offer. + /// Gets a list of all virtual machine image versions for the specified + /// location, publisher, offer, and SKU. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// A valid image publisher. @@ -900,6 +871,16 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) /// /// A valid image publisher offer. /// + /// + /// A valid image SKU. + /// + /// + /// The expand expression to apply on the operation. + /// + /// + /// + /// + /// /// /// Headers that will be added to request. /// @@ -921,12 +902,23 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListSkusWithHttpMessagesAsync(string location, string publisherName, string offer, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string location, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (publisherName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); @@ -935,9 +927,9 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "offer"); } - if (Client.SubscriptionId == null) + if (skus == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "skus"); } string apiVersion = "2024-11-01"; // Tracing @@ -947,25 +939,42 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("publisherName", publisherName); tracingParameters.Add("offer", offer); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("skus", skus); + tracingParameters.Add("expand", expand); + tracingParameters.Add("top", top); + tracingParameters.Add("orderby", orderby); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListSkus", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{skus}", System.Uri.EscapeDataString(skus)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (orderby != null) + { + _queryParameters.Add(string.Format("$orderby={0}", System.Uri.EscapeDataString(orderby))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -1092,14 +1101,22 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) } /// - /// Gets a list of all virtual machine image versions for the specified edge - /// zone + /// Gets a virtual machine image. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// - /// - /// The name of the edge zone. + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// A valid image SKU version. /// /// /// Headers that will be added to request. @@ -1122,15 +1139,34 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListByEdgeZoneWithHttpMessagesAsync(string location, string edgeZone, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string location, string publisherName, string offer, string skus, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } - if (edgeZone == null) + if (location != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } + if (publisherName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); + } + if (offer == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "offer"); + } + if (skus == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "skus"); + } + if (version == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "version"); } if (Client.SubscriptionId == null) { @@ -1144,17 +1180,23 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); - tracingParameters.Add("edgeZone", edgeZone); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); + tracingParameters.Add("publisherName", publisherName); + tracingParameters.Add("offer", offer); + tracingParameters.Add("skus", skus); + tracingParameters.Add("version", version); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByEdgeZone", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/vmimages").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions/{version}").ToString(); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); - _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); + _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); + _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); + _url = _url.Replace("{skus}", System.Uri.EscapeDataString(skus)); + _url = _url.Replace("{version}", System.Uri.EscapeDataString(version)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -1254,7 +1296,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1267,7 +1309,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1287,7 +1329,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) } /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// A valid image publisher. @@ -1328,10 +1370,21 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) /// public async Task>> ListWithPropertiesWithHttpMessagesAsync(string location, string publisherName, string offer, string skus, string expand, int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } + if (location != null) + { + if (location.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "location", 1); + } + } if (publisherName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); @@ -1348,10 +1401,6 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "expand"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1360,6 +1409,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("publisherName", publisherName); tracingParameters.Add("offer", offer); @@ -1367,19 +1417,22 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) tracingParameters.Add("expand", expand); tracingParameters.Add("top", top); tracingParameters.Add("orderby", orderby); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListWithProperties", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); _url = _url.Replace("{skus}", System.Uri.EscapeDataString(skus)); - _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 (expand != null) { _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); @@ -1392,180 +1445,6 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { _queryParameters.Add(string.Format("$orderby={0}", System.Uri.EscapeDataString(orderby))); } - 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("GET"); - _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) - { - 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 AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListWithPropertiesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListWithPropertiesNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesOperationsExtensions.cs index 816e5ae0d1a3..520083cd7ed3 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineImagesOperationsExtensions.cs @@ -24,126 +24,78 @@ namespace Microsoft.Azure.Management.Compute public static partial class VirtualMachineImagesOperationsExtensions { /// - /// Gets a virtual machine image. + /// Gets a list of all virtual machine image versions for the specified edge + /// zone /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. + /// The name of Azure region. /// - /// - /// A valid image SKU. - /// - /// - /// A valid image SKU version. + /// + /// The name of the edge zone. /// - public static VirtualMachineImage Get(this IVirtualMachineImagesOperations operations, string location, string publisherName, string offer, string skus, string version) + public static VmImagesInEdgeZoneListResult ListByEdgeZone(this IVirtualMachineImagesOperations operations, string location, string edgeZone) { - return operations.GetAsync(location, publisherName, offer, skus, version).GetAwaiter().GetResult(); + return operations.ListByEdgeZoneAsync(location, edgeZone).GetAwaiter().GetResult(); } /// - /// Gets a virtual machine image. + /// Gets a list of all virtual machine image versions for the specified edge + /// zone /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. - /// - /// - /// A valid image publisher. + /// The name of Azure region. /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// A valid image SKU version. + /// + /// The name of the edge zone. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IVirtualMachineImagesOperations operations, string location, string publisherName, string offer, string skus, string version, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListByEdgeZoneAsync(this IVirtualMachineImagesOperations operations, string location, string edgeZone, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(location, publisherName, offer, skus, version, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByEdgeZoneWithHttpMessagesAsync(location, edgeZone, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets a list of all virtual machine image versions for the specified - /// location, publisher, offer, and SKU. + /// Gets a list of virtual machine image publishers for the specified Azure + /// location. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. + /// The name of Azure region. /// - /// - /// The expand expression to apply on the operation. - /// - /// - /// - /// - /// - public static IList List(this IVirtualMachineImagesOperations operations, string location, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string)) + public static IList ListPublishers(this IVirtualMachineImagesOperations operations, string location) { - return operations.ListAsync(location, publisherName, offer, skus, expand, top, orderby).GetAwaiter().GetResult(); + return operations.ListPublishersAsync(location).GetAwaiter().GetResult(); } /// - /// Gets a list of all virtual machine image versions for the specified - /// location, publisher, offer, and SKU. + /// Gets a list of virtual machine image publishers for the specified Azure + /// location. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// The expand expression to apply on the operation. - /// - /// - /// - /// + /// The name of Azure region. /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IVirtualMachineImagesOperations operations, string location, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListPublishersAsync(this IVirtualMachineImagesOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(location, publisherName, offer, skus, expand, top, orderby, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListPublishersWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -157,7 +109,7 @@ public static VirtualMachineImage Get(this IVirtualMachineImagesOperations opera /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// A valid image publisher. @@ -175,7 +127,7 @@ public static IList ListOffers(this IVirtualMachine /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// A valid image publisher. @@ -192,50 +144,62 @@ public static IList ListOffers(this IVirtualMachine } /// - /// Gets a list of virtual machine image publishers for the specified Azure - /// location. + /// Gets a list of virtual machine image SKUs for the specified location, + /// publisher, and offer. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// - public static IList ListPublishers(this IVirtualMachineImagesOperations operations, string location) + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + public static IList ListSkus(this IVirtualMachineImagesOperations operations, string location, string publisherName, string offer) { - return operations.ListPublishersAsync(location).GetAwaiter().GetResult(); + return operations.ListSkusAsync(location, publisherName, offer).GetAwaiter().GetResult(); } /// - /// Gets a list of virtual machine image publishers for the specified Azure - /// location. + /// Gets a list of virtual machine image SKUs for the specified location, + /// publisher, and offer. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. + /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. /// /// /// The cancellation token. /// - public static async Task> ListPublishersAsync(this IVirtualMachineImagesOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListSkusAsync(this IVirtualMachineImagesOperations operations, string location, string publisherName, string offer, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListPublishersWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListSkusWithHttpMessagesAsync(location, publisherName, offer, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets a list of virtual machine image SKUs for the specified location, - /// publisher, and offer. + /// Gets a list of all virtual machine image versions for the specified + /// location, publisher, offer, and SKU. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// A valid image publisher. @@ -243,20 +207,30 @@ public static IList ListPublishers(this IVirtualMac /// /// A valid image publisher offer. /// - public static IList ListSkus(this IVirtualMachineImagesOperations operations, string location, string publisherName, string offer) + /// + /// A valid image SKU. + /// + /// + /// The expand expression to apply on the operation. + /// + /// + /// + /// + /// + public static IList List(this IVirtualMachineImagesOperations operations, string location, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string)) { - return operations.ListSkusAsync(location, publisherName, offer).GetAwaiter().GetResult(); + return operations.ListAsync(location, publisherName, offer, skus, expand, top, orderby).GetAwaiter().GetResult(); } /// - /// Gets a list of virtual machine image SKUs for the specified location, - /// publisher, and offer. + /// Gets a list of all virtual machine image versions for the specified + /// location, publisher, offer, and SKU. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// A valid image publisher. @@ -264,54 +238,80 @@ public static IList ListSkus(this IVirtualMachineIm /// /// A valid image publisher offer. /// + /// + /// A valid image SKU. + /// + /// + /// The expand expression to apply on the operation. + /// + /// + /// + /// + /// /// /// The cancellation token. /// - public static async Task> ListSkusAsync(this IVirtualMachineImagesOperations operations, string location, string publisherName, string offer, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IVirtualMachineImagesOperations operations, string location, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListSkusWithHttpMessagesAsync(location, publisherName, offer, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(location, publisherName, offer, skus, expand, top, orderby, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets a list of all virtual machine image versions for the specified edge - /// zone + /// Gets a virtual machine image. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// - /// - /// The name of the edge zone. + /// + /// A valid image publisher. /// - public static VmImagesInEdgeZoneListResult ListByEdgeZone(this IVirtualMachineImagesOperations operations, string location, string edgeZone) + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// A valid image SKU version. + /// + public static VirtualMachineImage Get(this IVirtualMachineImagesOperations operations, string location, string publisherName, string offer, string skus, string version) { - return operations.ListByEdgeZoneAsync(location, edgeZone).GetAwaiter().GetResult(); + return operations.GetAsync(location, publisherName, offer, skus, version).GetAwaiter().GetResult(); } /// - /// Gets a list of all virtual machine image versions for the specified edge - /// zone + /// Gets a virtual machine image. /// /// /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// - /// - /// The name of the edge zone. + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// A valid image SKU version. /// /// /// The cancellation token. /// - public static async Task ListByEdgeZoneAsync(this IVirtualMachineImagesOperations operations, string location, string edgeZone, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IVirtualMachineImagesOperations operations, string location, string publisherName, string offer, string skus, string version, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByEdgeZoneWithHttpMessagesAsync(location, edgeZone, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(location, publisherName, offer, skus, version, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -321,7 +321,7 @@ public static VmImagesInEdgeZoneListResult ListByEdgeZone(this IVirtualMachineIm /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// A valid image publisher. @@ -348,7 +348,7 @@ public static VmImagesInEdgeZoneListResult ListByEdgeZone(this IVirtualMachineIm /// The operations group for this extension method. /// /// - /// The name of a supported Azure region. + /// The name of Azure region. /// /// /// A valid image publisher. @@ -377,33 +377,5 @@ public static VmImagesInEdgeZoneListResult ListByEdgeZone(this IVirtualMachineIm } } - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IList ListWithPropertiesNext(this IVirtualMachineImagesOperations operations, string nextPageLink) - { - return operations.ListWithPropertiesNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListWithPropertiesNextAsync(this IVirtualMachineImagesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithPropertiesNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineRunCommandsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineRunCommandsOperations.cs index f22a848d0ec1..f6c1493e146c 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineRunCommandsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineRunCommandsOperations.cs @@ -54,7 +54,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) /// Lists all available run commands for a subscription in a location. /// /// - /// The location upon which run commands is queried. + /// The name of Azure region. /// /// /// Headers that will be added to request. @@ -79,21 +79,21 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) /// public async Task>> ListWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } if (location != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(location, "^[-\\w\\._]+$")) + if (location.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "location", "^[-\\w\\._]+$"); + throw new ValidationException(ValidationRules.MinLength, "location", 1); } } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -102,16 +102,16 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/runCommands").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); List _queryParameters = new List(); if (apiVersion != null) { @@ -246,7 +246,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) /// Gets specific run command for a subscription in a location. /// /// - /// The location upon which run commands is queried. + /// The name of Azure region. /// /// /// The command id. @@ -280,9 +280,9 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) } if (location != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(location, "^[-\\w\\._]+$")) + if (location.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "location", "^[-\\w\\._]+$"); + throw new ValidationException(ValidationRules.MinLength, "location", 1); } } if (commandId == null) @@ -301,9 +301,9 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("location", location); tracingParameters.Add("commandId", commandId); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -444,98 +444,13 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) } /// - /// The operation to create or update the run command. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine where the run command should be created or - /// updated. - /// - /// - /// The name of the virtual machine run command. - /// - /// - /// Parameters supplied to the Create Virtual Machine RunCommand operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, runCommand, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to update the run command. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine where the run command should be updated. - /// - /// - /// The name of the virtual machine run command. - /// - /// - /// Parameters supplied to the Update Virtual Machine RunCommand operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, runCommand, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to delete the run command. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine where the run command should be deleted. - /// - /// - /// The name of the virtual machine run command. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to get the run command. + /// The operation to get all run commands of a Virtual Machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the run command. - /// - /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachine /// /// /// The expand expression to apply on the operation. @@ -561,23 +476,30 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetByVirtualMachineWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByVirtualMachineWithHttpMessagesAsync(string resourceGroupName, string vmName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (vmName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (runCommandName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "runCommandName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -587,30 +509,28 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("runCommandName", runCommandName); tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetByVirtualMachine", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByVirtualMachine", 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/virtualMachines/{vmName}/runCommands/{runCommandName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/runCommands").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{runCommandName}", System.Uri.EscapeDataString(runCommandName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -704,7 +624,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -717,7 +637,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -737,13 +657,16 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) } /// - /// The operation to get all run commands of a Virtual Machine. + /// The operation to get the run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the run command. + /// The name of the VirtualMachine + /// + /// + /// The name of the VirtualMachineRunCommand /// /// /// The expand expression to apply on the operation. @@ -769,19 +692,34 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByVirtualMachineWithHttpMessagesAsync(string resourceGroupName, string vmName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetByVirtualMachineWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } - if (Client.SubscriptionId == null) + if (runCommandName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "runCommandName"); } string apiVersion = "2024-11-01"; // Tracing @@ -791,28 +729,30 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); + tracingParameters.Add("runCommandName", runCommandName); tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByVirtualMachine", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetByVirtualMachine", 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/virtualMachines/{vmName}/runCommands").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/runCommands/{runCommandName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{runCommandName}", System.Uri.EscapeDataString(runCommandName)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -906,7 +846,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -919,7 +859,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -942,14 +882,94 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) /// The operation to create or update the run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VirtualMachine + /// + /// + /// The name of the VirtualMachineRunCommand + /// + /// + /// Parameters supplied to the Create Virtual Machine RunCommand operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, runCommand, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to update the run command. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VirtualMachine + /// + /// + /// The name of the VirtualMachineRunCommand + /// + /// + /// Parameters supplied to the Update Virtual Machine RunCommand operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, runCommand, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to delete the run command. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VirtualMachine + /// + /// + /// The name of the VirtualMachineRunCommand + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to create or update the run command. + /// + /// + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be created or - /// updated. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// Parameters supplied to the Create Virtual Machine RunCommand operation. @@ -975,12 +995,27 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); @@ -997,10 +1032,6 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { runCommand.Validate(); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1009,21 +1040,21 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); tracingParameters.Add("runCommandName", runCommandName); tracingParameters.Add("runCommand", runCommand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", 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/virtualMachines/{vmName}/runCommands/{runCommandName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); _url = _url.Replace("{runCommandName}", System.Uri.EscapeDataString(runCommandName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1128,7 +1159,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1171,6 +1202,19 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1182,13 +1226,13 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) /// The operation to update the run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be updated. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// Parameters supplied to the Update Virtual Machine RunCommand operation. @@ -1214,12 +1258,27 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); @@ -1232,10 +1291,6 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runCommand"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1244,21 +1299,21 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); tracingParameters.Add("runCommandName", runCommandName); tracingParameters.Add("runCommand", runCommand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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/virtualMachines/{vmName}/runCommands/{runCommandName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); _url = _url.Replace("{runCommandName}", System.Uri.EscapeDataString(runCommandName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1363,7 +1418,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1388,6 +1443,19 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1399,13 +1467,13 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) /// The operation to delete the run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be deleted. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// Headers that will be added to request. @@ -1427,10 +1495,25 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) /// public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, string runCommandName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); @@ -1439,10 +1522,6 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runCommandName"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1451,20 +1530,20 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); tracingParameters.Add("runCommandName", runCommandName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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/virtualMachines/{vmName}/runCommands/{runCommandName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); _url = _url.Replace("{runCommandName}", System.Uri.EscapeDataString(runCommandName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineRunCommandsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineRunCommandsOperationsExtensions.cs index 6d22f626f7e2..aa0deeef78c6 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineRunCommandsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineRunCommandsOperationsExtensions.cs @@ -28,7 +28,7 @@ public static partial class VirtualMachineRunCommandsOperationsExtensions /// The operations group for this extension method. /// /// - /// The location upon which run commands is queried. + /// The name of Azure region. /// public static IPage List(this IVirtualMachineRunCommandsOperations operations, string location) { @@ -42,7 +42,7 @@ public static IPage List(this IVirtualMachineRunCommands /// The operations group for this extension method. /// /// - /// The location upon which run commands is queried. + /// The name of Azure region. /// /// /// The cancellation token. @@ -62,7 +62,7 @@ public static IPage List(this IVirtualMachineRunCommands /// The operations group for this extension method. /// /// - /// The location upon which run commands is queried. + /// The name of Azure region. /// /// /// The command id. @@ -79,7 +79,7 @@ public static RunCommandDocument Get(this IVirtualMachineRunCommandsOperations o /// The operations group for this extension method. /// /// - /// The location upon which run commands is queried. + /// The name of Azure region. /// /// /// The command id. @@ -96,250 +96,248 @@ public static RunCommandDocument Get(this IVirtualMachineRunCommandsOperations o } /// - /// The operation to create or update the run command. + /// The operation to get all run commands of a Virtual Machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be created or - /// updated. - /// - /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachine /// - /// - /// Parameters supplied to the Create Virtual Machine RunCommand operation. + /// + /// The expand expression to apply on the operation. /// - public static VirtualMachineRunCommand CreateOrUpdate(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommand runCommand) + public static IPage ListByVirtualMachine(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string expand = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, vmName, runCommandName, runCommand).GetAwaiter().GetResult(); + return operations.ListByVirtualMachineAsync(resourceGroupName, vmName, expand).GetAwaiter().GetResult(); } /// - /// The operation to create or update the run command. + /// The operation to get all run commands of a Virtual Machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be created or - /// updated. + /// The name of the VirtualMachine /// - /// - /// The name of the virtual machine run command. - /// - /// - /// Parameters supplied to the Create Virtual Machine RunCommand operation. + /// + /// The expand expression to apply on the operation. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommand runCommand, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByVirtualMachineAsync(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, runCommand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByVirtualMachineWithHttpMessagesAsync(resourceGroupName, vmName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to update the run command. + /// The operation to get the run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be updated. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - /// - /// Parameters supplied to the Update Virtual Machine RunCommand operation. + /// + /// The expand expression to apply on the operation. /// - public static VirtualMachineRunCommand Update(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommandUpdate runCommand) + public static VirtualMachineRunCommand GetByVirtualMachine(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, string expand = default(string)) { - return operations.UpdateAsync(resourceGroupName, vmName, runCommandName, runCommand).GetAwaiter().GetResult(); + return operations.GetByVirtualMachineAsync(resourceGroupName, vmName, runCommandName, expand).GetAwaiter().GetResult(); } /// - /// The operation to update the run command. + /// The operation to get the run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be updated. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - /// - /// Parameters supplied to the Update Virtual Machine RunCommand operation. + /// + /// The expand expression to apply on the operation. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommandUpdate runCommand, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetByVirtualMachineAsync(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, runCommand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetByVirtualMachineWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to delete the run command. + /// The operation to create or update the run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be deleted. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - public static void Delete(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName) + /// + /// Parameters supplied to the Create Virtual Machine RunCommand operation. + /// + public static VirtualMachineRunCommand CreateOrUpdate(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommand runCommand) { - operations.DeleteAsync(resourceGroupName, vmName, runCommandName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, vmName, runCommandName, runCommand).GetAwaiter().GetResult(); } /// - /// The operation to delete the run command. + /// The operation to create or update the run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be deleted. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand + /// + /// + /// Parameters supplied to the Create Virtual Machine RunCommand operation. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommand runCommand, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, runCommand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// The operation to get the run command. + /// The operation to update the run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the run command. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Update Virtual Machine RunCommand operation. /// - public static VirtualMachineRunCommand GetByVirtualMachine(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, string expand = default(string)) + public static VirtualMachineRunCommand Update(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommandUpdate runCommand) { - return operations.GetByVirtualMachineAsync(resourceGroupName, vmName, runCommandName, expand).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, vmName, runCommandName, runCommand).GetAwaiter().GetResult(); } /// - /// The operation to get the run command. + /// The operation to update the run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the run command. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Update Virtual Machine RunCommand operation. /// /// /// The cancellation token. /// - public static async Task GetByVirtualMachineAsync(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, VirtualMachineRunCommandUpdate runCommand, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetByVirtualMachineWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, runCommand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to get all run commands of a Virtual Machine. + /// The operation to delete the run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the run command. + /// The name of the VirtualMachine /// - /// - /// The expand expression to apply on the operation. + /// + /// The name of the VirtualMachineRunCommand /// - public static IPage ListByVirtualMachine(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string expand = default(string)) + public static void Delete(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName) { - return operations.ListByVirtualMachineAsync(resourceGroupName, vmName, expand).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, vmName, runCommandName).GetAwaiter().GetResult(); } /// - /// The operation to get all run commands of a Virtual Machine. + /// The operation to delete the run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine containing the run command. + /// The name of the VirtualMachine /// - /// - /// The expand expression to apply on the operation. + /// + /// The name of the VirtualMachineRunCommand /// /// /// The cancellation token. /// - public static async Task> ListByVirtualMachineAsync(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByVirtualMachineWithHttpMessagesAsync(resourceGroupName, vmName, expand, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmName, runCommandName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -349,14 +347,13 @@ public static void Delete(this IVirtualMachineRunCommandsOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be created or - /// updated. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// Parameters supplied to the Create Virtual Machine RunCommand operation. @@ -373,14 +370,13 @@ public static VirtualMachineRunCommand BeginCreateOrUpdate(this IVirtualMachineR /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be created or - /// updated. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// Parameters supplied to the Create Virtual Machine RunCommand operation. @@ -403,13 +399,13 @@ public static VirtualMachineRunCommand BeginCreateOrUpdate(this IVirtualMachineR /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be updated. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// Parameters supplied to the Update Virtual Machine RunCommand operation. @@ -426,13 +422,13 @@ public static VirtualMachineRunCommand BeginUpdate(this IVirtualMachineRunComman /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be updated. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// Parameters supplied to the Update Virtual Machine RunCommand operation. @@ -455,13 +451,13 @@ public static VirtualMachineRunCommand BeginUpdate(this IVirtualMachineRunComman /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be deleted. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// public static void BeginDelete(this IVirtualMachineRunCommandsOperations operations, string resourceGroupName, string vmName, string runCommandName) { @@ -475,13 +471,13 @@ public static void BeginDelete(this IVirtualMachineRunCommandsOperations operati /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine where the run command should be deleted. + /// The name of the VirtualMachine /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// The cancellation token. diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetExtensionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetExtensionsOperations.cs index f3fe8ff0a418..e7701379eebe 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetExtensionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetExtensionsOperations.cs @@ -51,101 +51,13 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie public ComputeManagementClient Client { get; private set; } /// - /// The operation to create or update an extension. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set where the extension should be create or - /// updated. - /// - /// - /// The name of the VM scale set extension. - /// - /// - /// Parameters supplied to the Create VM scale set Extension operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, extensionParameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to update an extension. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set where the extension should be updated. - /// - /// - /// The name of the VM scale set extension. - /// - /// - /// Parameters supplied to the Update VM scale set Extension operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, extensionParameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to delete the extension. + /// Gets a list of all extensions in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be deleted. - /// - /// - /// The name of the VM scale set extension. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to get the extension. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set containing the extension. - /// - /// - /// The name of the VM scale set extension. - /// - /// - /// The expand expression to apply on the operation. + /// The name of the VM scale set. /// /// /// Headers that will be added to request. @@ -168,23 +80,30 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (vmScaleSetName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmssExtensionName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmssExtensionName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; // Tracing @@ -194,26 +113,19 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("vmssExtensionName", vmssExtensionName); - tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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}/extensions/{vmssExtensionName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/extensions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); - _url = _url.Replace("{vmssExtensionName}", System.Uri.EscapeDataString(vmssExtensionName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -311,7 +223,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -324,7 +236,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -344,13 +256,19 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie } /// - /// Gets a list of all extensions in a VM scale set. + /// The operation to get the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set containing the extension. + /// The name of the VM scale set. + /// + /// + /// The name of the VM scale set extension. + /// + /// + /// The expand expression to apply on the operation. /// /// /// Headers that will be added to request. @@ -373,19 +291,34 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } - if (Client.SubscriptionId == null) + if (vmssExtensionName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmssExtensionName"); } string apiVersion = "2024-11-01"; // Tracing @@ -395,23 +328,30 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("vmssExtensionName", vmssExtensionName); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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}/extensions").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/extensions/{vmssExtensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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)); + _url = _url.Replace("{vmssExtensionName}", System.Uri.EscapeDataString(vmssExtensionName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -505,7 +445,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -518,7 +458,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -541,11 +481,91 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie /// The operation to create or update an extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be create or - /// updated. + /// The name of the VM scale set. + /// + /// + /// The name of the VM scale set extension. + /// + /// + /// Parameters supplied to the Create VM scale set Extension operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, extensionParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to update an extension. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The name of the VM scale set extension. + /// + /// + /// Parameters supplied to the Update VM scale set Extension operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, extensionParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to delete the extension. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The name of the VM scale set extension. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to create or update an extension. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. @@ -574,12 +594,27 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -596,10 +631,6 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { extensionParameters.Validate(); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -608,21 +639,21 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("vmssExtensionName", vmssExtensionName); tracingParameters.Add("extensionParameters", extensionParameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", 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}/extensions/{vmssExtensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{vmssExtensionName}", System.Uri.EscapeDataString(vmssExtensionName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -727,7 +758,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -770,6 +801,19 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -781,10 +825,10 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie /// The operation to update an extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be updated. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. @@ -813,12 +857,27 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -831,10 +890,6 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "extensionParameters"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -843,21 +898,21 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("vmssExtensionName", vmssExtensionName); tracingParameters.Add("extensionParameters", extensionParameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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}/extensions/{vmssExtensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{vmssExtensionName}", System.Uri.EscapeDataString(vmssExtensionName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -962,7 +1017,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1005,6 +1060,19 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1016,10 +1084,10 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie /// The operation to delete the extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be deleted. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. @@ -1044,10 +1112,25 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie /// public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string vmssExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -1056,10 +1139,6 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "vmssExtensionName"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1068,20 +1147,20 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("vmssExtensionName", vmssExtensionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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}/extensions/{vmssExtensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{vmssExtensionName}", System.Uri.EscapeDataString(vmssExtensionName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetExtensionsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetExtensionsOperationsExtensions.cs index b654ec5c3eb3..575f4cca5e8f 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetExtensionsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetExtensionsOperationsExtensions.cs @@ -22,244 +22,242 @@ namespace Microsoft.Azure.Management.Compute public static partial class VirtualMachineScaleSetExtensionsOperationsExtensions { /// - /// The operation to create or update an extension. + /// Gets a list of all extensions in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be create or - /// updated. - /// - /// - /// The name of the VM scale set extension. - /// - /// - /// Parameters supplied to the Create VM scale set Extension operation. + /// The name of the VM scale set. /// - public static VirtualMachineScaleSetExtension CreateOrUpdate(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtension extensionParameters) + public static IPage List(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName) { - return operations.CreateOrUpdateAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, extensionParameters).GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); } /// - /// The operation to create or update an extension. + /// Gets a list of all extensions in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be create or - /// updated. - /// - /// - /// The name of the VM scale set extension. - /// - /// - /// Parameters supplied to the Create VM scale set Extension operation. + /// The name of the VM scale set. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtension extensionParameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, extensionParameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to update an extension. + /// The operation to get the extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be updated. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. /// - /// - /// Parameters supplied to the Update VM scale set Extension operation. + /// + /// The expand expression to apply on the operation. /// - public static VirtualMachineScaleSetExtension Update(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtensionUpdate extensionParameters) + public static VirtualMachineScaleSetExtension Get(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, string expand = default(string)) { - return operations.UpdateAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, extensionParameters).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, expand).GetAwaiter().GetResult(); } /// - /// The operation to update an extension. + /// The operation to get the extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be updated. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. /// - /// - /// Parameters supplied to the Update VM scale set Extension operation. + /// + /// The expand expression to apply on the operation. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtensionUpdate extensionParameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, extensionParameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to delete the extension. + /// The operation to create or update an extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be deleted. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. /// - public static void Delete(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName) + /// + /// Parameters supplied to the Create VM scale set Extension operation. + /// + public static VirtualMachineScaleSetExtension CreateOrUpdate(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtension extensionParameters) { - operations.DeleteAsync(resourceGroupName, vmScaleSetName, vmssExtensionName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, extensionParameters).GetAwaiter().GetResult(); } /// - /// The operation to delete the extension. + /// The operation to create or update an extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be deleted. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. /// + /// + /// Parameters supplied to the Create VM scale set Extension operation. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtension extensionParameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, extensionParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// The operation to get the extension. + /// The operation to update an extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set containing the extension. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Update VM scale set Extension operation. /// - public static VirtualMachineScaleSetExtension Get(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, string expand = default(string)) + public static VirtualMachineScaleSetExtension Update(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtensionUpdate extensionParameters) { - return operations.GetAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, expand).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, extensionParameters).GetAwaiter().GetResult(); } /// - /// The operation to get the extension. + /// The operation to update an extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set containing the extension. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Update VM scale set Extension operation. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, VirtualMachineScaleSetExtensionUpdate extensionParameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, extensionParameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets a list of all extensions in a VM scale set. + /// The operation to delete the extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set containing the extension. + /// The name of the VM scale set. /// - public static IPage List(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName) + /// + /// The name of the VM scale set extension. + /// + public static void Delete(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName) { - return operations.ListAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, vmScaleSetName, vmssExtensionName).GetAwaiter().GetResult(); } /// - /// Gets a list of all extensions in a VM scale set. + /// The operation to delete the extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set containing the extension. + /// The name of the VM scale set. + /// + /// + /// The name of the VM scale set extension. /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IVirtualMachineScaleSetExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string vmssExtensionName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, vmssExtensionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -269,11 +267,10 @@ public static IPage List(this IVirtualMachineSc /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be create or - /// updated. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. @@ -293,11 +290,10 @@ public static VirtualMachineScaleSetExtension BeginCreateOrUpdate(this IVirtualM /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be create or - /// updated. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. @@ -323,10 +319,10 @@ public static VirtualMachineScaleSetExtension BeginCreateOrUpdate(this IVirtualM /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be updated. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. @@ -346,10 +342,10 @@ public static VirtualMachineScaleSetExtension BeginUpdate(this IVirtualMachineSc /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be updated. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. @@ -375,10 +371,10 @@ public static VirtualMachineScaleSetExtension BeginUpdate(this IVirtualMachineSc /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be deleted. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. @@ -395,10 +391,10 @@ public static void BeginDelete(this IVirtualMachineScaleSetExtensionsOperations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be deleted. + /// The name of the VM scale set. /// /// /// The name of the VM scale set extension. diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetRollingUpgradesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetRollingUpgradesOperations.cs index 5298ea7f62f9..100df77a9e75 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetRollingUpgradesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetRollingUpgradesOperations.cs @@ -51,10 +51,12 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient public ComputeManagementClient Client { get; private set; } /// - /// Cancels the current virtual machine scale set rolling upgrade. + /// Starts a rolling upgrade to move all extensions for all virtual machine + /// scale set instances to the latest available extension version. Instances + /// which are already running the latest extension versions are not affected. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -65,10 +67,10 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient /// /// The cancellation token. /// - public async Task CancelWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task StartExtensionUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginCancelWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginStartExtensionUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -78,7 +80,7 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient /// running the latest available OS version are not affected. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -97,12 +99,10 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient } /// - /// Starts a rolling upgrade to move all extensions for all virtual machine - /// scale set instances to the latest available extension version. Instances - /// which are already running the latest extension versions are not affected. + /// Cancels the current virtual machine scale set rolling upgrade. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -113,10 +113,10 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient /// /// The cancellation token. /// - public async Task StartExtensionUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CancelWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginStartExtensionUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginCancelWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -124,7 +124,7 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient /// Gets the status of the latest virtual machine scale set rolling upgrade. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -152,17 +152,28 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient /// public async Task> GetLatestWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; // Tracing @@ -172,18 +183,18 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GetLatest", 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}/rollingUpgrades/latest").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -315,10 +326,12 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient } /// - /// Cancels the current virtual machine scale set rolling upgrade. + /// Starts a rolling upgrade to move all extensions for all virtual machine + /// scale set instances to the latest available extension version. Instances + /// which are already running the latest extension versions are not affected. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -341,19 +354,30 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient /// /// A response object containing the response body and response headers. /// - public async Task BeginCancelWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginStartExtensionUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; // Tracing @@ -363,18 +387,18 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCancel", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginStartExtensionUpgrade", 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}/rollingUpgrades/cancel").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/extensionRollingUpgrade").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -493,7 +517,7 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient /// running the latest available OS version are not affected. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -518,17 +542,28 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient /// public async Task BeginStartOSUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; // Tracing @@ -538,18 +573,18 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginStartOSUpgrade", 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}/osRollingUpgrade").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -663,12 +698,10 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient } /// - /// Starts a rolling upgrade to move all extensions for all virtual machine - /// scale set instances to the latest available extension version. Instances - /// which are already running the latest extension versions are not affected. + /// Cancels the current virtual machine scale set rolling upgrade. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -691,19 +724,30 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient /// /// A response object containing the response body and response headers. /// - public async Task BeginStartExtensionUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginCancelWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; // Tracing @@ -713,18 +757,18 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginStartExtensionUpgrade", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCancel", 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}/extensionRollingUpgrade").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/rollingUpgrades/cancel").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetRollingUpgradesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetRollingUpgradesOperationsExtensions.cs index 8bcea9e3f765..a45aac404895 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetRollingUpgradesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetRollingUpgradesOperationsExtensions.cs @@ -22,30 +22,34 @@ namespace Microsoft.Azure.Management.Compute public static partial class VirtualMachineScaleSetRollingUpgradesOperationsExtensions { /// - /// Cancels the current virtual machine scale set rolling upgrade. + /// Starts a rolling upgrade to move all extensions for all virtual machine + /// scale set instances to the latest available extension version. Instances + /// which are already running the latest extension versions are not affected. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - public static void Cancel(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName) + public static void StartExtensionUpgrade(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName) { - operations.CancelAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); + operations.StartExtensionUpgradeAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); } /// - /// Cancels the current virtual machine scale set rolling upgrade. + /// Starts a rolling upgrade to move all extensions for all virtual machine + /// scale set instances to the latest available extension version. Instances + /// which are already running the latest extension versions are not affected. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -53,9 +57,9 @@ public static void Cancel(this IVirtualMachineScaleSetRollingUpgradesOperations /// /// The cancellation token. /// - public static async Task CancelAsync(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task StartExtensionUpgradeAsync(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.CancelWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.StartExtensionUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -67,7 +71,7 @@ public static void Cancel(this IVirtualMachineScaleSetRollingUpgradesOperations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -86,7 +90,7 @@ public static void StartOSUpgrade(this IVirtualMachineScaleSetRollingUpgradesOpe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -100,34 +104,30 @@ public static void StartOSUpgrade(this IVirtualMachineScaleSetRollingUpgradesOpe } /// - /// Starts a rolling upgrade to move all extensions for all virtual machine - /// scale set instances to the latest available extension version. Instances - /// which are already running the latest extension versions are not affected. + /// Cancels the current virtual machine scale set rolling upgrade. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - public static void StartExtensionUpgrade(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName) + public static void Cancel(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName) { - operations.StartExtensionUpgradeAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); + operations.CancelAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); } /// - /// Starts a rolling upgrade to move all extensions for all virtual machine - /// scale set instances to the latest available extension version. Instances - /// which are already running the latest extension versions are not affected. + /// Cancels the current virtual machine scale set rolling upgrade. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -135,9 +135,9 @@ public static void StartExtensionUpgrade(this IVirtualMachineScaleSetRollingUpgr /// /// The cancellation token. /// - public static async Task StartExtensionUpgradeAsync(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CancelAsync(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.StartExtensionUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.CancelWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -147,7 +147,7 @@ public static void StartExtensionUpgrade(this IVirtualMachineScaleSetRollingUpgr /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -164,7 +164,7 @@ public static RollingUpgradeStatusInfo GetLatest(this IVirtualMachineScaleSetRol /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -181,30 +181,34 @@ public static RollingUpgradeStatusInfo GetLatest(this IVirtualMachineScaleSetRol } /// - /// Cancels the current virtual machine scale set rolling upgrade. + /// Starts a rolling upgrade to move all extensions for all virtual machine + /// scale set instances to the latest available extension version. Instances + /// which are already running the latest extension versions are not affected. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - public static void BeginCancel(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName) + public static void BeginStartExtensionUpgrade(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName) { - operations.BeginCancelAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); + operations.BeginStartExtensionUpgradeAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); } /// - /// Cancels the current virtual machine scale set rolling upgrade. + /// Starts a rolling upgrade to move all extensions for all virtual machine + /// scale set instances to the latest available extension version. Instances + /// which are already running the latest extension versions are not affected. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -212,9 +216,9 @@ public static void BeginCancel(this IVirtualMachineScaleSetRollingUpgradesOperat /// /// The cancellation token. /// - public static async Task BeginCancelAsync(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginStartExtensionUpgradeAsync(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginCancelWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginStartExtensionUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -226,7 +230,7 @@ public static void BeginCancel(this IVirtualMachineScaleSetRollingUpgradesOperat /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -245,7 +249,7 @@ public static void BeginStartOSUpgrade(this IVirtualMachineScaleSetRollingUpgrad /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -259,34 +263,30 @@ public static void BeginStartOSUpgrade(this IVirtualMachineScaleSetRollingUpgrad } /// - /// Starts a rolling upgrade to move all extensions for all virtual machine - /// scale set instances to the latest available extension version. Instances - /// which are already running the latest extension versions are not affected. + /// Cancels the current virtual machine scale set rolling upgrade. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - public static void BeginStartExtensionUpgrade(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName) + public static void BeginCancel(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName) { - operations.BeginStartExtensionUpgradeAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); + operations.BeginCancelAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); } /// - /// Starts a rolling upgrade to move all extensions for all virtual machine - /// scale set instances to the latest available extension version. Instances - /// which are already running the latest extension versions are not affected. + /// Cancels the current virtual machine scale set rolling upgrade. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -294,9 +294,9 @@ public static void BeginStartExtensionUpgrade(this IVirtualMachineScaleSetRollin /// /// The cancellation token. /// - public static async Task BeginStartExtensionUpgradeAsync(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginCancelAsync(this IVirtualMachineScaleSetRollingUpgradesOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginStartExtensionUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginCancelWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMExtensionsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMExtensionsOperations.cs index ccaeb03737bb..790dd1fb2b82 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMExtensionsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMExtensionsOperations.cs @@ -51,100 +51,11 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl public ComputeManagementClient Client { get; private set; } /// - /// The operation to create or update the VMSS VM extension. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The instance ID of the virtual machine. - /// - /// - /// The name of the virtual machine extension. - /// - /// - /// Parameters supplied to the Create Virtual Machine Extension operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, extensionParameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to update the VMSS VM extension. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The instance ID of the virtual machine. - /// - /// - /// The name of the virtual machine extension. - /// - /// - /// Parameters supplied to the Update Virtual Machine Extension operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, extensionParameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to delete the VMSS VM extension. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The instance ID of the virtual machine. - /// - /// - /// The name of the virtual machine extension. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to get the VMSS VM extension. + /// The operation to get all extensions of an instance in Virtual Machine + /// Scaleset. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -152,9 +63,6 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl /// /// The instance ID of the virtual machine. /// - /// - /// The name of the virtual machine extension. - /// /// /// The expand expression to apply on the operation. /// @@ -179,12 +87,27 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -193,14 +116,6 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (vmExtensionName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "vmExtensionName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -209,32 +124,30 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("vmExtensionName", vmExtensionName); tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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}/virtualMachines/{instanceId}/extensions/{vmExtensionName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/extensions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{vmExtensionName}", System.Uri.EscapeDataString(vmExtensionName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -328,7 +241,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -341,7 +254,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -361,11 +274,10 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl } /// - /// The operation to get all extensions of an instance in Virtual Machine - /// Scaleset. + /// The operation to get the VMSS VM extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -373,6 +285,9 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl /// /// The instance ID of the virtual machine. /// + /// + /// The name of the virtual machine extension. + /// /// /// The expand expression to apply on the operation. /// @@ -397,12 +312,27 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl /// /// A response object containing the response body and response headers. /// - public async Task> ListWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -411,9 +341,9 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) + if (vmExtensionName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmExtensionName"); } string apiVersion = "2024-11-01"; // Tracing @@ -423,30 +353,32 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); + tracingParameters.Add("vmExtensionName", vmExtensionName); tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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}/virtualMachines/{instanceId}/extensions").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/extensions/{vmExtensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{vmExtensionName}", System.Uri.EscapeDataString(vmExtensionName)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -540,7 +472,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -553,7 +485,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -576,7 +508,97 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl /// The operation to create or update the VMSS VM extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID of the virtual machine. + /// + /// + /// The name of the virtual machine extension. + /// + /// + /// Parameters supplied to the Create Virtual Machine Extension operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, extensionParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to update the VMSS VM extension. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID of the virtual machine. + /// + /// + /// The name of the virtual machine extension. + /// + /// + /// Parameters supplied to the Update Virtual Machine Extension operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, extensionParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to delete the VMSS VM extension. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID of the virtual machine. + /// + /// + /// The name of the virtual machine extension. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to create or update the VMSS VM extension. + /// + /// + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -611,12 +633,27 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtension extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -637,10 +674,6 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { extensionParameters.Validate(); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -649,23 +682,23 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); tracingParameters.Add("vmExtensionName", vmExtensionName); tracingParameters.Add("extensionParameters", extensionParameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", 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}/virtualMachines/{instanceId}/extensions/{vmExtensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); _url = _url.Replace("{vmExtensionName}", System.Uri.EscapeDataString(vmExtensionName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -770,7 +803,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -813,6 +846,19 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -824,7 +870,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl /// The operation to update the VMSS VM extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -859,12 +905,27 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtensionUpdate extensionParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -881,10 +942,6 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "extensionParameters"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -893,23 +950,23 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); tracingParameters.Add("vmExtensionName", vmExtensionName); tracingParameters.Add("extensionParameters", extensionParameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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}/virtualMachines/{instanceId}/extensions/{vmExtensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); _url = _url.Replace("{vmExtensionName}", System.Uri.EscapeDataString(vmExtensionName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1014,7 +1071,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1039,6 +1096,19 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1050,7 +1120,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl /// The operation to delete the VMSS VM extension. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1081,10 +1151,25 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl /// public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -1097,10 +1182,6 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "vmExtensionName"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1109,22 +1190,22 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); tracingParameters.Add("vmExtensionName", vmExtensionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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}/virtualMachines/{instanceId}/extensions/{vmExtensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); _url = _url.Replace("{vmExtensionName}", System.Uri.EscapeDataString(vmExtensionName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMExtensionsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMExtensionsOperationsExtensions.cs index 2bd9dea48e92..8720f2184111 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMExtensionsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMExtensionsOperationsExtensions.cs @@ -22,13 +22,14 @@ namespace Microsoft.Azure.Management.Compute public static partial class VirtualMachineScaleSetVMExtensionsOperationsExtensions { /// - /// The operation to create or update the VMSS VM extension. + /// The operation to get all extensions of an instance in Virtual Machine + /// Scaleset. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -36,25 +37,23 @@ public static partial class VirtualMachineScaleSetVMExtensionsOperationsExtensio /// /// The instance ID of the virtual machine. /// - /// - /// The name of the virtual machine extension. - /// - /// - /// Parameters supplied to the Create Virtual Machine Extension operation. + /// + /// The expand expression to apply on the operation. /// - public static VirtualMachineScaleSetVMExtension CreateOrUpdate(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtension extensionParameters) + public static VirtualMachineScaleSetVMExtensionsListResult List(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, extensionParameters).GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, vmScaleSetName, instanceId, expand).GetAwaiter().GetResult(); } /// - /// The operation to create or update the VMSS VM extension. + /// The operation to get all extensions of an instance in Virtual Machine + /// Scaleset. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -62,31 +61,28 @@ public static VirtualMachineScaleSetVMExtension CreateOrUpdate(this IVirtualMach /// /// The instance ID of the virtual machine. /// - /// - /// The name of the virtual machine extension. - /// - /// - /// Parameters supplied to the Create Virtual Machine Extension operation. + /// + /// The expand expression to apply on the operation. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtension extensionParameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListAsync(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, extensionParameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to update the VMSS VM extension. + /// The operation to get the VMSS VM extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -97,22 +93,22 @@ public static VirtualMachineScaleSetVMExtension CreateOrUpdate(this IVirtualMach /// /// The name of the virtual machine extension. /// - /// - /// Parameters supplied to the Update Virtual Machine Extension operation. + /// + /// The expand expression to apply on the operation. /// - public static VirtualMachineScaleSetVMExtension Update(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtensionUpdate extensionParameters) + public static VirtualMachineScaleSetVMExtension Get(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, string expand = default(string)) { - return operations.UpdateAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, extensionParameters).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, expand).GetAwaiter().GetResult(); } /// - /// The operation to update the VMSS VM extension. + /// The operation to get the VMSS VM extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -123,28 +119,28 @@ public static VirtualMachineScaleSetVMExtension Update(this IVirtualMachineScale /// /// The name of the virtual machine extension. /// - /// - /// Parameters supplied to the Update Virtual Machine Extension operation. + /// + /// The expand expression to apply on the operation. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtensionUpdate extensionParameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, extensionParameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to delete the VMSS VM extension. + /// The operation to create or update the VMSS VM extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -155,19 +151,22 @@ public static VirtualMachineScaleSetVMExtension Update(this IVirtualMachineScale /// /// The name of the virtual machine extension. /// - public static void Delete(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName) + /// + /// Parameters supplied to the Create Virtual Machine Extension operation. + /// + public static VirtualMachineScaleSetVMExtension CreateOrUpdate(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtension extensionParameters) { - operations.DeleteAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, extensionParameters).GetAwaiter().GetResult(); } /// - /// The operation to delete the VMSS VM extension. + /// The operation to create or update the VMSS VM extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -178,22 +177,28 @@ public static void Delete(this IVirtualMachineScaleSetVMExtensionsOperations ope /// /// The name of the virtual machine extension. /// + /// + /// Parameters supplied to the Create Virtual Machine Extension operation. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtension extensionParameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, extensionParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// The operation to get the VMSS VM extension. + /// The operation to update the VMSS VM extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -204,22 +209,22 @@ public static void Delete(this IVirtualMachineScaleSetVMExtensionsOperations ope /// /// The name of the virtual machine extension. /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Update Virtual Machine Extension operation. /// - public static VirtualMachineScaleSetVMExtension Get(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, string expand = default(string)) + public static VirtualMachineScaleSetVMExtension Update(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtensionUpdate extensionParameters) { - return operations.GetAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, expand).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, extensionParameters).GetAwaiter().GetResult(); } /// - /// The operation to get the VMSS VM extension. + /// The operation to update the VMSS VM extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -230,29 +235,28 @@ public static void Delete(this IVirtualMachineScaleSetVMExtensionsOperations ope /// /// The name of the virtual machine extension. /// - /// - /// The expand expression to apply on the operation. + /// + /// Parameters supplied to the Update Virtual Machine Extension operation. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, VirtualMachineScaleSetVMExtensionUpdate extensionParameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, extensionParameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to get all extensions of an instance in Virtual Machine - /// Scaleset. + /// The operation to delete the VMSS VM extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -260,23 +264,22 @@ public static void Delete(this IVirtualMachineScaleSetVMExtensionsOperations ope /// /// The instance ID of the virtual machine. /// - /// - /// The expand expression to apply on the operation. + /// + /// The name of the virtual machine extension. /// - public static VirtualMachineScaleSetVMExtensionsListResult List(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string)) + public static void Delete(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName) { - return operations.ListAsync(resourceGroupName, vmScaleSetName, instanceId, expand).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName).GetAwaiter().GetResult(); } /// - /// The operation to get all extensions of an instance in Virtual Machine - /// Scaleset. + /// The operation to delete the VMSS VM extension. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -284,18 +287,15 @@ public static void Delete(this IVirtualMachineScaleSetVMExtensionsOperations ope /// /// The instance ID of the virtual machine. /// - /// - /// The expand expression to apply on the operation. + /// + /// The name of the virtual machine extension. /// /// /// The cancellation token. /// - public static async Task ListAsync(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IVirtualMachineScaleSetVMExtensionsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string vmExtensionName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, expand, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmExtensionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -305,7 +305,7 @@ public static void Delete(this IVirtualMachineScaleSetVMExtensionsOperations ope /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -331,7 +331,7 @@ public static VirtualMachineScaleSetVMExtension BeginCreateOrUpdate(this IVirtua /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -363,7 +363,7 @@ public static VirtualMachineScaleSetVMExtension BeginCreateOrUpdate(this IVirtua /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -389,7 +389,7 @@ public static VirtualMachineScaleSetVMExtension BeginUpdate(this IVirtualMachine /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -421,7 +421,7 @@ public static VirtualMachineScaleSetVMExtension BeginUpdate(this IVirtualMachine /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -444,7 +444,7 @@ public static void BeginDelete(this IVirtualMachineScaleSetVMExtensionsOperation /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMRunCommandsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMRunCommandsOperations.cs index 5dda7b59a239..6f1aafa35a2f 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMRunCommandsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMRunCommandsOperations.cs @@ -51,109 +51,17 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c public ComputeManagementClient Client { get; private set; } /// - /// The operation to create or update the VMSS VM run command. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The instance ID of the virtual machine. - /// - /// - /// The name of the virtual machine run command. - /// - /// - /// Parameters supplied to the Create Virtual Machine RunCommand operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to update the VMSS VM run command. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The instance ID of the virtual machine. - /// - /// - /// The name of the virtual machine run command. - /// - /// - /// Parameters supplied to the Update Virtual Machine RunCommand operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to delete the VMSS VM run command. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The instance ID of the virtual machine. - /// - /// - /// The name of the virtual machine run command. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to get the VMSS VM run command. + /// The operation to get all run commands of an instance in Virtual Machine + /// Scaleset. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. - /// - /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineScaleSetVM /// /// /// The expand expression to apply on the operation. @@ -179,12 +87,27 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -193,14 +116,6 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (runCommandName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "runCommandName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -209,32 +124,30 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("runCommandName", runCommandName); tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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}/virtualMachines/{instanceId}/runCommands/{runCommandName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{runCommandName}", System.Uri.EscapeDataString(runCommandName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -328,7 +241,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -341,7 +254,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -361,17 +274,19 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c } /// - /// The operation to get all run commands of an instance in Virtual Machine - /// Scaleset. + /// The operation to get the VMSS VM run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM + /// + /// + /// The name of the VirtualMachineRunCommand /// /// /// The expand expression to apply on the operation. @@ -397,12 +312,27 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -411,9 +341,9 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) + if (runCommandName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "runCommandName"); } string apiVersion = "2024-11-01"; // Tracing @@ -423,30 +353,32 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); + tracingParameters.Add("runCommandName", runCommandName); tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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}/virtualMachines/{instanceId}/runCommands").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands/{runCommandName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{runCommandName}", System.Uri.EscapeDataString(runCommandName)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -540,7 +472,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -553,7 +485,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -576,16 +508,106 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c /// The operation to create or update the VMSS VM run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand + /// + /// + /// Parameters supplied to the Create Virtual Machine RunCommand operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to update the VMSS VM run command. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VirtualMachineScaleSet + /// + /// + /// The name of the VirtualMachineScaleSetVM + /// + /// + /// The name of the VirtualMachineRunCommand + /// + /// + /// Resource create parameters. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to delete the VMSS VM run command. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VirtualMachineScaleSet + /// + /// + /// The name of the VirtualMachineScaleSetVM + /// + /// + /// The name of the VirtualMachineRunCommand + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to create or update the VMSS VM run command. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VirtualMachineScaleSet + /// + /// + /// The name of the VirtualMachineScaleSetVM + /// + /// + /// The name of the VirtualMachineRunCommand /// /// /// Parameters supplied to the Create Virtual Machine RunCommand operation. @@ -611,12 +633,27 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommand runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -637,10 +674,6 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { runCommand.Validate(); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -649,23 +682,23 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); tracingParameters.Add("runCommandName", runCommandName); tracingParameters.Add("runCommand", runCommand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", 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}/virtualMachines/{instanceId}/runCommands/{runCommandName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); _url = _url.Replace("{runCommandName}", System.Uri.EscapeDataString(runCommandName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -770,7 +803,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -813,6 +846,19 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -824,19 +870,19 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c /// The operation to update the VMSS VM run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// - /// Parameters supplied to the Update Virtual Machine RunCommand operation. + /// Resource create parameters. /// /// /// Headers that will be added to request. @@ -859,12 +905,27 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommandUpdate runCommand, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -881,10 +942,6 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "runCommand"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -893,23 +950,23 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); tracingParameters.Add("runCommandName", runCommandName); tracingParameters.Add("runCommand", runCommand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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}/virtualMachines/{instanceId}/runCommands/{runCommandName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); _url = _url.Replace("{runCommandName}", System.Uri.EscapeDataString(runCommandName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1014,7 +1071,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1039,6 +1096,19 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -1050,16 +1120,16 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c /// The operation to delete the VMSS VM run command. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// Headers that will be added to request. @@ -1081,10 +1151,25 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c /// public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -1097,10 +1182,6 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "runCommandName"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1109,22 +1190,22 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); tracingParameters.Add("runCommandName", runCommandName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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}/virtualMachines/{instanceId}/runCommands/{runCommandName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); _url = _url.Replace("{runCommandName}", System.Uri.EscapeDataString(runCommandName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMRunCommandsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMRunCommandsOperationsExtensions.cs index ed637e5e47df..d00b2612f6f6 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMRunCommandsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMRunCommandsOperationsExtensions.cs @@ -22,280 +22,280 @@ namespace Microsoft.Azure.Management.Compute public static partial class VirtualMachineScaleSetVMRunCommandsOperationsExtensions { /// - /// The operation to create or update the VMSS VM run command. + /// The operation to get all run commands of an instance in Virtual Machine + /// Scaleset. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// - /// - /// The name of the virtual machine run command. - /// - /// - /// Parameters supplied to the Create Virtual Machine RunCommand operation. + /// + /// The expand expression to apply on the operation. /// - public static VirtualMachineRunCommand CreateOrUpdate(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommand runCommand) + public static IPage List(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand).GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, vmScaleSetName, instanceId, expand).GetAwaiter().GetResult(); } /// - /// The operation to create or update the VMSS VM run command. + /// The operation to get all run commands of an instance in Virtual Machine + /// Scaleset. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. - /// - /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineScaleSetVM /// - /// - /// Parameters supplied to the Create Virtual Machine RunCommand operation. + /// + /// The expand expression to apply on the operation. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommand runCommand, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to update the VMSS VM run command. + /// The operation to get the VMSS VM run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - /// - /// Parameters supplied to the Update Virtual Machine RunCommand operation. + /// + /// The expand expression to apply on the operation. /// - public static VirtualMachineRunCommand Update(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommandUpdate runCommand) + public static VirtualMachineRunCommand Get(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, string expand = default(string)) { - return operations.UpdateAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, expand).GetAwaiter().GetResult(); } /// - /// The operation to update the VMSS VM run command. + /// The operation to get the VMSS VM run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - /// - /// Parameters supplied to the Update Virtual Machine RunCommand operation. + /// + /// The expand expression to apply on the operation. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommandUpdate runCommand, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to delete the VMSS VM run command. + /// The operation to create or update the VMSS VM run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - public static void Delete(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName) + /// + /// Parameters supplied to the Create Virtual Machine RunCommand operation. + /// + public static VirtualMachineRunCommand CreateOrUpdate(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommand runCommand) { - operations.DeleteAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand).GetAwaiter().GetResult(); } /// - /// The operation to delete the VMSS VM run command. + /// The operation to create or update the VMSS VM run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand + /// + /// + /// Parameters supplied to the Create Virtual Machine RunCommand operation. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommand runCommand, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// The operation to get the VMSS VM run command. + /// The operation to update the VMSS VM run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - /// - /// The expand expression to apply on the operation. + /// + /// Resource create parameters. /// - public static VirtualMachineRunCommand Get(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, string expand = default(string)) + public static VirtualMachineRunCommand Update(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommandUpdate runCommand) { - return operations.GetAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, expand).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand).GetAwaiter().GetResult(); } /// - /// The operation to get the VMSS VM run command. + /// The operation to update the VMSS VM run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// - /// - /// The expand expression to apply on the operation. + /// + /// Resource create parameters. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommandUpdate runCommand, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to get all run commands of an instance in Virtual Machine - /// Scaleset. + /// The operation to delete the VMSS VM run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// - /// - /// The expand expression to apply on the operation. + /// + /// The name of the VirtualMachineRunCommand /// - public static IPage List(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string)) + public static void Delete(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName) { - return operations.ListAsync(resourceGroupName, vmScaleSetName, instanceId, expand).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName).GetAwaiter().GetResult(); } /// - /// The operation to get all run commands of an instance in Virtual Machine - /// Scaleset. + /// The operation to delete the VMSS VM run command. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// - /// - /// The expand expression to apply on the operation. + /// + /// The name of the VirtualMachineRunCommand /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, expand, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, runCommandName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -305,16 +305,16 @@ public static void Delete(this IVirtualMachineScaleSetVMRunCommandsOperations op /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// Parameters supplied to the Create Virtual Machine RunCommand operation. @@ -331,16 +331,16 @@ public static VirtualMachineRunCommand BeginCreateOrUpdate(this IVirtualMachineS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// Parameters supplied to the Create Virtual Machine RunCommand operation. @@ -363,19 +363,19 @@ public static VirtualMachineRunCommand BeginCreateOrUpdate(this IVirtualMachineS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// - /// Parameters supplied to the Update Virtual Machine RunCommand operation. + /// Resource create parameters. /// public static VirtualMachineRunCommand BeginUpdate(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName, VirtualMachineRunCommandUpdate runCommand) { @@ -389,19 +389,19 @@ public static VirtualMachineRunCommand BeginUpdate(this IVirtualMachineScaleSetV /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// - /// Parameters supplied to the Update Virtual Machine RunCommand operation. + /// Resource create parameters. /// /// /// The cancellation token. @@ -421,16 +421,16 @@ public static VirtualMachineRunCommand BeginUpdate(this IVirtualMachineScaleSetV /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// public static void BeginDelete(this IVirtualMachineScaleSetVMRunCommandsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, string runCommandName) { @@ -444,16 +444,16 @@ public static void BeginDelete(this IVirtualMachineScaleSetVMRunCommandsOperatio /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set. + /// The name of the VirtualMachineScaleSet /// /// - /// The instance ID of the virtual machine. + /// The name of the VirtualMachineScaleSetVM /// /// - /// The name of the virtual machine run command. + /// The name of the VirtualMachineRunCommand /// /// /// The cancellation token. diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMsOperations.cs index f769004e9e13..0e488b6614c3 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMsOperations.cs @@ -12,7 +12,6 @@ namespace Microsoft.Azure.Management.Compute { using Microsoft.Rest; using Microsoft.Rest.Azure; - using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; using System.Collections; @@ -52,201 +51,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Reimages (upgrade the operating system) a specific virtual machine in a VM - /// scale set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The instance ID of the virtual machine. - /// - /// - /// Parameters for the Reimaging Virtual machine in ScaleSet. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task ReimageWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginReimageWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmScaleSetVMReimageInput, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Allows you to re-image all the disks ( including data disks ) in the a VM - /// scale set instance. This operation is only supported for managed disks. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The instance ID of the virtual machine. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task ReimageAllWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginReimageAllWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Approve upgrade on deferred rolling upgrade for OS disk on a VM scale set - /// instance. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The instance ID of the virtual machine. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> ApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationHeaderResponse _response = await BeginApproveRollingUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Deallocates a specific virtual machine in a VM scale set. Shuts down the - /// virtual machine and releases the compute resources it uses. You are not - /// billed for the compute resources of this virtual machine once it is - /// deallocated. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The instance ID of the virtual machine. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeallocateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Updates a virtual machine of a VM scale set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set where the extension should be create or - /// updated. - /// - /// - /// The instance ID of the virtual machine. - /// - /// - /// Parameters supplied to the Update Virtual Machine Scale Sets VM operation. - /// - /// - /// The ETag of the transformation. Omit this value to always overwrite the - /// current resource. Specify the last-seen ETag value to prevent accidentally - /// overwriting concurrent changes. - /// - /// - /// Set to '*' to allow a new record set to be created, but to prevent updating - /// an existing record set. Other values will result in error from server as - /// they are not supported. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, ifMatch, ifNoneMatch, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Deletes a virtual machine from a VM scale set. + /// Gets a list of all virtual machines in a VM scale sets. /// /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The instance ID of the virtual machine. - /// - /// - /// Optional parameter to force delete a virtual machine from a VM scale set. - /// (Feature in Preview) - /// - /// - /// The headers that will be added to request. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The cancellation token. + /// + /// The name of the VirtualMachineScaleSet /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets a virtual machine from a VM scale set. - /// - /// - /// The name of the resource group. + /// + /// The filter to apply to the operation. Allowed values are + /// 'startswith(instanceView/statuses/code, 'PowerState') eq true', + /// 'properties/latestModelApplied eq true', 'properties/latestModelApplied eq + /// false'. /// - /// - /// The name of the VM scale set. - /// - /// - /// The instance ID of the virtual machine. + /// + /// The list parameters. Allowed values are 'instanceView', + /// 'instanceView/statuses'. /// /// - /// The expand expression to apply on the operation. 'InstanceView' will - /// retrieve the instance view of the virtual machine. 'UserData' will retrieve - /// the UserData of the virtual machine. 'resiliencyView' will retrieve the - /// instance view of the Virtual machine (if applicable) and include - /// 'resilientVMDeletionStatus' as part of it. Possible values include: - /// 'instanceView', 'userData', 'resiliencyView' + /// The expand expression to apply to the operation. Allowed values are + /// 'instanceView'. /// /// /// Headers that will be added to request. @@ -269,23 +94,30 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VmssVMInstanceViewTypes? expand = default(VmssVMInstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string virtualMachineScaleSetName, string filter = default(string), string select = default(string), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (vmScaleSetName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (instanceId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (virtualMachineScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "virtualMachineScaleSetName"); } string apiVersion = "2024-11-01"; // Tracing @@ -295,30 +127,38 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("instanceId", instanceId); + tracingParameters.Add("virtualMachineScaleSetName", virtualMachineScaleSetName); + tracingParameters.Add("filter", filter); + tracingParameters.Add("select", select); tracingParameters.Add("expand", expand); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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}/virtualMachines/{instanceId}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); - _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{virtualMachineScaleSetName}", System.Uri.EscapeDataString(virtualMachineScaleSetName)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (select != null) + { + _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select))); + } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -412,7 +252,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -425,7 +265,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -445,10 +285,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Gets the status of a virtual machine from a VM scale set. + /// Gets a virtual machine from a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -456,6 +296,12 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// + /// + /// The expand expression to apply on the operation. 'InstanceView' will + /// retrieve the instance view of the virtual machine. 'UserData' will retrieve + /// the UserData of the virtual machine. Possible values include: + /// 'instanceView', 'userData', 'resiliencyView' + /// /// /// Headers that will be added to request. /// @@ -477,12 +323,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VmssVMInstanceViewTypes? expand = default(VmssVMInstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -491,10 +352,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -503,25 +360,30 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetInstanceView", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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}/virtualMachines/{instanceId}/instanceView").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _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 (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -615,7 +477,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -628,7 +490,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -648,20 +510,166 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Gets a list of all virtual machines in a VM scale sets. + /// Updates a virtual machine of a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// + /// /// The name of the VM scale set. /// - /// - /// OData parameters to apply to the operation. + /// + /// The instance ID of the virtual machine. + /// + /// + /// Parameters supplied to the Update Virtual Machine Scale Sets VM operation. /// - /// - /// The list parameters. Allowed values are 'instanceView', - /// 'instanceView/statuses'. + /// + /// The ETag of the transformation. Omit this value to always overwrite the + /// current resource. Specify the last-seen ETag value to prevent accidentally + /// overwriting concurrent changes. + /// + /// + /// Set to '*' to allow a new record set to be created, but to prevent updating + /// an existing record set. Other values will result in error from server as + /// they are not supported. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, ifMatch, ifNoneMatch, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a virtual machine from a VM scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID of the virtual machine. + /// + /// + /// Optional parameter to force delete a virtual machine from a VM scale set. + /// (Feature in Preview) + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Approve upgrade on deferred rolling upgrade for OS disk on a VM scale set + /// instance. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID of the virtual machine. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> ApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationHeaderResponse _response = await BeginApproveRollingUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Attach and detach data disks to/from a virtual machine in a VM scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID of the virtual machine. + /// + /// + /// Parameters supplied to the attach and detach data disks operation on a + /// Virtual Machine Scale Sets VM. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> AttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginAttachDetachDataDisksWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deallocates a specific virtual machine in a VM scale set. Shuts down the + /// virtual machine and releases the compute resources it uses. You are not + /// billed for the compute resources of this virtual machine once it is + /// deallocated. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID of the virtual machine. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeallocateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the status of a virtual machine from a VM scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID of the virtual machine. /// /// /// Headers that will be added to request. @@ -684,19 +692,34 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string virtualMachineScaleSetName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (virtualMachineScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "virtualMachineScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + } + if (instanceId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } string apiVersion = "2024-11-01"; // Tracing @@ -706,33 +729,21 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("odataQuery", odataQuery); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("virtualMachineScaleSetName", virtualMachineScaleSetName); - tracingParameters.Add("select", select); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("vmScaleSetName", vmScaleSetName); + tracingParameters.Add("instanceId", instanceId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetInstanceView", 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/{virtualMachineScaleSetName}/virtualMachines").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{virtualMachineScaleSetName}", System.Uri.EscapeDataString(virtualMachineScaleSetName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/instanceView").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); + _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); List _queryParameters = new List(); - if (odataQuery != null) - { - var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) - { - _queryParameters.Add(_odataFilter); - } - } - if (select != null) - { - _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -830,7 +841,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -843,7 +854,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -862,15 +873,38 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) return _result; } + /// + /// Performs maintenance on a virtual machine in a VM scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID of the virtual machine. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginPerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Power off (stop) a virtual machine in a VM scale set. Note that resources /// are still attached and you are getting charged for the resources. Instead, - /// use deallocate to release resources and avoid charges. Additionally, this - /// operation is not allowed on a virtual machine that is being deallocated or - /// already has been deallocated. + /// use deallocate to release resources and avoid charges. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -889,7 +923,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The cancellation token. /// - public async Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request AzureOperationResponse _response = await BeginPowerOffWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, skipShutdown, customHeaders, cancellationToken).ConfigureAwait(false); @@ -897,10 +931,11 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Restarts a virtual machine in a VM scale set. + /// Shuts down the virtual machine in the virtual machine scale set, moves it + /// to a new node, and powers it back on. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -914,18 +949,19 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The cancellation token. /// - public async Task RestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task RedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginRedeployWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Starts a virtual machine in a VM scale set. + /// Reimages (upgrade the operating system) a specific virtual machine in a VM + /// scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -933,25 +969,28 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// + /// + /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task StartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task ReimageWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginStartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginReimageWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmScaleSetVMReimageInput, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Shuts down the virtual machine in the virtual machine scale set, moves it - /// to a new node, and powers it back on. + /// Allows you to re-image all the disks ( including data disks ) in the a VM + /// scale set instance. This operation is only supported for managed disks. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -965,10 +1004,35 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The cancellation token. /// - public async Task RedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task ReimageAllWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginRedeployWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginReimageAllWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Restarts a virtual machine in a VM scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID of the virtual machine. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -977,7 +1041,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1013,10 +1077,25 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// public async Task> RetrieveBootDiagnosticsDataWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, int? sasUriExpirationTimeInMinutes = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -1025,10 +1104,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1037,30 +1112,30 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); tracingParameters.Add("sasUriExpirationTimeInMinutes", sasUriExpirationTimeInMinutes); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "RetrieveBootDiagnosticsData", 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}/virtualmachines/{instanceId}/retrieveBootDiagnosticsData").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/retrieveBootDiagnosticsData").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (sasUriExpirationTimeInMinutes != null) - { - _queryParameters.Add(string.Format("sasUriExpirationTimeInMinutes={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(sasUriExpirationTimeInMinutes, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (sasUriExpirationTimeInMinutes != null) + { + _queryParameters.Add(string.Format("sasUriExpirationTimeInMinutes={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(sasUriExpirationTimeInMinutes, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -1187,10 +1262,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Performs maintenance on a virtual machine in a VM scale set. + /// Run command on a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1198,16 +1273,19 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// + /// + /// Parameters supplied to the Run command operation. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> RunCommandWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginPerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginRunCommandWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -1216,7 +1294,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1244,10 +1322,25 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// public async Task SimulateEvictionWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -1256,10 +1349,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1268,20 +1357,20 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "SimulateEviction", 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}/virtualMachines/{instanceId}/simulateEviction").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1395,10 +1484,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Attach and detach data disks to/from a virtual machine in a VM scale set. + /// Starts a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1406,28 +1495,24 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the attach and detach data disks operation on a - /// Virtual Machine Scale Sets VM. - /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task> AttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task StartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginAttachDetachDataDisksWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginStartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Run command on a virtual machine in a VM scale set. + /// Updates a virtual machine of a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1436,36 +1521,17 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// The instance ID of the virtual machine. /// /// - /// Parameters supplied to the Run command operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> RunCommandWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRunCommandWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Reimages (upgrade the operating system) a specific virtual machine in a VM - /// scale set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. + /// Parameters supplied to the Update Virtual Machine Scale Sets VM operation. /// - /// - /// The instance ID of the virtual machine. + /// + /// The ETag of the transformation. Omit this value to always overwrite the + /// current resource. Specify the last-seen ETag value to prevent accidentally + /// overwriting concurrent changes. /// - /// - /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// + /// Set to '*' to allow a new record set to be created, but to prevent updating + /// an existing record set. Other values will result in error from server as + /// they are not supported. /// /// /// Headers that will be added to request. @@ -1476,6 +1542,9 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -1485,12 +1554,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -1499,9 +1583,13 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2024-11-01"; // Tracing @@ -1511,21 +1599,23 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("vmScaleSetVMReimageInput", vmScaleSetVMReimageInput); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("ifMatch", ifMatch); + tracingParameters.Add("ifNoneMatch", ifNoneMatch); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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}/virtualMachines/{instanceId}/reimage").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1538,13 +1628,29 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("PUT"); _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 (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) + { + _httpRequest.Headers.Remove("If-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } + if (ifNoneMatch != null) + { + if (_httpRequest.Headers.Contains("If-None-Match")) + { + _httpRequest.Headers.Remove("If-None-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-None-Match", ifNoneMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -1569,9 +1675,9 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(vmScaleSetVMReimageInput != null) + if(parameters != null) { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(vmScaleSetVMReimageInput, Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } @@ -1630,13 +1736,31 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1645,11 +1769,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Allows you to re-image all the disks ( including data disks ) in the a VM - /// scale set instance. This operation is only supported for managed disks. + /// Deletes a virtual machine from a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1657,6 +1780,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// + /// + /// Optional parameter to force delete a virtual machine from a VM scale set. + /// (Feature in Preview) + /// /// /// Headers that will be added to request. /// @@ -1675,12 +1802,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginReimageAllWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -1689,10 +1831,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1701,25 +1839,30 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("forceDeletion", forceDeletion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginReimageAll", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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}/virtualMachines/{instanceId}/reimageall").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _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 (forceDeletion != null) + { + _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -1727,7 +1870,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1778,7 +1921,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1832,7 +1975,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// instance. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1860,10 +2003,25 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// public async Task> BeginApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -1872,10 +2030,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1884,20 +2038,20 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginApproveRollingUpgrade", 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}/virtualMachines/{instanceId}/approveRollingUpgrade").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -2024,13 +2178,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Deallocates a specific virtual machine in a VM scale set. Shuts down the - /// virtual machine and releases the compute resources it uses. You are not - /// billed for the compute resources of this virtual machine once it is - /// deallocated. + /// Attach and detach data disks to/from a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -2038,6 +2189,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// + /// + /// Parameters supplied to the attach and detach data disks operation on a + /// Virtual Machine Scale Sets VM. + /// /// /// Headers that will be added to request. /// @@ -2047,6 +2202,9 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -2056,12 +2214,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginAttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -2070,9 +2243,13 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2024-11-01"; // Tracing @@ -2082,20 +2259,21 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDeallocate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginAttachDetachDataDisks", 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}/virtualMachines/{instanceId}/deallocate").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/attachDetachDataDisks").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -2139,6 +2317,12 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -2194,13 +2378,44 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + 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); @@ -2209,31 +2424,20 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Updates a virtual machine of a VM scale set. + /// Deallocates a specific virtual machine in a VM scale set. Shuts down the + /// virtual machine and releases the compute resources it uses. You are not + /// billed for the compute resources of this virtual machine once it is + /// deallocated. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be create or - /// updated. + /// The name of the VM scale set. /// /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the Update Virtual Machine Scale Sets VM operation. - /// - /// - /// The ETag of the transformation. Omit this value to always overwrite the - /// current resource. Specify the last-seen ETag value to prevent accidentally - /// overwriting concurrent changes. - /// - /// - /// Set to '*' to allow a new record set to be created, but to prevent updating - /// an existing record set. Other values will result in error from server as - /// they are not supported. - /// /// /// Headers that will be added to request. /// @@ -2243,9 +2447,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -2255,12 +2456,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -2269,18 +2485,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -2289,23 +2493,20 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("ifMatch", ifMatch); - tracingParameters.Add("ifNoneMatch", ifNoneMatch); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginDeallocate", 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}/virtualMachines/{instanceId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/deallocate").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -2318,29 +2519,13 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _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 (ifMatch != null) - { - if (_httpRequest.Headers.Contains("If-Match")) - { - _httpRequest.Headers.Remove("If-Match"); - } - _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); - } - if (ifNoneMatch != null) - { - if (_httpRequest.Headers.Contains("If-None-Match")) - { - _httpRequest.Headers.Remove("If-None-Match"); - } - _httpRequest.Headers.TryAddWithoutValidation("If-None-Match", ifNoneMatch); - } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -2365,12 +2550,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -2426,49 +2605,13 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -2477,10 +2620,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Deletes a virtual machine from a VM scale set. + /// Performs maintenance on a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -2488,10 +2631,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM scale set. - /// (Feature in Preview) - /// /// /// Headers that will be added to request. /// @@ -2510,12 +2649,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginPerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -2524,10 +2678,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -2536,26 +2686,21 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("forceDeletion", forceDeletion); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginPerformMaintenance", 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}/virtualMachines/{instanceId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/performMaintenance").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (forceDeletion != null) - { - _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -2567,7 +2712,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2618,7 +2763,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2670,12 +2815,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// Power off (stop) a virtual machine in a VM scale set. Note that resources /// are still attached and you are getting charged for the resources. Instead, - /// use deallocate to release resources and avoid charges. Additionally, this - /// operation is not allowed on a virtual machine that is being deallocated or - /// already has been deallocated. + /// use deallocate to release resources and avoid charges. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -2706,12 +2849,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -2720,10 +2878,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -2732,30 +2886,30 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); tracingParameters.Add("skipShutdown", skipShutdown); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginPowerOff", 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}/virtualmachines/{instanceId}/poweroff").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/powerOff").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (skipShutdown != null) - { - _queryParameters.Add(string.Format("skipShutdown={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skipShutdown, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (skipShutdown != null) + { + _queryParameters.Add(string.Format("skipShutdown={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skipShutdown, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -2864,10 +3018,11 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Restarts a virtual machine in a VM scale set. + /// Shuts down the virtual machine in the virtual machine scale set, moves it + /// to a new node, and powers it back on. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -2893,12 +3048,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -2907,10 +3077,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -2919,20 +3085,20 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginRedeploy", 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}/virtualmachines/{instanceId}/restart").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/redeploy").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -3046,10 +3212,11 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Starts a virtual machine in a VM scale set. + /// Reimages (upgrade the operating system) a specific virtual machine in a VM + /// scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -3057,6 +3224,9 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// + /// + /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// /// /// Headers that will be added to request. /// @@ -3075,12 +3245,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -3089,10 +3274,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -3101,20 +3282,21 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("vmScaleSetVMReimageInput", vmScaleSetVMReimageInput); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginStart", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", 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}/virtualmachines/{instanceId}/start").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/reimage").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -3158,6 +3340,12 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(vmScaleSetVMReimageInput != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(vmScaleSetVMReimageInput, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -3228,11 +3416,11 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Shuts down the virtual machine in the virtual machine scale set, moves it - /// to a new node, and powers it back on. + /// Allows you to re-image all the disks ( including data disks ) in the a VM + /// scale set instance. This operation is only supported for managed disks. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -3258,12 +3446,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginReimageAllWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -3272,10 +3475,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -3284,20 +3483,20 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRedeploy", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginReimageAll", 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}/virtualmachines/{instanceId}/redeploy").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/reimageall").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -3411,10 +3610,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Performs maintenance on a virtual machine in a VM scale set. + /// Restarts a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -3440,12 +3639,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginPerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -3454,10 +3668,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -3466,20 +3676,20 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginPerformMaintenance", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", 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}/virtualmachines/{instanceId}/performMaintenance").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/restart").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -3593,10 +3803,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Attach and detach data disks to/from a virtual machine in a VM scale set. + /// Run command on a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -3605,8 +3815,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// The instance ID of the virtual machine. /// /// - /// Parameters supplied to the attach and detach data disks operation on a - /// Virtual Machine Scale Sets VM. + /// Parameters supplied to the Run command operation. /// /// /// Headers that will be added to request. @@ -3629,12 +3838,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginAttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginRunCommandWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -3651,10 +3875,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { parameters.Validate(); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -3663,21 +3883,21 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginAttachDetachDataDisks", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginRunCommand", 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}/virtualmachines/{instanceId}/attachDetachDataDisks").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommand").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -3782,7 +4002,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -3795,7 +4015,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -3807,19 +4027,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - 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); @@ -3828,10 +4035,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) } /// - /// Run command on a virtual machine in a VM scale set. + /// Starts a virtual machine in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -3839,9 +4046,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the Run command operation. - /// /// /// Headers that will be added to request. /// @@ -3851,9 +4055,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -3863,12 +4064,27 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginRunCommandWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -3877,18 +4093,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -3897,21 +4101,20 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRunCommand", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginStart", 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}/virtualmachines/{instanceId}/runCommand").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/start").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -3955,12 +4158,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -4016,31 +4213,13 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs index 779ef724df19..5ee965eaa539 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs @@ -12,7 +12,6 @@ namespace Microsoft.Azure.Management.Compute { using Microsoft.Rest; using Microsoft.Rest.Azure; - using Microsoft.Rest.Azure.OData; using Models; using System.Threading; using System.Threading.Tasks; @@ -23,65 +22,81 @@ namespace Microsoft.Azure.Management.Compute public static partial class VirtualMachineScaleSetVMsOperationsExtensions { /// - /// Reimages (upgrade the operating system) a specific virtual machine in a VM - /// scale set. + /// Gets a list of all virtual machines in a VM scale sets. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The name of the VM scale set. + /// + /// The name of the VirtualMachineScaleSet /// - /// - /// The instance ID of the virtual machine. + /// + /// The filter to apply to the operation. Allowed values are + /// 'startswith(instanceView/statuses/code, 'PowerState') eq true', + /// 'properties/latestModelApplied eq true', 'properties/latestModelApplied eq + /// false'. /// - /// - /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// + /// The list parameters. Allowed values are 'instanceView', + /// 'instanceView/statuses'. /// - public static void Reimage(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters)) + /// + /// The expand expression to apply to the operation. Allowed values are + /// 'instanceView'. + /// + public static IPage List(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string virtualMachineScaleSetName, string filter = default(string), string select = default(string), string expand = default(string)) { - operations.ReimageAsync(resourceGroupName, vmScaleSetName, instanceId, vmScaleSetVMReimageInput).GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, virtualMachineScaleSetName, filter, select, expand).GetAwaiter().GetResult(); } /// - /// Reimages (upgrade the operating system) a specific virtual machine in a VM - /// scale set. + /// Gets a list of all virtual machines in a VM scale sets. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The name of the VM scale set. + /// + /// The name of the VirtualMachineScaleSet /// - /// - /// The instance ID of the virtual machine. + /// + /// The filter to apply to the operation. Allowed values are + /// 'startswith(instanceView/statuses/code, 'PowerState') eq true', + /// 'properties/latestModelApplied eq true', 'properties/latestModelApplied eq + /// false'. /// - /// - /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// + /// The list parameters. Allowed values are 'instanceView', + /// 'instanceView/statuses'. + /// + /// + /// The expand expression to apply to the operation. Allowed values are + /// 'instanceView'. /// /// /// The cancellation token. /// - public static async Task ReimageAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string virtualMachineScaleSetName, string filter = default(string), string select = default(string), string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.ReimageWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmScaleSetVMReimageInput, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, virtualMachineScaleSetName, filter, select, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Allows you to re-image all the disks ( including data disks ) in the a VM - /// scale set instance. This operation is only supported for managed disks. + /// Gets a virtual machine from a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -89,20 +104,25 @@ public static partial class VirtualMachineScaleSetVMsOperationsExtensions /// /// The instance ID of the virtual machine. /// - public static void ReimageAll(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + /// + /// The expand expression to apply on the operation. 'InstanceView' will + /// retrieve the instance view of the virtual machine. 'UserData' will retrieve + /// the UserData of the virtual machine. Possible values include: + /// 'instanceView', 'userData', 'resiliencyView' + /// + public static VirtualMachineScaleSetVM Get(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VmssVMInstanceViewTypes? expand = default(VmssVMInstanceViewTypes?)) { - operations.ReimageAllAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, vmScaleSetName, instanceId, expand).GetAwaiter().GetResult(); } /// - /// Allows you to re-image all the disks ( including data disks ) in the a VM - /// scale set instance. This operation is only supported for managed disks. + /// Gets a virtual machine from a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -110,23 +130,31 @@ public static void ReimageAll(this IVirtualMachineScaleSetVMsOperations operatio /// /// The instance ID of the virtual machine. /// + /// + /// The expand expression to apply on the operation. 'InstanceView' will + /// retrieve the instance view of the virtual machine. 'UserData' will retrieve + /// the UserData of the virtual machine. Possible values include: + /// 'instanceView', 'userData', 'resiliencyView' + /// /// /// The cancellation token. /// - public static async Task ReimageAllAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VmssVMInstanceViewTypes? expand = default(VmssVMInstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.ReimageAllWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Approve upgrade on deferred rolling upgrade for OS disk on a VM scale set - /// instance. + /// Updates a virtual machine of a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -134,20 +162,32 @@ public static void ReimageAll(this IVirtualMachineScaleSetVMsOperations operatio /// /// The instance ID of the virtual machine. /// - public static VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders ApproveRollingUpgrade(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + /// + /// Parameters supplied to the Update Virtual Machine Scale Sets VM operation. + /// + /// + /// The ETag of the transformation. Omit this value to always overwrite the + /// current resource. Specify the last-seen ETag value to prevent accidentally + /// overwriting concurrent changes. + /// + /// + /// Set to '*' to allow a new record set to be created, but to prevent updating + /// an existing record set. Other values will result in error from server as + /// they are not supported. + /// + public static VirtualMachineScaleSetVM Update(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string)) { - return operations.ApproveRollingUpgradeAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, ifMatch, ifNoneMatch).GetAwaiter().GetResult(); } /// - /// Approve upgrade on deferred rolling upgrade for OS disk on a VM scale set - /// instance. + /// Updates a virtual machine of a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -155,28 +195,38 @@ public static VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders ApproveRolli /// /// The instance ID of the virtual machine. /// + /// + /// Parameters supplied to the Update Virtual Machine Scale Sets VM operation. + /// + /// + /// The ETag of the transformation. Omit this value to always overwrite the + /// current resource. Specify the last-seen ETag value to prevent accidentally + /// overwriting concurrent changes. + /// + /// + /// Set to '*' to allow a new record set to be created, but to prevent updating + /// an existing record set. Other values will result in error from server as + /// they are not supported. + /// /// /// The cancellation token. /// - public static async Task ApproveRollingUpgradeAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ApproveRollingUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, ifMatch, ifNoneMatch, null, cancellationToken).ConfigureAwait(false)) { - return _result.Headers; + return _result.Body; } } /// - /// Deallocates a specific virtual machine in a VM scale set. Shuts down the - /// virtual machine and releases the compute resources it uses. You are not - /// billed for the compute resources of this virtual machine once it is - /// deallocated. + /// Deletes a virtual machine from a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -184,22 +234,23 @@ public static VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders ApproveRolli /// /// The instance ID of the virtual machine. /// - public static void Deallocate(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + /// + /// Optional parameter to force delete a virtual machine from a VM scale set. + /// (Feature in Preview) + /// + public static void Delete(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?)) { - operations.DeallocateAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion).GetAwaiter().GetResult(); } /// - /// Deallocates a specific virtual machine in a VM scale set. Shuts down the - /// virtual machine and releases the compute resources it uses. You are not - /// billed for the compute resources of this virtual machine once it is - /// deallocated. + /// Deletes a virtual machine from a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -207,96 +258,74 @@ public static void Deallocate(this IVirtualMachineScaleSetVMsOperations operatio /// /// The instance ID of the virtual machine. /// + /// + /// Optional parameter to force delete a virtual machine from a VM scale set. + /// (Feature in Preview) + /// /// /// The cancellation token. /// - public static async Task DeallocateAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeallocateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Updates a virtual machine of a VM scale set. + /// Approve upgrade on deferred rolling upgrade for OS disk on a VM scale set + /// instance. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be create or - /// updated. + /// The name of the VM scale set. /// /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the Update Virtual Machine Scale Sets VM operation. - /// - /// - /// The ETag of the transformation. Omit this value to always overwrite the - /// current resource. Specify the last-seen ETag value to prevent accidentally - /// overwriting concurrent changes. - /// - /// - /// Set to '*' to allow a new record set to be created, but to prevent updating - /// an existing record set. Other values will result in error from server as - /// they are not supported. - /// - public static VirtualMachineScaleSetVM Update(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string)) + public static VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders ApproveRollingUpgrade(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - return operations.UpdateAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, ifMatch, ifNoneMatch).GetAwaiter().GetResult(); + return operations.ApproveRollingUpgradeAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// Updates a virtual machine of a VM scale set. + /// Approve upgrade on deferred rolling upgrade for OS disk on a VM scale set + /// instance. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be create or - /// updated. + /// The name of the VM scale set. /// /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the Update Virtual Machine Scale Sets VM operation. - /// - /// - /// The ETag of the transformation. Omit this value to always overwrite the - /// current resource. Specify the last-seen ETag value to prevent accidentally - /// overwriting concurrent changes. - /// - /// - /// Set to '*' to allow a new record set to be created, but to prevent updating - /// an existing record set. Other values will result in error from server as - /// they are not supported. - /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ApproveRollingUpgradeAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, ifMatch, ifNoneMatch, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ApproveRollingUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)) { - return _result.Body; + return _result.Headers; } } /// - /// Deletes a virtual machine from a VM scale set. + /// Attach and detach data disks to/from a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -304,23 +333,23 @@ public static void Deallocate(this IVirtualMachineScaleSetVMsOperations operatio /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM scale set. - /// (Feature in Preview) + /// + /// Parameters supplied to the attach and detach data disks operation on a + /// Virtual Machine Scale Sets VM. /// - public static void Delete(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?)) + public static StorageProfile AttachDetachDataDisks(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters) { - operations.DeleteAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion).GetAwaiter().GetResult(); + return operations.AttachDetachDataDisksAsync(resourceGroupName, vmScaleSetName, instanceId, parameters).GetAwaiter().GetResult(); } /// - /// Deletes a virtual machine from a VM scale set. + /// Attach and detach data disks to/from a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -328,26 +357,32 @@ public static void Deallocate(this IVirtualMachineScaleSetVMsOperations operatio /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM scale set. - /// (Feature in Preview) + /// + /// Parameters supplied to the attach and detach data disks operation on a + /// Virtual Machine Scale Sets VM. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task AttachDetachDataDisksAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.AttachDetachDataDisksWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Gets a virtual machine from a VM scale set. + /// Deallocates a specific virtual machine in a VM scale set. Shuts down the + /// virtual machine and releases the compute resources it uses. You are not + /// billed for the compute resources of this virtual machine once it is + /// deallocated. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -355,27 +390,22 @@ public static void Deallocate(this IVirtualMachineScaleSetVMsOperations operatio /// /// The instance ID of the virtual machine. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' will - /// retrieve the instance view of the virtual machine. 'UserData' will retrieve - /// the UserData of the virtual machine. 'resiliencyView' will retrieve the - /// instance view of the Virtual machine (if applicable) and include - /// 'resilientVMDeletionStatus' as part of it. Possible values include: - /// 'instanceView', 'userData', 'resiliencyView' - /// - public static VirtualMachineScaleSetVM Get(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VmssVMInstanceViewTypes? expand = default(VmssVMInstanceViewTypes?)) + public static void Deallocate(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - return operations.GetAsync(resourceGroupName, vmScaleSetName, instanceId, expand).GetAwaiter().GetResult(); + operations.DeallocateAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// Gets a virtual machine from a VM scale set. + /// Deallocates a specific virtual machine in a VM scale set. Shuts down the + /// virtual machine and releases the compute resources it uses. You are not + /// billed for the compute resources of this virtual machine once it is + /// deallocated. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -383,23 +413,12 @@ public static void Deallocate(this IVirtualMachineScaleSetVMsOperations operatio /// /// The instance ID of the virtual machine. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' will - /// retrieve the instance view of the virtual machine. 'UserData' will retrieve - /// the UserData of the virtual machine. 'resiliencyView' will retrieve the - /// instance view of the Virtual machine (if applicable) and include - /// 'resilientVMDeletionStatus' as part of it. Possible values include: - /// 'instanceView', 'userData', 'resiliencyView' - /// /// /// The cancellation token. /// - public static async Task GetAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VmssVMInstanceViewTypes? expand = default(VmssVMInstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeallocateAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, expand, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeallocateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -409,7 +428,7 @@ public static void Deallocate(this IVirtualMachineScaleSetVMsOperations operatio /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -429,7 +448,7 @@ public static VirtualMachineScaleSetVMInstanceView GetInstanceView(this IVirtual /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -449,71 +468,58 @@ public static VirtualMachineScaleSetVMInstanceView GetInstanceView(this IVirtual } /// - /// Gets a list of all virtual machines in a VM scale sets. + /// Performs maintenance on a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// + /// /// The name of the VM scale set. /// - /// - /// OData parameters to apply to the operation. - /// - /// - /// The list parameters. Allowed values are 'instanceView', - /// 'instanceView/statuses'. + /// + /// The instance ID of the virtual machine. /// - public static IPage List(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string virtualMachineScaleSetName, ODataQuery odataQuery = default(ODataQuery), string select = default(string)) + public static void PerformMaintenance(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - return operations.ListAsync(resourceGroupName, virtualMachineScaleSetName, odataQuery, select).GetAwaiter().GetResult(); + operations.PerformMaintenanceAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// Gets a list of all virtual machines in a VM scale sets. + /// Performs maintenance on a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// + /// /// The name of the VM scale set. /// - /// - /// OData parameters to apply to the operation. - /// - /// - /// The list parameters. Allowed values are 'instanceView', - /// 'instanceView/statuses'. + /// + /// The instance ID of the virtual machine. /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string virtualMachineScaleSetName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PerformMaintenanceAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, virtualMachineScaleSetName, odataQuery, select, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.PerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// /// Power off (stop) a virtual machine in a VM scale set. Note that resources /// are still attached and you are getting charged for the resources. Instead, - /// use deallocate to release resources and avoid charges. Additionally, this - /// operation is not allowed on a virtual machine that is being deallocated or - /// already has been deallocated. + /// use deallocate to release resources and avoid charges. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -526,7 +532,7 @@ public static VirtualMachineScaleSetVMInstanceView GetInstanceView(this IVirtual /// indicates non-graceful shutdown whereas false indicates otherwise. Default /// value for this flag is false if not specified /// - public static void PowerOff(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = false) + public static void PowerOff(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = default(bool?)) { operations.PowerOffAsync(resourceGroupName, vmScaleSetName, instanceId, skipShutdown).GetAwaiter().GetResult(); } @@ -534,15 +540,13 @@ public static void PowerOff(this IVirtualMachineScaleSetVMsOperations operations /// /// Power off (stop) a virtual machine in a VM scale set. Note that resources /// are still attached and you are getting charged for the resources. Instead, - /// use deallocate to release resources and avoid charges. Additionally, this - /// operation is not allowed on a virtual machine that is being deallocated or - /// already has been deallocated. + /// use deallocate to release resources and avoid charges. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -558,19 +562,20 @@ public static void PowerOff(this IVirtualMachineScaleSetVMsOperations operations /// /// The cancellation token. /// - public static async Task PowerOffAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = false, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PowerOffAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { (await operations.PowerOffWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, skipShutdown, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Restarts a virtual machine in a VM scale set. + /// Shuts down the virtual machine in the virtual machine scale set, moves it + /// to a new node, and powers it back on. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -578,19 +583,20 @@ public static void PowerOff(this IVirtualMachineScaleSetVMsOperations operations /// /// The instance ID of the virtual machine. /// - public static void Restart(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + public static void Redeploy(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - operations.RestartAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + operations.RedeployAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// Restarts a virtual machine in a VM scale set. + /// Shuts down the virtual machine in the virtual machine scale set, moves it + /// to a new node, and powers it back on. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -601,19 +607,20 @@ public static void Restart(this IVirtualMachineScaleSetVMsOperations operations, /// /// The cancellation token. /// - public static async Task RestartAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RedeployAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.RestartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.RedeployWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Starts a virtual machine in a VM scale set. + /// Reimages (upgrade the operating system) a specific virtual machine in a VM + /// scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -621,19 +628,23 @@ public static void Restart(this IVirtualMachineScaleSetVMsOperations operations, /// /// The instance ID of the virtual machine. /// - public static void Start(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + /// + /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// + public static void Reimage(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters)) { - operations.StartAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + operations.ReimageAsync(resourceGroupName, vmScaleSetName, instanceId, vmScaleSetVMReimageInput).GetAwaiter().GetResult(); } /// - /// Starts a virtual machine in a VM scale set. + /// Reimages (upgrade the operating system) a specific virtual machine in a VM + /// scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -641,23 +652,26 @@ public static void Start(this IVirtualMachineScaleSetVMsOperations operations, s /// /// The instance ID of the virtual machine. /// + /// + /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// /// /// The cancellation token. /// - public static async Task StartAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReimageAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.StartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.ReimageWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmScaleSetVMReimageInput, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Shuts down the virtual machine in the virtual machine scale set, moves it - /// to a new node, and powers it back on. + /// Allows you to re-image all the disks ( including data disks ) in the a VM + /// scale set instance. This operation is only supported for managed disks. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -665,20 +679,20 @@ public static void Start(this IVirtualMachineScaleSetVMsOperations operations, s /// /// The instance ID of the virtual machine. /// - public static void Redeploy(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + public static void ReimageAll(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - operations.RedeployAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + operations.ReimageAllAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// Shuts down the virtual machine in the virtual machine scale set, moves it - /// to a new node, and powers it back on. + /// Allows you to re-image all the disks ( including data disks ) in the a VM + /// scale set instance. This operation is only supported for managed disks. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -689,20 +703,19 @@ public static void Redeploy(this IVirtualMachineScaleSetVMsOperations operations /// /// The cancellation token. /// - public static async Task RedeployAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReimageAllAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.RedeployWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.ReimageAllWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// The operation to retrieve SAS URIs of boot diagnostic logs for a virtual - /// machine in a VM scale set. + /// Restarts a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -710,25 +723,19 @@ public static void Redeploy(this IVirtualMachineScaleSetVMsOperations operations /// /// The instance ID of the virtual machine. /// - /// - /// Expiration duration in minutes for the SAS URIs with a value between 1 to - /// 1440 minutes. **Note:** If not specified, SAS URIs will be generated with a - /// default expiration duration of 120 minutes. - /// - public static RetrieveBootDiagnosticsDataResult RetrieveBootDiagnosticsData(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, int? sasUriExpirationTimeInMinutes = default(int?)) + public static void Restart(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - return operations.RetrieveBootDiagnosticsDataAsync(resourceGroupName, vmScaleSetName, instanceId, sasUriExpirationTimeInMinutes).GetAwaiter().GetResult(); + operations.RestartAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// The operation to retrieve SAS URIs of boot diagnostic logs for a virtual - /// machine in a VM scale set. + /// Restarts a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -736,30 +743,23 @@ public static void Redeploy(this IVirtualMachineScaleSetVMsOperations operations /// /// The instance ID of the virtual machine. /// - /// - /// Expiration duration in minutes for the SAS URIs with a value between 1 to - /// 1440 minutes. **Note:** If not specified, SAS URIs will be generated with a - /// default expiration duration of 120 minutes. - /// /// /// The cancellation token. /// - public static async Task RetrieveBootDiagnosticsDataAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, int? sasUriExpirationTimeInMinutes = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RestartAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.RetrieveBootDiagnosticsDataWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, sasUriExpirationTimeInMinutes, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.RestartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Performs maintenance on a virtual machine in a VM scale set. + /// The operation to retrieve SAS URIs of boot diagnostic logs for a virtual + /// machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -767,19 +767,25 @@ public static void Redeploy(this IVirtualMachineScaleSetVMsOperations operations /// /// The instance ID of the virtual machine. /// - public static void PerformMaintenance(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + /// + /// Expiration duration in minutes for the SAS URIs with a value between 1 to + /// 1440 minutes. **Note:** If not specified, SAS URIs will be generated with a + /// default expiration duration of 120 minutes. + /// + public static RetrieveBootDiagnosticsDataResult RetrieveBootDiagnosticsData(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, int? sasUriExpirationTimeInMinutes = default(int?)) { - operations.PerformMaintenanceAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + return operations.RetrieveBootDiagnosticsDataAsync(resourceGroupName, vmScaleSetName, instanceId, sasUriExpirationTimeInMinutes).GetAwaiter().GetResult(); } /// - /// Performs maintenance on a virtual machine in a VM scale set. + /// The operation to retrieve SAS URIs of boot diagnostic logs for a virtual + /// machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -787,23 +793,30 @@ public static void PerformMaintenance(this IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// + /// + /// Expiration duration in minutes for the SAS URIs with a value between 1 to + /// 1440 minutes. **Note:** If not specified, SAS URIs will be generated with a + /// default expiration duration of 120 minutes. + /// /// /// The cancellation token. /// - public static async Task PerformMaintenanceAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RetrieveBootDiagnosticsDataAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, int? sasUriExpirationTimeInMinutes = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.PerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.RetrieveBootDiagnosticsDataWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, sasUriExpirationTimeInMinutes, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// The operation to simulate the eviction of spot virtual machine in a VM - /// scale set. + /// Run command on a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -811,20 +824,22 @@ public static void PerformMaintenance(this IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// - public static void SimulateEviction(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + /// + /// Parameters supplied to the Run command operation. + /// + public static RunCommandResult RunCommand(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters) { - operations.SimulateEvictionAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + return operations.RunCommandAsync(resourceGroupName, vmScaleSetName, instanceId, parameters).GetAwaiter().GetResult(); } /// - /// The operation to simulate the eviction of spot virtual machine in a VM - /// scale set. + /// Run command on a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -832,22 +847,29 @@ public static void SimulateEviction(this IVirtualMachineScaleSetVMsOperations op /// /// The instance ID of the virtual machine. /// + /// + /// Parameters supplied to the Run command operation. + /// /// /// The cancellation token. /// - public static async Task SimulateEvictionAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RunCommandAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.SimulateEvictionWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.RunCommandWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Attach and detach data disks to/from a virtual machine in a VM scale set. + /// The operation to simulate the eviction of spot virtual machine in a VM + /// scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -855,23 +877,20 @@ public static void SimulateEviction(this IVirtualMachineScaleSetVMsOperations op /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the attach and detach data disks operation on a - /// Virtual Machine Scale Sets VM. - /// - public static StorageProfile AttachDetachDataDisks(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters) + public static void SimulateEviction(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - return operations.AttachDetachDataDisksAsync(resourceGroupName, vmScaleSetName, instanceId, parameters).GetAwaiter().GetResult(); + operations.SimulateEvictionAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// Attach and detach data disks to/from a virtual machine in a VM scale set. + /// The operation to simulate the eviction of spot virtual machine in a VM + /// scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -879,29 +898,22 @@ public static StorageProfile AttachDetachDataDisks(this IVirtualMachineScaleSetV /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the attach and detach data disks operation on a - /// Virtual Machine Scale Sets VM. - /// /// /// The cancellation token. /// - public static async Task AttachDetachDataDisksAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task SimulateEvictionAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.AttachDetachDataDisksWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.SimulateEvictionWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Run command on a virtual machine in a VM scale set. + /// Starts a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -909,22 +921,19 @@ public static StorageProfile AttachDetachDataDisks(this IVirtualMachineScaleSetV /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the Run command operation. - /// - public static RunCommandResult RunCommand(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters) + public static void Start(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - return operations.RunCommandAsync(resourceGroupName, vmScaleSetName, instanceId, parameters).GetAwaiter().GetResult(); + operations.StartAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// Run command on a virtual machine in a VM scale set. + /// Starts a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -932,29 +941,22 @@ public static RunCommandResult RunCommand(this IVirtualMachineScaleSetVMsOperati /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the Run command operation. - /// /// /// The cancellation token. /// - public static async Task RunCommandAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task StartAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.RunCommandWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.StartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Reimages (upgrade the operating system) a specific virtual machine in a VM - /// scale set. + /// Updates a virtual machine of a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -962,23 +964,32 @@ public static RunCommandResult RunCommand(this IVirtualMachineScaleSetVMsOperati /// /// The instance ID of the virtual machine. /// - /// - /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// + /// Parameters supplied to the Update Virtual Machine Scale Sets VM operation. + /// + /// + /// The ETag of the transformation. Omit this value to always overwrite the + /// current resource. Specify the last-seen ETag value to prevent accidentally + /// overwriting concurrent changes. + /// + /// + /// Set to '*' to allow a new record set to be created, but to prevent updating + /// an existing record set. Other values will result in error from server as + /// they are not supported. /// - public static void BeginReimage(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters)) + public static VirtualMachineScaleSetVM BeginUpdate(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string)) { - operations.BeginReimageAsync(resourceGroupName, vmScaleSetName, instanceId, vmScaleSetVMReimageInput).GetAwaiter().GetResult(); + return operations.BeginUpdateAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, ifMatch, ifNoneMatch).GetAwaiter().GetResult(); } /// - /// Reimages (upgrade the operating system) a specific virtual machine in a VM - /// scale set. + /// Updates a virtual machine of a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -986,26 +997,38 @@ public static RunCommandResult RunCommand(this IVirtualMachineScaleSetVMsOperati /// /// The instance ID of the virtual machine. /// - /// - /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// + /// Parameters supplied to the Update Virtual Machine Scale Sets VM operation. + /// + /// + /// The ETag of the transformation. Omit this value to always overwrite the + /// current resource. Specify the last-seen ETag value to prevent accidentally + /// overwriting concurrent changes. + /// + /// + /// Set to '*' to allow a new record set to be created, but to prevent updating + /// an existing record set. Other values will result in error from server as + /// they are not supported. /// /// /// The cancellation token. /// - public static async Task BeginReimageAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginUpdateAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginReimageWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmScaleSetVMReimageInput, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, ifMatch, ifNoneMatch, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Allows you to re-image all the disks ( including data disks ) in the a VM - /// scale set instance. This operation is only supported for managed disks. + /// Deletes a virtual machine from a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1013,20 +1036,23 @@ public static RunCommandResult RunCommand(this IVirtualMachineScaleSetVMsOperati /// /// The instance ID of the virtual machine. /// - public static void BeginReimageAll(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + /// + /// Optional parameter to force delete a virtual machine from a VM scale set. + /// (Feature in Preview) + /// + public static void BeginDelete(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?)) { - operations.BeginReimageAllAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + operations.BeginDeleteAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion).GetAwaiter().GetResult(); } /// - /// Allows you to re-image all the disks ( including data disks ) in the a VM - /// scale set instance. This operation is only supported for managed disks. + /// Deletes a virtual machine from a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1034,12 +1060,16 @@ public static void BeginReimageAll(this IVirtualMachineScaleSetVMsOperations ope /// /// The instance ID of the virtual machine. /// + /// + /// Optional parameter to force delete a virtual machine from a VM scale set. + /// (Feature in Preview) + /// /// /// The cancellation token. /// - public static async Task BeginReimageAllAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginDeleteAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginReimageAllWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1050,7 +1080,7 @@ public static void BeginReimageAll(this IVirtualMachineScaleSetVMsOperations ope /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1071,7 +1101,7 @@ public static VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders BeginApprove /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1091,16 +1121,13 @@ public static VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders BeginApprove } /// - /// Deallocates a specific virtual machine in a VM scale set. Shuts down the - /// virtual machine and releases the compute resources it uses. You are not - /// billed for the compute resources of this virtual machine once it is - /// deallocated. + /// Attach and detach data disks to/from a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1108,22 +1135,23 @@ public static VirtualMachineScaleSetVMsApproveRollingUpgradeHeaders BeginApprove /// /// The instance ID of the virtual machine. /// - public static void BeginDeallocate(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + /// + /// Parameters supplied to the attach and detach data disks operation on a + /// Virtual Machine Scale Sets VM. + /// + public static StorageProfile BeginAttachDetachDataDisks(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters) { - operations.BeginDeallocateAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + return operations.BeginAttachDetachDataDisksAsync(resourceGroupName, vmScaleSetName, instanceId, parameters).GetAwaiter().GetResult(); } /// - /// Deallocates a specific virtual machine in a VM scale set. Shuts down the - /// virtual machine and releases the compute resources it uses. You are not - /// billed for the compute resources of this virtual machine once it is - /// deallocated. + /// Attach and detach data disks to/from a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1131,96 +1159,78 @@ public static void BeginDeallocate(this IVirtualMachineScaleSetVMsOperations ope /// /// The instance ID of the virtual machine. /// + /// + /// Parameters supplied to the attach and detach data disks operation on a + /// Virtual Machine Scale Sets VM. + /// /// /// The cancellation token. /// - public static async Task BeginDeallocateAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginAttachDetachDataDisksAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginDeallocateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.BeginAttachDetachDataDisksWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Updates a virtual machine of a VM scale set. + /// Deallocates a specific virtual machine in a VM scale set. Shuts down the + /// virtual machine and releases the compute resources it uses. You are not + /// billed for the compute resources of this virtual machine once it is + /// deallocated. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be create or - /// updated. + /// The name of the VM scale set. /// /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the Update Virtual Machine Scale Sets VM operation. - /// - /// - /// The ETag of the transformation. Omit this value to always overwrite the - /// current resource. Specify the last-seen ETag value to prevent accidentally - /// overwriting concurrent changes. - /// - /// - /// Set to '*' to allow a new record set to be created, but to prevent updating - /// an existing record set. Other values will result in error from server as - /// they are not supported. - /// - public static VirtualMachineScaleSetVM BeginUpdate(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string)) + public static void BeginDeallocate(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - return operations.BeginUpdateAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, ifMatch, ifNoneMatch).GetAwaiter().GetResult(); + operations.BeginDeallocateAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// Updates a virtual machine of a VM scale set. + /// Deallocates a specific virtual machine in a VM scale set. Shuts down the + /// virtual machine and releases the compute resources it uses. You are not + /// billed for the compute resources of this virtual machine once it is + /// deallocated. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set where the extension should be create or - /// updated. + /// The name of the VM scale set. /// /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the Update Virtual Machine Scale Sets VM operation. - /// - /// - /// The ETag of the transformation. Omit this value to always overwrite the - /// current resource. Specify the last-seen ETag value to prevent accidentally - /// overwriting concurrent changes. - /// - /// - /// Set to '*' to allow a new record set to be created, but to prevent updating - /// an existing record set. Other values will result in error from server as - /// they are not supported. - /// /// /// The cancellation token. /// - public static async Task BeginUpdateAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVM parameters, string ifMatch = default(string), string ifNoneMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginDeallocateAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, ifMatch, ifNoneMatch, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.BeginDeallocateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Deletes a virtual machine from a VM scale set. + /// Performs maintenance on a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1228,23 +1238,19 @@ public static void BeginDeallocate(this IVirtualMachineScaleSetVMsOperations ope /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM scale set. - /// (Feature in Preview) - /// - public static void BeginDelete(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?)) + public static void BeginPerformMaintenance(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - operations.BeginDeleteAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion).GetAwaiter().GetResult(); + operations.BeginPerformMaintenanceAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// Deletes a virtual machine from a VM scale set. + /// Performs maintenance on a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1252,30 +1258,24 @@ public static void BeginDeallocate(this IVirtualMachineScaleSetVMsOperations ope /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM scale set. - /// (Feature in Preview) - /// /// /// The cancellation token. /// - public static async Task BeginDeleteAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginPerformMaintenanceAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginPerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// /// Power off (stop) a virtual machine in a VM scale set. Note that resources /// are still attached and you are getting charged for the resources. Instead, - /// use deallocate to release resources and avoid charges. Additionally, this - /// operation is not allowed on a virtual machine that is being deallocated or - /// already has been deallocated. + /// use deallocate to release resources and avoid charges. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1288,7 +1288,7 @@ public static void BeginDeallocate(this IVirtualMachineScaleSetVMsOperations ope /// indicates non-graceful shutdown whereas false indicates otherwise. Default /// value for this flag is false if not specified /// - public static void BeginPowerOff(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = false) + public static void BeginPowerOff(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = default(bool?)) { operations.BeginPowerOffAsync(resourceGroupName, vmScaleSetName, instanceId, skipShutdown).GetAwaiter().GetResult(); } @@ -1296,15 +1296,13 @@ public static void BeginPowerOff(this IVirtualMachineScaleSetVMsOperations opera /// /// Power off (stop) a virtual machine in a VM scale set. Note that resources /// are still attached and you are getting charged for the resources. Instead, - /// use deallocate to release resources and avoid charges. Additionally, this - /// operation is not allowed on a virtual machine that is being deallocated or - /// already has been deallocated. + /// use deallocate to release resources and avoid charges. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1320,19 +1318,20 @@ public static void BeginPowerOff(this IVirtualMachineScaleSetVMsOperations opera /// /// The cancellation token. /// - public static async Task BeginPowerOffAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = false, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginPowerOffAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? skipShutdown = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { (await operations.BeginPowerOffWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, skipShutdown, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Restarts a virtual machine in a VM scale set. + /// Shuts down the virtual machine in the virtual machine scale set, moves it + /// to a new node, and powers it back on. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1340,19 +1339,20 @@ public static void BeginPowerOff(this IVirtualMachineScaleSetVMsOperations opera /// /// The instance ID of the virtual machine. /// - public static void BeginRestart(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + public static void BeginRedeploy(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - operations.BeginRestartAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + operations.BeginRedeployAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// Restarts a virtual machine in a VM scale set. + /// Shuts down the virtual machine in the virtual machine scale set, moves it + /// to a new node, and powers it back on. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1363,19 +1363,20 @@ public static void BeginRestart(this IVirtualMachineScaleSetVMsOperations operat /// /// The cancellation token. /// - public static async Task BeginRestartAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginRedeployAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginRedeployWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Starts a virtual machine in a VM scale set. + /// Reimages (upgrade the operating system) a specific virtual machine in a VM + /// scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1383,19 +1384,23 @@ public static void BeginRestart(this IVirtualMachineScaleSetVMsOperations operat /// /// The instance ID of the virtual machine. /// - public static void BeginStart(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + /// + /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// + public static void BeginReimage(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters)) { - operations.BeginStartAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + operations.BeginReimageAsync(resourceGroupName, vmScaleSetName, instanceId, vmScaleSetVMReimageInput).GetAwaiter().GetResult(); } /// - /// Starts a virtual machine in a VM scale set. + /// Reimages (upgrade the operating system) a specific virtual machine in a VM + /// scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1403,23 +1408,26 @@ public static void BeginStart(this IVirtualMachineScaleSetVMsOperations operatio /// /// The instance ID of the virtual machine. /// + /// + /// Parameters for the Reimaging Virtual machine in ScaleSet. + /// /// /// The cancellation token. /// - public static async Task BeginStartAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginReimageAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginStartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginReimageWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, vmScaleSetVMReimageInput, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Shuts down the virtual machine in the virtual machine scale set, moves it - /// to a new node, and powers it back on. + /// Allows you to re-image all the disks ( including data disks ) in the a VM + /// scale set instance. This operation is only supported for managed disks. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1427,20 +1435,20 @@ public static void BeginStart(this IVirtualMachineScaleSetVMsOperations operatio /// /// The instance ID of the virtual machine. /// - public static void BeginRedeploy(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + public static void BeginReimageAll(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - operations.BeginRedeployAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + operations.BeginReimageAllAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// Shuts down the virtual machine in the virtual machine scale set, moves it - /// to a new node, and powers it back on. + /// Allows you to re-image all the disks ( including data disks ) in the a VM + /// scale set instance. This operation is only supported for managed disks. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1451,19 +1459,19 @@ public static void BeginRedeploy(this IVirtualMachineScaleSetVMsOperations opera /// /// The cancellation token. /// - public static async Task BeginRedeployAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginReimageAllAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginRedeployWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginReimageAllWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Performs maintenance on a virtual machine in a VM scale set. + /// Restarts a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1471,19 +1479,19 @@ public static void BeginRedeploy(this IVirtualMachineScaleSetVMsOperations opera /// /// The instance ID of the virtual machine. /// - public static void BeginPerformMaintenance(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + public static void BeginRestart(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - operations.BeginPerformMaintenanceAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + operations.BeginRestartAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// Performs maintenance on a virtual machine in a VM scale set. + /// Restarts a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1494,19 +1502,19 @@ public static void BeginPerformMaintenance(this IVirtualMachineScaleSetVMsOperat /// /// The cancellation token. /// - public static async Task BeginPerformMaintenanceAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginRestartAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginPerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Attach and detach data disks to/from a virtual machine in a VM scale set. + /// Run command on a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1515,22 +1523,21 @@ public static void BeginPerformMaintenance(this IVirtualMachineScaleSetVMsOperat /// The instance ID of the virtual machine. /// /// - /// Parameters supplied to the attach and detach data disks operation on a - /// Virtual Machine Scale Sets VM. + /// Parameters supplied to the Run command operation. /// - public static StorageProfile BeginAttachDetachDataDisks(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters) + public static RunCommandResult BeginRunCommand(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters) { - return operations.BeginAttachDetachDataDisksAsync(resourceGroupName, vmScaleSetName, instanceId, parameters).GetAwaiter().GetResult(); + return operations.BeginRunCommandAsync(resourceGroupName, vmScaleSetName, instanceId, parameters).GetAwaiter().GetResult(); } /// - /// Attach and detach data disks to/from a virtual machine in a VM scale set. + /// Run command on a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1539,28 +1546,27 @@ public static StorageProfile BeginAttachDetachDataDisks(this IVirtualMachineScal /// The instance ID of the virtual machine. /// /// - /// Parameters supplied to the attach and detach data disks operation on a - /// Virtual Machine Scale Sets VM. + /// Parameters supplied to the Run command operation. /// /// /// The cancellation token. /// - public static async Task BeginAttachDetachDataDisksAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, AttachDetachDataDisksRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginRunCommandAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginAttachDetachDataDisksWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginRunCommandWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Run command on a virtual machine in a VM scale set. + /// Starts a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1568,22 +1574,19 @@ public static StorageProfile BeginAttachDetachDataDisks(this IVirtualMachineScal /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the Run command operation. - /// - public static RunCommandResult BeginRunCommand(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters) + public static void BeginStart(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - return operations.BeginRunCommandAsync(resourceGroupName, vmScaleSetName, instanceId, parameters).GetAwaiter().GetResult(); + operations.BeginStartAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// - /// Run command on a virtual machine in a VM scale set. + /// Starts a virtual machine in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1591,18 +1594,12 @@ public static RunCommandResult BeginRunCommand(this IVirtualMachineScaleSetVMsOp /// /// The instance ID of the virtual machine. /// - /// - /// Parameters supplied to the Run command operation. - /// /// /// The cancellation token. /// - public static async Task BeginRunCommandAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, RunCommandInput parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginStartAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginRunCommandWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.BeginStartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetsOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetsOperations.cs index 65c40c7ec851..ee9971bbae39 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetsOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetsOperations.cs @@ -55,7 +55,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// specified location. /// /// - /// The location for which VM scale sets under the subscription are queried. + /// The name of Azure region. /// /// /// Headers that will be added to request. @@ -80,21 +80,21 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// public async Task>> ListByLocationWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } if (location != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(location, "^[-\\w\\._]+$")) + if (location.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "location", "^[-\\w\\._]+$"); + throw new ValidationException(ValidationRules.MinLength, "location", 1); } } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -103,16 +103,16 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByLocation", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/virtualMachineScaleSets").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); List _queryParameters = new List(); if (apiVersion != null) { @@ -244,115 +244,11 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Create or update a VM scale set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set to create or update. - /// - /// - /// The scale set object. - /// - /// - /// The ETag of the transformation. Omit this value to always overwrite the - /// current resource. Specify the last-seen ETag value to prevent accidentally - /// overwriting concurrent changes. - /// - /// - /// Set to '*' to allow a new record set to be created, but to prevent updating - /// an existing record set. Other values will result in error from server as - /// they are not supported. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSet parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, parameters, ifMatch, ifNoneMatch, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Update a VM scale set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set to create or update. - /// - /// - /// The scale set object. - /// - /// - /// The ETag of the transformation. Omit this value to always overwrite the - /// current resource. Specify the last-seen ETag value to prevent accidentally - /// overwriting concurrent changes. - /// - /// - /// Set to '*' to allow a new record set to be created, but to prevent updating - /// an existing record set. Other values will result in error from server as - /// they are not supported. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSetUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, parameters, ifMatch, ifNoneMatch, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Deletes a VM scale set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// Optional parameter to force delete a VM scale set. (Feature in Preview) - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Display information about a virtual machine scale set. + /// Gets a list of all VM Scale Sets in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of VM Scale Sets. Do this till nextLink is null to fetch all the + /// VM Scale Sets. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The expand expression to apply on the operation. 'UserData' retrieves the - /// UserData property of the VM scale set that was provided by the user during - /// the VM scale set Create/Update operation. Possible values include: - /// 'userData' - /// /// /// Headers that will be added to request. /// @@ -374,16 +270,8 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAllWithHttpMessagesAsync(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"); @@ -396,28 +284,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAll", 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}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/virtualMachineScaleSets").ToString(); _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 (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -511,7 +390,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -524,7 +403,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -544,75 +423,10 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Deallocates specific virtual machines in a VM scale set. Shuts down the - /// virtual machines and releases the compute resources. You are not billed for - /// the compute resources that this virtual machine scale set deallocates. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// Optional parameter to hibernate a virtual machine from the VM scale set. - /// (This feature is available for VMSS with Flexible OrchestrationMode only) - /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? hibernate = default(bool?), IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeallocateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, hibernate, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Deletes virtual machines in a VM scale set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The virtual machine scale set instance ids. - /// - /// - /// Optional parameter to force delete virtual machines from the VM scale set. - /// (Feature in Preview) - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets the status of a VM scale set instance. + /// Gets a list of all VM scale sets under a resource group. /// /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. + /// The name of the resource group. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -635,19 +449,26 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (vmScaleSetName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } string apiVersion = "2024-11-01"; // Tracing @@ -657,18 +478,16 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetInstanceView", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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}/instanceView").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -767,7 +586,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -780,7 +599,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -800,10 +619,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Gets a list of all VM scale sets under a resource group. + /// Display information about a virtual machine scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The expand expression to apply on the operation. 'UserData' retrieves the + /// UserData property of the VM scale set that was provided by the user during + /// the VM scale set Create/Update operation. Possible values include: + /// 'userData' /// /// /// Headers that will be added to request. @@ -826,16 +654,31 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (vmScaleSetName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -844,21 +687,28 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("vmScaleSetName", vmScaleSetName); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -952,7 +802,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -965,7 +815,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -985,11 +835,144 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Gets a list of all VM Scale Sets in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of VM Scale Sets. Do this till nextLink is null to fetch all the - /// VM Scale Sets. + /// Create or update a VM scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The scale set object. + /// + /// + /// The ETag of the transformation. Omit this value to always overwrite the + /// current resource. Specify the last-seen ETag value to prevent accidentally + /// overwriting concurrent changes. + /// + /// + /// Set to '*' to allow a new record set to be created, but to prevent updating + /// an existing record set. Other values will result in error from server as + /// they are not supported. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSet parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, parameters, ifMatch, ifNoneMatch, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update a VM scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The scale set object. + /// + /// + /// The ETag of the transformation. Omit this value to always overwrite the + /// current resource. Specify the last-seen ETag value to prevent accidentally + /// overwriting concurrent changes. + /// + /// + /// Set to '*' to allow a new record set to be created, but to prevent updating + /// an existing record set. Other values will result in error from server as + /// they are not supported. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSetUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, parameters, ifMatch, ifNoneMatch, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a VM scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// Optional parameter to force delete a VM scale set. (Feature in Preview) + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Approve upgrade on deferred rolling upgrades for OS disks in the virtual + /// machines in a VM scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> ApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationHeaderResponse _response = await BeginApproveRollingUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Converts SinglePlacementGroup property to false for a existing virtual + /// machine scale set. /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// Id of the placement group in which you want future virtual machine + /// instances to be placed. To query placement group Id, please use Virtual + /// Machine Scale Set VMs - Get API. If not provided, the platform will choose + /// one with maximum number of virtual machine instances. + /// /// /// Headers that will be added to request. /// @@ -999,9 +982,6 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1011,13 +991,37 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task ConvertToSinglePlacementGroupWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string activePlacementGroupId = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (vmScaleSetName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + } string apiVersion = "2024-11-01"; + VMScaleSetConvertToSinglePlacementGroupInput parameters = new VMScaleSetConvertToSinglePlacementGroupInput(); + if (activePlacementGroupId != null) + { + parameters.ActivePlacementGroupId = activePlacementGroupId; + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1026,13 +1030,18 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("vmScaleSetName", vmScaleSetName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAll", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ConvertToSinglePlacementGroup", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/virtualMachineScaleSets").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/convertToSinglePlacementGroup").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -1045,7 +1054,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1076,6 +1085,12 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -1131,31 +1146,13 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1164,49 +1161,132 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Gets a list of SKUs available for your VM scale set, including the minimum - /// and maximum VM instances allowed for each SKU. + /// Deallocates specific virtual machines in a VM scale set. Shuts down the + /// virtual machines and releases the compute resources. You are not billed for + /// the compute resources that this virtual machine scale set deallocates. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// + /// + /// Optional parameter to hibernate a virtual machine from the VM scale set. + /// (This feature is available for VMSS with Flexible OrchestrationMode only) + /// + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. + /// /// - /// Headers that will be added to request. + /// The headers that will be added to request. /// /// /// The cancellation token. /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// 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>> ListSkusWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? hibernate = default(bool?), IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { + // Send request + AzureOperationResponse _response = await BeginDeallocateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, hibernate, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes virtual machines in a VM scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The virtual machine scale set instance ids. + /// + /// + /// Optional parameter to force delete virtual machines from the VM scale set. + /// (Feature in Preview) + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Manual platform update domain walk to update virtual machines in a service + /// fabric virtual machine scale set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The platform update domain for which a manual recovery walk is requested + /// + /// + /// The zone in which the manual recovery walk is requested for cross zone + /// virtual machine scale set + /// + /// + /// The placement group id for which the manual recovery walk is requested. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// 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> ForceRecoveryServiceFabricPlatformUpdateDomainWalkWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, int platformUpdateDomain, string zone = default(string), string placementGroupId = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; // Tracing @@ -1216,23 +1296,35 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("platformUpdateDomain", platformUpdateDomain); + tracingParameters.Add("zone", zone); + tracingParameters.Add("placementGroupId", placementGroupId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListSkus", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ForceRecoveryServiceFabricPlatformUpdateDomainWalk", 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}/skus").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/forceRecoveryServiceFabricPlatformUpdateDomainWalk").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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))); } + _queryParameters.Add(string.Format("platformUpdateDomain={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(platformUpdateDomain, Client.SerializationSettings).Trim('"')))); + if (zone != null) + { + _queryParameters.Add(string.Format("zone={0}", System.Uri.EscapeDataString(zone))); + } + if (placementGroupId != null) + { + _queryParameters.Add(string.Format("placementGroupId={0}", System.Uri.EscapeDataString(placementGroupId))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -1240,7 +1332,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1326,7 +1418,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1339,7 +1431,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1359,10 +1451,10 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Gets list of OS upgrades on a VM scale set instance. + /// Gets the status of a VM scale set instance. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1388,19 +1480,30 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> GetOSUpgradeHistoryWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; // Tracing @@ -1410,18 +1513,18 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetOSUpgradeHistory", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetInstanceView", 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}/osUpgradeHistory").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/instanceView").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -1520,7 +1623,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1533,7 +1636,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1553,81 +1656,17 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Power off (stop) one or more virtual machines in a VM scale set. Note that - /// resources are still attached and you are getting charged for the resources. - /// Instead, use deallocate to release resources and avoid charges. - /// Additionally, this operation is not allowed on virtual machines in a VM - /// scale set that are being deallocated or have already been deallocated. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The parameter to request non-graceful VM shutdown. True value for this flag - /// indicates non-graceful shutdown whereas false indicates otherwise. Default - /// value for this flag is false if not specified - /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? skipShutdown = false, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginPowerOffWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, skipShutdown, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Restarts one or more virtual machines in a VM scale set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task RestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Starts one or more virtual machines in a VM scale set. + /// Upgrades one or more virtual machines to the latest SKU set in the VM scale + /// set model. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. + /// The virtual machine scale set instance ids. /// /// /// The headers that will be added to request. @@ -1635,50 +1674,234 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The cancellation token. /// - public async Task StartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task UpdateInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginStartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginUpdateInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Reapplies the Virtual Machine Scale Set Virtual Machine Profile to the - /// Virtual Machine Instances + /// Gets list of OS upgrades on a VM scale set instance. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// /// - /// The headers that will be added to request. + /// 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)) + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// 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>> GetOSUpgradeHistoryWithHttpMessagesAsync(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. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (vmScaleSetName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + } + string apiVersion = "2024-11-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("vmScaleSetName", vmScaleSetName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetOSUpgradeHistory", 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}/osUpgradeHistory").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); + 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("GET"); + _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) + { + 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 AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Perform maintenance on one or more virtual machines in a VM scale set. + /// Operation on instances which are not eligible for perform maintenance will + /// be failed. Please refer to best practices for more details: + /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. /// /// /// The headers that will be added to request. @@ -1686,25 +1909,29 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The cancellation token. /// - public async Task RedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginRedeployWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginPerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Perform maintenance on one or more virtual machines in a VM scale set. - /// Operation on instances which are not eligible for perform maintenance will - /// be failed. Please refer to best practices for more details: - /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications + /// Power off (stop) one or more virtual machines in a VM scale set. Note that + /// resources are still attached and you are getting charged for the resources. + /// Instead, use deallocate to release resources and avoid charges. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// + /// + /// The parameter to request non-graceful VM shutdown. True value for this flag + /// indicates non-graceful shutdown whereas false indicates otherwise. Default + /// value for this flag is false if not specified + /// /// /// The virtual machine scale set instance ids. Omitting the virtual machine /// scale set instance ids will result in the operation being performed on all @@ -1716,25 +1943,50 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The cancellation token. /// - public async Task PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? skipShutdown = default(bool?), IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginPerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginPowerOffWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, skipShutdown, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Upgrades one or more virtual machines to the latest SKU set in the VM scale - /// set model. + /// Reapplies the Virtual Machine Scale Set Virtual Machine Profile to the + /// Virtual Machine Instances /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// 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. + /// + /// + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// /// - /// The virtual machine scale set instance ids. + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. /// /// /// The headers that will be added to request. @@ -1742,10 +1994,10 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The cancellation token. /// - public async Task UpdateInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task RedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginUpdateInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginRedeployWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -1755,7 +2007,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// have a ephemeral OS disk the virtual machine is reset to initial state. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1781,7 +2033,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// a VM scale set. This operation is only supported for managed disks. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1805,11 +2057,10 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Approve upgrade on deferred rolling upgrades for OS disks in the virtual - /// machines in a VM scale set. + /// Restarts one or more virtual machines in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1825,33 +2076,48 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The cancellation token. /// - public async Task> ApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task RestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Changes ServiceState property for a given service + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The input object for SetOrchestrationServiceState API. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task SetOrchestrationServiceStateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationHeaderResponse _response = await BeginApproveRollingUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginSetOrchestrationServiceStateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Manual platform update domain walk to update virtual machines in a service - /// fabric virtual machine scale set. + /// Gets a list of SKUs available for your VM scale set, including the minimum + /// and maximum VM instances allowed for each SKU. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The platform update domain for which a manual recovery walk is requested - /// - /// - /// The zone in which the manual recovery walk is requested for cross zone - /// virtual machine scale set - /// - /// - /// The placement group id for which the manual recovery walk is requested. - /// /// /// Headers that will be added to request. /// @@ -1873,19 +2139,30 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ForceRecoveryServiceFabricPlatformUpdateDomainWalkWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, int platformUpdateDomain, string zone = default(string), string placementGroupId = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListSkusWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; // Tracing @@ -1895,35 +2172,23 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("platformUpdateDomain", platformUpdateDomain); - tracingParameters.Add("zone", zone); - tracingParameters.Add("placementGroupId", placementGroupId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ForceRecoveryServiceFabricPlatformUpdateDomainWalk", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListSkus", 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}/forceRecoveryServiceFabricPlatformUpdateDomainWalk").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/skus").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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))); } - _queryParameters.Add(string.Format("platformUpdateDomain={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(platformUpdateDomain, Client.SerializationSettings).Trim('"')))); - if (zone != null) - { - _queryParameters.Add(string.Format("zone={0}", System.Uri.EscapeDataString(zone))); - } - if (placementGroupId != null) - { - _queryParameters.Add(string.Format("placementGroupId={0}", System.Uri.EscapeDataString(placementGroupId))); - } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -1931,7 +2196,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2017,7 +2282,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2030,7 +2295,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -2050,208 +2315,18 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Converts SinglePlacementGroup property to false for a existing virtual - /// machine scale set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine scale set to create or update. - /// - /// - /// Id of the placement group in which you want future virtual machine - /// instances to be placed. To query placement group Id, please use Virtual - /// Machine Scale Set VMs - Get API. If not provided, the platform will choose - /// one with maximum number of virtual machine instances. - /// - /// - /// 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 ConvertToSinglePlacementGroupWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string activePlacementGroupId = default(string), 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 = "2024-11-01"; - VMScaleSetConvertToSinglePlacementGroupInput parameters = new VMScaleSetConvertToSinglePlacementGroupInput(); - if (activePlacementGroupId != null) - { - parameters.ActivePlacementGroupId = activePlacementGroupId; - } - // 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("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ConvertToSinglePlacementGroup", 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}/convertToSinglePlacementGroup").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; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // 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) - { - 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 AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Changes ServiceState property for a given service + /// Starts one or more virtual machines in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine scale set to create or update. - /// - /// - /// The input object for SetOrchestrationServiceState API. + /// The name of the VM scale set. + /// + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. /// /// /// The headers that will be added to request. @@ -2259,10 +2334,10 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The cancellation token. /// - public async Task SetOrchestrationServiceStateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task StartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginSetOrchestrationServiceStateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginStartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -2270,10 +2345,10 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// Create or update a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -2309,12 +2384,27 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSet parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSet parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -2327,10 +2417,6 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { parameters.Validate(); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -2339,21 +2425,21 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("ifNoneMatch", ifNoneMatch); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", 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}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -2474,7 +2560,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2517,6 +2603,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -2528,10 +2627,10 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// Update a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -2567,12 +2666,27 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSetUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSetUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); @@ -2581,10 +2695,6 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -2593,21 +2703,21 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("ifNoneMatch", ifNoneMatch); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -2728,7 +2838,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2753,6 +2863,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -2764,7 +2887,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// Deletes a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -2792,17 +2915,28 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; // Tracing @@ -2812,28 +2946,28 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("forceDeletion", forceDeletion); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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 (forceDeletion != null) - { - _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (forceDeletion != null) + { + _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -2942,20 +3076,15 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Deallocates specific virtual machines in a VM scale set. Shuts down the - /// virtual machines and releases the compute resources. You are not billed for - /// the compute resources that this virtual machine scale set deallocates. + /// Approve upgrade on deferred rolling upgrades for OS disks in the virtual + /// machines in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// Optional parameter to hibernate a virtual machine from the VM scale set. - /// (This feature is available for VMSS with Flexible OrchestrationMode only) - /// /// /// The virtual machine scale set instance ids. Omitting the virtual machine /// scale set instance ids will result in the operation being performed on all @@ -2979,19 +3108,30 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? hibernate = default(bool?), IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); @@ -3007,25 +3147,20 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("hibernate", hibernate); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDeallocate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginApproveRollingUpgrade", 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}/deallocate").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/approveRollingUpgrade").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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 (hibernate != null) - { - _queryParameters.Add(string.Format("hibernate={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(hibernate, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -3094,7 +3229,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -3129,13 +3264,26 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + 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); @@ -3144,20 +3292,24 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Deletes virtual machines in a VM scale set. + /// Deallocates specific virtual machines in a VM scale set. Shuts down the + /// virtual machines and releases the compute resources. You are not billed for + /// the compute resources that this virtual machine scale set deallocates. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The virtual machine scale set instance ids. + /// + /// Optional parameter to hibernate a virtual machine from the VM scale set. + /// (This feature is available for VMSS with Flexible OrchestrationMode only) /// - /// - /// Optional parameter to force delete virtual machines from the VM scale set. - /// (Feature in Preview) + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. /// /// /// Headers that will be added to request. @@ -3177,28 +3329,36 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? hibernate = default(bool?), IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (vmScaleSetName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (instanceIds == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "instanceIds"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; - VirtualMachineScaleSetVMInstanceRequiredIDs vmInstanceIDs = new VirtualMachineScaleSetVMInstanceRequiredIDs(); + VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { + vmInstanceIDs = new VirtualMachineScaleSetVMInstanceIDs(); vmInstanceIDs.InstanceIds = instanceIds; } // Tracing @@ -3208,29 +3368,29 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("forceDeletion", forceDeletion); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("hibernate", hibernate); tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteInstances", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginDeallocate", 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}/delete").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/deallocate").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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 (forceDeletion != null) - { - _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (hibernate != null) + { + _queryParameters.Add(string.Format("hibernate={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(hibernate, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -3345,27 +3505,20 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Power off (stop) one or more virtual machines in a VM scale set. Note that - /// resources are still attached and you are getting charged for the resources. - /// Instead, use deallocate to release resources and avoid charges. - /// Additionally, this operation is not allowed on virtual machines in a VM - /// scale set that are being deallocated or have already been deallocated. + /// Deletes virtual machines in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The parameter to request non-graceful VM shutdown. True value for this flag - /// indicates non-graceful shutdown whereas false indicates otherwise. Default - /// value for this flag is false if not specified - /// /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. + /// The virtual machine scale set instance ids. + /// + /// + /// Optional parameter to force delete virtual machines from the VM scale set. + /// (Feature in Preview) /// /// /// Headers that will be added to request. @@ -3385,25 +3538,39 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? skipShutdown = false, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } - if (Client.SubscriptionId == null) + if (instanceIds == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "instanceIds"); } string apiVersion = "2024-11-01"; - VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); + VirtualMachineScaleSetVMInstanceRequiredIDs vmInstanceIDs = new VirtualMachineScaleSetVMInstanceRequiredIDs(); if (instanceIds != null) { - vmInstanceIDs = new VirtualMachineScaleSetVMInstanceIDs(); vmInstanceIDs.InstanceIds = instanceIds; } // Tracing @@ -3413,29 +3580,29 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("skipShutdown", skipShutdown); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("forceDeletion", forceDeletion); tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginPowerOff", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteInstances", 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}/poweroff").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/delete").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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 (skipShutdown != null) - { - _queryParameters.Add(string.Format("skipShutdown={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skipShutdown, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (forceDeletion != null) + { + _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -3550,18 +3717,17 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Restarts one or more virtual machines in a VM scale set. + /// Upgrades one or more virtual machines to the latest SKU set in the VM scale + /// set model. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. + /// The virtual machine scale set instance ids. /// /// /// Headers that will be added to request. @@ -3581,25 +3747,39 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginUpdateInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } - if (Client.SubscriptionId == null) + if (instanceIds == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "instanceIds"); } string apiVersion = "2024-11-01"; - VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); + VirtualMachineScaleSetVMInstanceRequiredIDs vmInstanceIDs = new VirtualMachineScaleSetVMInstanceRequiredIDs(); if (instanceIds != null) { - vmInstanceIDs = new VirtualMachineScaleSetVMInstanceIDs(); vmInstanceIDs.InstanceIds = instanceIds; } // Tracing @@ -3609,19 +3789,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdateInstances", 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}/restart").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/manualupgrade").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -3741,10 +3921,13 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Starts one or more virtual machines in a VM scale set. + /// Perform maintenance on one or more virtual machines in a VM scale set. + /// Operation on instances which are not eligible for perform maintenance will + /// be failed. Please refer to best practices for more details: + /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -3772,19 +3955,30 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginPerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); @@ -3800,19 +3994,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginStart", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginPerformMaintenance", 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}/start").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/performMaintenance").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -3932,15 +4126,26 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Reapplies the Virtual Machine Scale Set Virtual Machine Profile to the - /// Virtual Machine Instances + /// Power off (stop) one or more virtual machines in a VM scale set. Note that + /// resources are still attached and you are getting charged for the resources. + /// Instead, use deallocate to release resources and avoid charges. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// + /// + /// The parameter to request non-graceful VM shutdown. True value for this flag + /// indicates non-graceful shutdown whereas false indicates otherwise. Default + /// value for this flag is false if not specified + /// + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. + /// /// /// Headers that will be added to request. /// @@ -3959,21 +4164,38 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// 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)) + public async Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? skipShutdown = default(bool?), IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } - if (Client.SubscriptionId == null) + string apiVersion = "2024-11-01"; + VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); + if (instanceIds != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + vmInstanceIDs = new VirtualMachineScaleSetVMInstanceIDs(); + vmInstanceIDs.InstanceIds = instanceIds; } - string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3981,23 +4203,29 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("skipShutdown", skipShutdown); + tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginReapply", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginPowerOff", 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(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/poweroff").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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 (skipShutdown != null) + { + _queryParameters.Add(string.Format("skipShutdown={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skipShutdown, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -4036,6 +4264,12 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(vmInstanceIDs != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(vmInstanceIDs, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -4091,26 +4325,13 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationHeaderResponse(); + var _result = new AzureOperationResponse(); _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); @@ -4119,20 +4340,15 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Shuts down all the virtual machines in the virtual machine scale set, moves - /// them to a new node, and powers them back on. + /// Reapplies the Virtual Machine Scale Set Virtual Machine Profile to the + /// Virtual Machine Instances /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. - /// /// /// Headers that will be added to request. /// @@ -4151,27 +4367,32 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginReapplyWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; - VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); - if (instanceIds != null) - { - vmInstanceIDs = new VirtualMachineScaleSetVMInstanceIDs(); - vmInstanceIDs.InstanceIds = instanceIds; - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4179,19 +4400,18 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRedeploy", tracingParameters); + 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}/redeploy").ToString(); + 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("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -4235,12 +4455,6 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(vmInstanceIDs != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(vmInstanceIDs, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -4296,13 +4510,26 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + 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); @@ -4311,13 +4538,11 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Perform maintenance on one or more virtual machines in a VM scale set. - /// Operation on instances which are not eligible for perform maintenance will - /// be failed. Please refer to best practices for more details: - /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications + /// Shuts down all the virtual machines in the virtual machine scale set, moves + /// them to a new node, and powers them back on. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -4345,19 +4570,30 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginPerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); @@ -4373,19 +4609,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginPerformMaintenance", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginRedeploy", 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}/performMaintenance").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/redeploy").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -4505,17 +4741,18 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Upgrades one or more virtual machines to the latest SKU set in the VM scale - /// set model. + /// Reimages (upgrade the operating system) one or more virtual machines in a + /// VM scale set which don't have a ephemeral OS disk, for virtual machines who + /// have a ephemeral OS disk the virtual machine is reset to initial state. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The virtual machine scale set instance ids. + /// + /// Parameters for Reimaging VM ScaleSet. /// /// /// Headers that will be added to request. @@ -4535,30 +4772,32 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginUpdateInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSetReimageParameters vmScaleSetReimageInput = default(VirtualMachineScaleSetReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (vmScaleSetName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (Client.SubscriptionId == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (instanceIds == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "instanceIds"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - string apiVersion = "2024-11-01"; - VirtualMachineScaleSetVMInstanceRequiredIDs vmInstanceIDs = new VirtualMachineScaleSetVMInstanceRequiredIDs(); - if (instanceIds != null) + if (vmScaleSetName == null) { - vmInstanceIDs.InstanceIds = instanceIds; + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } + string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4566,19 +4805,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); + tracingParameters.Add("vmScaleSetReimageInput", vmScaleSetReimageInput); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginUpdateInstances", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", 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}/manualupgrade").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/reimage").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -4622,9 +4861,9 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(vmInstanceIDs != null) + if(vmScaleSetReimageInput != null) { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(vmInstanceIDs, Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(vmScaleSetReimageInput, Client.SerializationSettings); _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } @@ -4698,18 +4937,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Reimages (upgrade the operating system) one or more virtual machines in a - /// VM scale set which don't have a ephemeral OS disk, for virtual machines who - /// have a ephemeral OS disk the virtual machine is reset to initial state. + /// Reimages all the disks ( including data disks ) in the virtual machines in + /// a VM scale set. This operation is only supported for managed disks. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// Parameters for Reimaging VM ScaleSet. + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. /// /// /// Headers that will be added to request. @@ -4729,21 +4969,38 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, VirtualMachineScaleSetReimageParameters vmScaleSetReimageInput = default(VirtualMachineScaleSetReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginReimageAllWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } - if (Client.SubscriptionId == null) + string apiVersion = "2024-11-01"; + VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); + if (instanceIds != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + vmInstanceIDs = new VirtualMachineScaleSetVMInstanceIDs(); + vmInstanceIDs.InstanceIds = instanceIds; } - string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4751,19 +5008,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("vmScaleSetReimageInput", vmScaleSetReimageInput); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginReimageAll", 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}/reimage").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/reimageall").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -4807,9 +5064,9 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(vmScaleSetReimageInput != null) + if(vmInstanceIDs != null) { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(vmScaleSetReimageInput, Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(vmInstanceIDs, Client.SerializationSettings); _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } @@ -4883,11 +5140,10 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Reimages all the disks ( including data disks ) in the virtual machines in - /// a VM scale set. This operation is only supported for managed disks. + /// Restarts one or more virtual machines in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -4915,19 +5171,30 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginReimageAllWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmScaleSetName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmScaleSetName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } string apiVersion = "2024-11-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); @@ -4943,19 +5210,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginReimageAll", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", 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}/reimageall").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/restart").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -5075,19 +5342,16 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Approve upgrade on deferred rolling upgrades for OS disks in the virtual - /// machines in a VM scale set. + /// Changes ServiceState property for a given service /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. + /// + /// The input object for SetOrchestrationServiceState API. /// /// /// Headers that will be added to request. @@ -5107,27 +5371,40 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginApproveRollingUpgradeWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginSetOrchestrationServiceStateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmScaleSetName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } - if (Client.SubscriptionId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - string apiVersion = "2024-11-01"; - VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); - if (instanceIds != null) + if (parameters != null) { - vmInstanceIDs = new VirtualMachineScaleSetVMInstanceIDs(); - vmInstanceIDs.InstanceIds = instanceIds; + parameters.Validate(); } + string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -5135,19 +5412,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginApproveRollingUpgrade", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginSetOrchestrationServiceState", 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}/approveRollingUpgrade").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/setOrchestrationServiceState").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -5191,9 +5468,9 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(vmInstanceIDs != null) + if(parameters != null) { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(vmInstanceIDs, Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } @@ -5217,7 +5494,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -5252,26 +5529,13 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationHeaderResponse(); + var _result = new AzureOperationResponse(); _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); @@ -5280,16 +5544,18 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Changes ServiceState property for a given service + /// Starts one or more virtual machines in a VM scale set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine scale set to create or update. + /// The name of the VM scale set. /// - /// - /// The input object for SetOrchestrationServiceState API. + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. /// /// /// Headers that will be added to request. @@ -5309,29 +5575,38 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginSetOrchestrationServiceStateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (vmScaleSetName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (parameters == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (parameters != null) + if (vmScaleSetName == null) { - parameters.Validate(); + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); } - if (Client.SubscriptionId == null) + string apiVersion = "2024-11-01"; + VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); + if (instanceIds != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + vmInstanceIDs = new VirtualMachineScaleSetVMInstanceIDs(); + vmInstanceIDs.InstanceIds = instanceIds; } - string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -5339,19 +5614,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginSetOrchestrationServiceState", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginStart", 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}/setOrchestrationServiceState").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/start").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _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) { @@ -5395,9 +5670,9 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) + if(vmInstanceIDs != null) { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(vmInstanceIDs, Client.SerializationSettings); _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } @@ -5645,7 +5920,10 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Gets a list of all VM scale sets under a resource group. + /// Gets a list of all VM Scale Sets in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of VM Scale Sets. Do this till nextLink is null to fetch all the + /// VM Scale Sets. /// /// /// The NextLink from the previous successful call to List operation. @@ -5671,7 +5949,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -5686,7 +5964,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAllNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -5818,10 +6096,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Gets a list of all VM Scale Sets in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of VM Scale Sets. Do this till nextLink is null to fetch all the - /// VM Scale Sets. + /// Gets a list of all VM scale sets under a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -5847,7 +6122,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -5862,7 +6137,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAllNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -5994,8 +6269,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Gets a list of SKUs available for your VM scale set, including the minimum - /// and maximum VM instances allowed for each SKU. + /// Gets list of OS upgrades on a VM scale set instance. /// /// /// The NextLink from the previous successful call to List operation. @@ -6021,7 +6295,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListSkusNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetOSUpgradeHistoryNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -6036,7 +6310,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListSkusNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetOSUpgradeHistoryNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -6135,7 +6409,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -6148,7 +6422,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -6168,7 +6442,8 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) } /// - /// Gets list of OS upgrades on a VM scale set instance. + /// Gets a list of SKUs available for your VM scale set, including the minimum + /// and maximum VM instances allowed for each SKU. /// /// /// The NextLink from the previous successful call to List operation. @@ -6194,7 +6469,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> GetOSUpgradeHistoryNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListSkusNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -6209,7 +6484,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetOSUpgradeHistoryNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListSkusNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -6308,7 +6583,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -6321,7 +6596,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetsOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetsOperationsExtensions.cs index f46bb40f272c..e2bb7c678379 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetsOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineScaleSetsOperationsExtensions.cs @@ -31,7 +31,7 @@ public static partial class VirtualMachineScaleSetsOperationsExtensions /// The operations group for this extension method. /// /// - /// The location for which VM scale sets under the subscription are queried. + /// The name of Azure region. /// public static IPage ListByLocation(this IVirtualMachineScaleSetsOperations operations, string location) { @@ -46,7 +46,7 @@ public static IPage ListByLocation(this IVirtualMachineS /// The operations group for this extension method. /// /// - /// The location for which VM scale sets under the subscription are queried. + /// The name of Azure region. /// /// /// The cancellation token. @@ -59,6 +59,126 @@ public static IPage ListByLocation(this IVirtualMachineS } } + /// + /// Gets a list of all VM Scale Sets in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of VM Scale Sets. Do this till nextLink is null to fetch all the + /// VM Scale Sets. + /// + /// + /// The operations group for this extension method. + /// + public static IPage ListAll(this IVirtualMachineScaleSetsOperations operations) + { + return operations.ListAllAsync().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all VM Scale Sets in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of VM Scale Sets. Do this till nextLink is null to fetch all the + /// VM Scale Sets. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAllAsync(this IVirtualMachineScaleSetsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all VM scale sets under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + public static IPage List(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName) + { + return operations.ListAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all VM scale sets under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Display information about a virtual machine scale set. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The expand expression to apply on the operation. 'UserData' retrieves the + /// UserData property of the VM scale set that was provided by the user during + /// the VM scale set Create/Update operation. Possible values include: + /// 'userData' + /// + public static VirtualMachineScaleSet Get(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, string expand = default(string)) + { + return operations.GetAsync(resourceGroupName, vmScaleSetName, expand).GetAwaiter().GetResult(); + } + + /// + /// Display information about a virtual machine scale set. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The expand expression to apply on the operation. 'UserData' retrieves the + /// UserData property of the VM scale set that was provided by the user during + /// the VM scale set Create/Update operation. Possible values include: + /// 'userData' + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Create or update a VM scale set. /// @@ -66,10 +186,10 @@ public static IPage ListByLocation(this IVirtualMachineS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -96,10 +216,10 @@ public static IPage ListByLocation(this IVirtualMachineS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -132,10 +252,10 @@ public static IPage ListByLocation(this IVirtualMachineS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -162,10 +282,10 @@ public static IPage ListByLocation(this IVirtualMachineS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -198,7 +318,7 @@ public static IPage ListByLocation(this IVirtualMachineS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -218,7 +338,7 @@ public static IPage ListByLocation(this IVirtualMachineS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -235,57 +355,108 @@ public static IPage ListByLocation(this IVirtualMachineS } /// - /// Display information about a virtual machine scale set. + /// Approve upgrade on deferred rolling upgrades for OS disks in the virtual + /// machines in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The expand expression to apply on the operation. 'UserData' retrieves the - /// UserData property of the VM scale set that was provided by the user during - /// the VM scale set Create/Update operation. Possible values include: - /// 'userData' + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. /// - public static VirtualMachineScaleSet Get(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, string expand = default(string)) + public static VirtualMachineScaleSetsApproveRollingUpgradeHeaders ApproveRollingUpgrade(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) { - return operations.GetAsync(resourceGroupName, vmScaleSetName, expand).GetAwaiter().GetResult(); + return operations.ApproveRollingUpgradeAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); } /// - /// Display information about a virtual machine scale set. + /// Approve upgrade on deferred rolling upgrades for OS disks in the virtual + /// machines in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The expand expression to apply on the operation. 'UserData' retrieves the - /// UserData property of the VM scale set that was provided by the user during - /// the VM scale set Create/Update operation. Possible values include: - /// 'userData' + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ApproveRollingUpgradeAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ApproveRollingUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)) { - return _result.Body; + return _result.Headers; } } + /// + /// Converts SinglePlacementGroup property to false for a existing virtual + /// machine scale set. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// Id of the placement group in which you want future virtual machine + /// instances to be placed. To query placement group Id, please use Virtual + /// Machine Scale Set VMs - Get API. If not provided, the platform will choose + /// one with maximum number of virtual machine instances. + /// + public static void ConvertToSinglePlacementGroup(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, string activePlacementGroupId = default(string)) + { + operations.ConvertToSinglePlacementGroupAsync(resourceGroupName, vmScaleSetName, activePlacementGroupId).GetAwaiter().GetResult(); + } + + /// + /// Converts SinglePlacementGroup property to false for a existing virtual + /// machine scale set. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// Id of the placement group in which you want future virtual machine + /// instances to be placed. To query placement group Id, please use Virtual + /// Machine Scale Set VMs - Get API. If not provided, the platform will choose + /// one with maximum number of virtual machine instances. + /// + /// + /// The cancellation token. + /// + public static async Task ConvertToSinglePlacementGroupAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, string activePlacementGroupId = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.ConvertToSinglePlacementGroupWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, activePlacementGroupId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Deallocates specific virtual machines in a VM scale set. Shuts down the /// virtual machines and releases the compute resources. You are not billed for @@ -295,7 +466,7 @@ public static IPage ListByLocation(this IVirtualMachineS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -323,7 +494,7 @@ public static IPage ListByLocation(this IVirtualMachineS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -352,7 +523,7 @@ public static IPage ListByLocation(this IVirtualMachineS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -376,7 +547,7 @@ public static IPage ListByLocation(this IVirtualMachineS /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -397,180 +568,92 @@ public static IPage ListByLocation(this IVirtualMachineS } /// - /// Gets the status of a VM scale set instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - public static VirtualMachineScaleSetInstanceView GetInstanceView(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName) - { - return operations.GetInstanceViewAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); - } - - /// - /// Gets the status of a VM scale set instance. + /// Manual platform update domain walk to update virtual machines in a service + /// fabric virtual machine scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The cancellation token. - /// - public static async Task GetInstanceViewAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetInstanceViewWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all VM scale sets under a resource group. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - public static IPage List(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName) - { - return operations.ListAsync(resourceGroupName).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all VM scale sets under a resource group. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all VM Scale Sets in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of VM Scale Sets. Do this till nextLink is null to fetch all the - /// VM Scale Sets. - /// - /// - /// The operations group for this extension method. + /// + /// The platform update domain for which a manual recovery walk is requested /// - public static IPage ListAll(this IVirtualMachineScaleSetsOperations operations) - { - return operations.ListAllAsync().GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all VM Scale Sets in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of VM Scale Sets. Do this till nextLink is null to fetch all the - /// VM Scale Sets. - /// - /// - /// The operations group for this extension method. + /// + /// The zone in which the manual recovery walk is requested for cross zone + /// virtual machine scale set /// - /// - /// The cancellation token. + /// + /// The placement group id for which the manual recovery walk is requested. /// - public static async Task> ListAllAsync(this IVirtualMachineScaleSetsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static RecoveryWalkResponse ForceRecoveryServiceFabricPlatformUpdateDomainWalk(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, int platformUpdateDomain, string zone = default(string), string placementGroupId = default(string)) { - using (var _result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + return operations.ForceRecoveryServiceFabricPlatformUpdateDomainWalkAsync(resourceGroupName, vmScaleSetName, platformUpdateDomain, zone, placementGroupId).GetAwaiter().GetResult(); } /// - /// Gets a list of SKUs available for your VM scale set, including the minimum - /// and maximum VM instances allowed for each SKU. + /// Manual platform update domain walk to update virtual machines in a service + /// fabric virtual machine scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - public static IPage ListSkus(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName) - { - return operations.ListSkusAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of SKUs available for your VM scale set, including the minimum - /// and maximum VM instances allowed for each SKU. - /// - /// - /// The operations group for this extension method. + /// + /// The platform update domain for which a manual recovery walk is requested /// - /// - /// The name of the resource group. + /// + /// The zone in which the manual recovery walk is requested for cross zone + /// virtual machine scale set /// - /// - /// The name of the VM scale set. + /// + /// The placement group id for which the manual recovery walk is requested. /// /// /// The cancellation token. /// - public static async Task> ListSkusAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ForceRecoveryServiceFabricPlatformUpdateDomainWalkAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, int platformUpdateDomain, string zone = default(string), string placementGroupId = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListSkusWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ForceRecoveryServiceFabricPlatformUpdateDomainWalkWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, platformUpdateDomain, zone, placementGroupId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets list of OS upgrades on a VM scale set instance. + /// Gets the status of a VM scale set instance. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - public static IPage GetOSUpgradeHistory(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName) + public static VirtualMachineScaleSetInstanceView GetInstanceView(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName) { - return operations.GetOSUpgradeHistoryAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); + return operations.GetInstanceViewAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); } /// - /// Gets list of OS upgrades on a VM scale set instance. + /// Gets the status of a VM scale set instance. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -578,134 +661,110 @@ public static IPage GetOSUpgradeHistory(th /// /// The cancellation token. /// - public static async Task> GetOSUpgradeHistoryAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetInstanceViewAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetOSUpgradeHistoryWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetInstanceViewWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Power off (stop) one or more virtual machines in a VM scale set. Note that - /// resources are still attached and you are getting charged for the resources. - /// Instead, use deallocate to release resources and avoid charges. - /// Additionally, this operation is not allowed on virtual machines in a VM - /// scale set that are being deallocated or have already been deallocated. + /// Upgrades one or more virtual machines to the latest SKU set in the VM scale + /// set model. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The parameter to request non-graceful VM shutdown. True value for this flag - /// indicates non-graceful shutdown whereas false indicates otherwise. Default - /// value for this flag is false if not specified - /// /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. + /// The virtual machine scale set instance ids. /// - public static void PowerOff(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? skipShutdown = false, IList instanceIds = default(IList)) + public static void UpdateInstances(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds) { - operations.PowerOffAsync(resourceGroupName, vmScaleSetName, skipShutdown, instanceIds).GetAwaiter().GetResult(); + operations.UpdateInstancesAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); } /// - /// Power off (stop) one or more virtual machines in a VM scale set. Note that - /// resources are still attached and you are getting charged for the resources. - /// Instead, use deallocate to release resources and avoid charges. - /// Additionally, this operation is not allowed on virtual machines in a VM - /// scale set that are being deallocated or have already been deallocated. + /// Upgrades one or more virtual machines to the latest SKU set in the VM scale + /// set model. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The parameter to request non-graceful VM shutdown. True value for this flag - /// indicates non-graceful shutdown whereas false indicates otherwise. Default - /// value for this flag is false if not specified - /// /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. + /// The virtual machine scale set instance ids. /// /// /// The cancellation token. /// - public static async Task PowerOffAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? skipShutdown = false, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateInstancesAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.PowerOffWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, skipShutdown, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.UpdateInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Restarts one or more virtual machines in a VM scale set. + /// Gets list of OS upgrades on a VM scale set instance. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. - /// - public static void Restart(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) + public static IPage GetOSUpgradeHistory(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName) { - operations.RestartAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); + return operations.GetOSUpgradeHistoryAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); } /// - /// Restarts one or more virtual machines in a VM scale set. + /// Gets list of OS upgrades on a VM scale set instance. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. - /// /// /// The cancellation token. /// - public static async Task RestartAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> GetOSUpgradeHistoryAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.RestartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.GetOSUpgradeHistoryWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Starts one or more virtual machines in a VM scale set. + /// Perform maintenance on one or more virtual machines in a VM scale set. + /// Operation on instances which are not eligible for perform maintenance will + /// be failed. Please refer to best practices for more details: + /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -715,19 +774,22 @@ public static IPage GetOSUpgradeHistory(th /// scale set instance ids will result in the operation being performed on all /// virtual machines in the virtual machine scale set. /// - public static void Start(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) + public static void PerformMaintenance(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) { - operations.StartAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); + operations.PerformMaintenanceAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); } /// - /// Starts one or more virtual machines in a VM scale set. + /// Perform maintenance on one or more virtual machines in a VM scale set. + /// Operation on instances which are not eligible for perform maintenance will + /// be failed. Please refer to best practices for more details: + /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -740,89 +802,59 @@ public static IPage GetOSUpgradeHistory(th /// /// The cancellation token. /// - public static async Task StartAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) - { - (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) + public static async Task PerformMaintenanceAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) { - return operations.ReapplyAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); + (await operations.PerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Reapplies the Virtual Machine Scale Set Virtual Machine Profile to the - /// Virtual Machine Instances + /// Power off (stop) one or more virtual machines in a VM scale set. Note that + /// resources are still attached and you are getting charged for the resources. + /// Instead, use deallocate to release resources and avoid charges. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// 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. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. + /// + /// The parameter to request non-graceful VM shutdown. True value for this flag + /// indicates non-graceful shutdown whereas false indicates otherwise. Default + /// value for this flag is false if not specified /// /// /// The virtual machine scale set instance ids. Omitting the virtual machine /// scale set instance ids will result in the operation being performed on all /// virtual machines in the virtual machine scale set. /// - public static void Redeploy(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) + public static void PowerOff(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? skipShutdown = default(bool?), IList instanceIds = default(IList)) { - operations.RedeployAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); + operations.PowerOffAsync(resourceGroupName, vmScaleSetName, skipShutdown, instanceIds).GetAwaiter().GetResult(); } /// - /// Shuts down all the virtual machines in the virtual machine scale set, moves - /// them to a new node, and powers them back on. + /// Power off (stop) one or more virtual machines in a VM scale set. Note that + /// resources are still attached and you are getting charged for the resources. + /// Instead, use deallocate to release resources and avoid charges. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// + /// + /// The parameter to request non-graceful VM shutdown. True value for this flag + /// indicates non-graceful shutdown whereas false indicates otherwise. Default + /// value for this flag is false if not specified + /// /// /// The virtual machine scale set instance ids. Omitting the virtual machine /// scale set instance ids will result in the operation being performed on all @@ -831,107 +863,100 @@ public static VirtualMachineScaleSetsReapplyHeaders Reapply(this IVirtualMachine /// /// The cancellation token. /// - public static async Task RedeployAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PowerOffAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? skipShutdown = default(bool?), IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.RedeployWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.PowerOffWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, skipShutdown, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Perform maintenance on one or more virtual machines in a VM scale set. - /// Operation on instances which are not eligible for perform maintenance will - /// be failed. Please refer to best practices for more details: - /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications + /// 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 resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. - /// - public static void PerformMaintenance(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) + public static VirtualMachineScaleSetsReapplyHeaders Reapply(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName) { - operations.PerformMaintenanceAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); + return operations.ReapplyAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); } /// - /// Perform maintenance on one or more virtual machines in a VM scale set. - /// Operation on instances which are not eligible for perform maintenance will - /// be failed. Please refer to best practices for more details: - /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications + /// 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 resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. - /// /// /// The cancellation token. /// - public static async Task PerformMaintenanceAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReapplyAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.PerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.ReapplyWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Headers; + } } /// - /// Upgrades one or more virtual machines to the latest SKU set in the VM scale - /// set model. + /// Shuts down all the virtual machines in the virtual machine scale set, moves + /// them to a new node, and powers them back on. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// /// - /// The virtual machine scale set instance ids. + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. /// - public static void UpdateInstances(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds) + public static void Redeploy(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) { - operations.UpdateInstancesAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); + operations.RedeployAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); } /// - /// Upgrades one or more virtual machines to the latest SKU set in the VM scale - /// set model. + /// Shuts down all the virtual machines in the virtual machine scale set, moves + /// them to a new node, and powers them back on. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// /// - /// The virtual machine scale set instance ids. + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. /// /// /// The cancellation token. /// - public static async Task UpdateInstancesAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RedeployAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.UpdateInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.RedeployWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -943,7 +968,7 @@ public static void UpdateInstances(this IVirtualMachineScaleSetsOperations opera /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -965,7 +990,7 @@ public static void UpdateInstances(this IVirtualMachineScaleSetsOperations opera /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -989,7 +1014,7 @@ public static void UpdateInstances(this IVirtualMachineScaleSetsOperations opera /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1012,7 +1037,7 @@ public static void UpdateInstances(this IVirtualMachineScaleSetsOperations opera /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1031,14 +1056,13 @@ public static void UpdateInstances(this IVirtualMachineScaleSetsOperations opera } /// - /// Approve upgrade on deferred rolling upgrades for OS disks in the virtual - /// machines in a VM scale set. + /// Restarts one or more virtual machines in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1048,20 +1072,19 @@ public static void UpdateInstances(this IVirtualMachineScaleSetsOperations opera /// scale set instance ids will result in the operation being performed on all /// virtual machines in the virtual machine scale set. /// - public static VirtualMachineScaleSetsApproveRollingUpgradeHeaders ApproveRollingUpgrade(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) + public static void Restart(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) { - return operations.ApproveRollingUpgradeAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); + operations.RestartAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); } /// - /// Approve upgrade on deferred rolling upgrades for OS disks in the virtual - /// machines in a VM scale set. + /// Restarts one or more virtual machines in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1074,168 +1097,141 @@ public static void UpdateInstances(this IVirtualMachineScaleSetsOperations opera /// /// The cancellation token. /// - public static async Task ApproveRollingUpgradeAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RestartAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ApproveRollingUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Headers; - } + (await operations.RestartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Manual platform update domain walk to update virtual machines in a service - /// fabric virtual machine scale set. + /// Changes ServiceState property for a given service /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The platform update domain for which a manual recovery walk is requested - /// - /// - /// The zone in which the manual recovery walk is requested for cross zone - /// virtual machine scale set - /// - /// - /// The placement group id for which the manual recovery walk is requested. + /// + /// The input object for SetOrchestrationServiceState API. /// - public static RecoveryWalkResponse ForceRecoveryServiceFabricPlatformUpdateDomainWalk(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, int platformUpdateDomain, string zone = default(string), string placementGroupId = default(string)) + public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters) { - return operations.ForceRecoveryServiceFabricPlatformUpdateDomainWalkAsync(resourceGroupName, vmScaleSetName, platformUpdateDomain, zone, placementGroupId).GetAwaiter().GetResult(); + operations.SetOrchestrationServiceStateAsync(resourceGroupName, vmScaleSetName, parameters).GetAwaiter().GetResult(); } /// - /// Manual platform update domain walk to update virtual machines in a service - /// fabric virtual machine scale set. + /// Changes ServiceState property for a given service /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The platform update domain for which a manual recovery walk is requested - /// - /// - /// The zone in which the manual recovery walk is requested for cross zone - /// virtual machine scale set - /// - /// - /// The placement group id for which the manual recovery walk is requested. + /// + /// The input object for SetOrchestrationServiceState API. /// /// /// The cancellation token. /// - public static async Task ForceRecoveryServiceFabricPlatformUpdateDomainWalkAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, int platformUpdateDomain, string zone = default(string), string placementGroupId = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task SetOrchestrationServiceStateAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ForceRecoveryServiceFabricPlatformUpdateDomainWalkWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, platformUpdateDomain, zone, placementGroupId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.SetOrchestrationServiceStateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Converts SinglePlacementGroup property to false for a existing virtual - /// machine scale set. + /// Gets a list of SKUs available for your VM scale set, including the minimum + /// and maximum VM instances allowed for each SKU. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine scale set to create or update. - /// - /// - /// Id of the placement group in which you want future virtual machine - /// instances to be placed. To query placement group Id, please use Virtual - /// Machine Scale Set VMs - Get API. If not provided, the platform will choose - /// one with maximum number of virtual machine instances. + /// The name of the VM scale set. /// - public static void ConvertToSinglePlacementGroup(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, string activePlacementGroupId = default(string)) + public static IPage ListSkus(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName) { - operations.ConvertToSinglePlacementGroupAsync(resourceGroupName, vmScaleSetName, activePlacementGroupId).GetAwaiter().GetResult(); + return operations.ListSkusAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); } /// - /// Converts SinglePlacementGroup property to false for a existing virtual - /// machine scale set. + /// Gets a list of SKUs available for your VM scale set, including the minimum + /// and maximum VM instances allowed for each SKU. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine scale set to create or update. - /// - /// - /// Id of the placement group in which you want future virtual machine - /// instances to be placed. To query placement group Id, please use Virtual - /// Machine Scale Set VMs - Get API. If not provided, the platform will choose - /// one with maximum number of virtual machine instances. + /// The name of the VM scale set. /// /// /// The cancellation token. /// - public static async Task ConvertToSinglePlacementGroupAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, string activePlacementGroupId = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListSkusAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.ConvertToSinglePlacementGroupWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, activePlacementGroupId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.ListSkusWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Changes ServiceState property for a given service + /// Starts one or more virtual machines in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine scale set to create or update. + /// The name of the VM scale set. /// - /// - /// The input object for SetOrchestrationServiceState API. + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. /// - public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters) + public static void Start(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) { - operations.SetOrchestrationServiceStateAsync(resourceGroupName, vmScaleSetName, parameters).GetAwaiter().GetResult(); + operations.StartAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); } /// - /// Changes ServiceState property for a given service + /// Starts one or more virtual machines in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine scale set to create or update. + /// The name of the VM scale set. /// - /// - /// The input object for SetOrchestrationServiceState API. + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. /// /// /// The cancellation token. /// - public static async Task SetOrchestrationServiceStateAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task StartAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.SetOrchestrationServiceStateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.StartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1245,10 +1241,10 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -1275,10 +1271,10 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -1311,10 +1307,10 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -1341,10 +1337,10 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the VM scale set to create or update. + /// The name of the VM scale set. /// /// /// The scale set object. @@ -1377,7 +1373,7 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1397,7 +1393,7 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1413,6 +1409,58 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Approve upgrade on deferred rolling upgrades for OS disks in the virtual + /// machines in a VM scale set. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. + /// + public static VirtualMachineScaleSetsApproveRollingUpgradeHeaders BeginApproveRollingUpgrade(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) + { + return operations.BeginApproveRollingUpgradeAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); + } + + /// + /// Approve upgrade on deferred rolling upgrades for OS disks in the virtual + /// machines in a VM scale set. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. + /// + /// + /// The cancellation token. + /// + public static async Task BeginApproveRollingUpgradeAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginApproveRollingUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Headers; + } + } + /// /// Deallocates specific virtual machines in a VM scale set. Shuts down the /// virtual machines and releases the compute resources. You are not billed for @@ -1422,7 +1470,7 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1450,7 +1498,7 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1479,7 +1527,7 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1503,7 +1551,7 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1524,78 +1572,61 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe } /// - /// Power off (stop) one or more virtual machines in a VM scale set. Note that - /// resources are still attached and you are getting charged for the resources. - /// Instead, use deallocate to release resources and avoid charges. - /// Additionally, this operation is not allowed on virtual machines in a VM - /// scale set that are being deallocated or have already been deallocated. + /// Upgrades one or more virtual machines to the latest SKU set in the VM scale + /// set model. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The parameter to request non-graceful VM shutdown. True value for this flag - /// indicates non-graceful shutdown whereas false indicates otherwise. Default - /// value for this flag is false if not specified - /// /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. + /// The virtual machine scale set instance ids. /// - public static void BeginPowerOff(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? skipShutdown = false, IList instanceIds = default(IList)) + public static void BeginUpdateInstances(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds) { - operations.BeginPowerOffAsync(resourceGroupName, vmScaleSetName, skipShutdown, instanceIds).GetAwaiter().GetResult(); + operations.BeginUpdateInstancesAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); } /// - /// Power off (stop) one or more virtual machines in a VM scale set. Note that - /// resources are still attached and you are getting charged for the resources. - /// Instead, use deallocate to release resources and avoid charges. - /// Additionally, this operation is not allowed on virtual machines in a VM - /// scale set that are being deallocated or have already been deallocated. + /// Upgrades one or more virtual machines to the latest SKU set in the VM scale + /// set model. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// - /// - /// The parameter to request non-graceful VM shutdown. True value for this flag - /// indicates non-graceful shutdown whereas false indicates otherwise. Default - /// value for this flag is false if not specified - /// /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. + /// The virtual machine scale set instance ids. /// /// /// The cancellation token. /// - public static async Task BeginPowerOffAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? skipShutdown = false, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginUpdateInstancesAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginPowerOffWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, skipShutdown, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginUpdateInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Restarts one or more virtual machines in a VM scale set. + /// Perform maintenance on one or more virtual machines in a VM scale set. + /// Operation on instances which are not eligible for perform maintenance will + /// be failed. Please refer to best practices for more details: + /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1605,19 +1636,22 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// scale set instance ids will result in the operation being performed on all /// virtual machines in the virtual machine scale set. /// - public static void BeginRestart(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) + public static void BeginPerformMaintenance(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) { - operations.BeginRestartAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); + operations.BeginPerformMaintenanceAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); } /// - /// Restarts one or more virtual machines in a VM scale set. + /// Perform maintenance on one or more virtual machines in a VM scale set. + /// Operation on instances which are not eligible for perform maintenance will + /// be failed. Please refer to best practices for more details: + /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1630,45 +1664,59 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// /// The cancellation token. /// - public static async Task BeginRestartAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginPerformMaintenanceAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginPerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Starts one or more virtual machines in a VM scale set. + /// Power off (stop) one or more virtual machines in a VM scale set. Note that + /// resources are still attached and you are getting charged for the resources. + /// Instead, use deallocate to release resources and avoid charges. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// + /// + /// The parameter to request non-graceful VM shutdown. True value for this flag + /// indicates non-graceful shutdown whereas false indicates otherwise. Default + /// value for this flag is false if not specified + /// /// /// The virtual machine scale set instance ids. Omitting the virtual machine /// scale set instance ids will result in the operation being performed on all /// virtual machines in the virtual machine scale set. /// - public static void BeginStart(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) + public static void BeginPowerOff(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? skipShutdown = default(bool?), IList instanceIds = default(IList)) { - operations.BeginStartAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); + operations.BeginPowerOffAsync(resourceGroupName, vmScaleSetName, skipShutdown, instanceIds).GetAwaiter().GetResult(); } /// - /// Starts one or more virtual machines in a VM scale set. + /// Power off (stop) one or more virtual machines in a VM scale set. Note that + /// resources are still attached and you are getting charged for the resources. + /// Instead, use deallocate to release resources and avoid charges. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. /// + /// + /// The parameter to request non-graceful VM shutdown. True value for this flag + /// indicates non-graceful shutdown whereas false indicates otherwise. Default + /// value for this flag is false if not specified + /// /// /// The virtual machine scale set instance ids. Omitting the virtual machine /// scale set instance ids will result in the operation being performed on all @@ -1677,9 +1725,9 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// /// The cancellation token. /// - public static async Task BeginStartAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginPowerOffAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? skipShutdown = default(bool?), IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginStartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginPowerOffWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, skipShutdown, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1690,7 +1738,7 @@ public static void SetOrchestrationServiceState(this IVirtualMachineScaleSetsOpe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1708,7 +1756,7 @@ public static VirtualMachineScaleSetsReapplyHeaders BeginReapply(this IVirtualMa /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1732,7 +1780,7 @@ public static VirtualMachineScaleSetsReapplyHeaders BeginReapply(this IVirtualMa /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1755,7 +1803,7 @@ public static VirtualMachineScaleSetsReapplyHeaders BeginReapply(this IVirtualMa /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1773,104 +1821,6 @@ public static VirtualMachineScaleSetsReapplyHeaders BeginReapply(this IVirtualMa (await operations.BeginRedeployWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } - /// - /// Perform maintenance on one or more virtual machines in a VM scale set. - /// Operation on instances which are not eligible for perform maintenance will - /// be failed. Please refer to best practices for more details: - /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. - /// - public static void BeginPerformMaintenance(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) - { - operations.BeginPerformMaintenanceAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); - } - - /// - /// Perform maintenance on one or more virtual machines in a VM scale set. - /// Operation on instances which are not eligible for perform maintenance will - /// be failed. Please refer to best practices for more details: - /// https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The virtual machine scale set instance ids. Omitting the virtual machine - /// scale set instance ids will result in the operation being performed on all - /// virtual machines in the virtual machine scale set. - /// - /// - /// The cancellation token. - /// - public static async Task BeginPerformMaintenanceAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginPerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Upgrades one or more virtual machines to the latest SKU set in the VM scale - /// set model. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The virtual machine scale set instance ids. - /// - public static void BeginUpdateInstances(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds) - { - operations.BeginUpdateInstancesAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); - } - - /// - /// Upgrades one or more virtual machines to the latest SKU set in the VM scale - /// set model. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the VM scale set. - /// - /// - /// The virtual machine scale set instance ids. - /// - /// - /// The cancellation token. - /// - public static async Task BeginUpdateInstancesAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginUpdateInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - /// /// Reimages (upgrade the operating system) one or more virtual machines in a /// VM scale set which don't have a ephemeral OS disk, for virtual machines who @@ -1880,7 +1830,7 @@ public static void BeginUpdateInstances(this IVirtualMachineScaleSetsOperations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1902,7 +1852,7 @@ public static void BeginUpdateInstances(this IVirtualMachineScaleSetsOperations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1926,7 +1876,7 @@ public static void BeginUpdateInstances(this IVirtualMachineScaleSetsOperations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1949,7 +1899,7 @@ public static void BeginUpdateInstances(this IVirtualMachineScaleSetsOperations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1968,14 +1918,13 @@ public static void BeginUpdateInstances(this IVirtualMachineScaleSetsOperations } /// - /// Approve upgrade on deferred rolling upgrades for OS disks in the virtual - /// machines in a VM scale set. + /// Restarts one or more virtual machines in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -1985,20 +1934,19 @@ public static void BeginUpdateInstances(this IVirtualMachineScaleSetsOperations /// scale set instance ids will result in the operation being performed on all /// virtual machines in the virtual machine scale set. /// - public static VirtualMachineScaleSetsApproveRollingUpgradeHeaders BeginApproveRollingUpgrade(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) + public static void BeginRestart(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) { - return operations.BeginApproveRollingUpgradeAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); + operations.BeginRestartAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); } /// - /// Approve upgrade on deferred rolling upgrades for OS disks in the virtual - /// machines in a VM scale set. + /// Restarts one or more virtual machines in a VM scale set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the VM scale set. @@ -2011,12 +1959,9 @@ public static void BeginUpdateInstances(this IVirtualMachineScaleSetsOperations /// /// The cancellation token. /// - public static async Task BeginApproveRollingUpgradeAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginRestartAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginApproveRollingUpgradeWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Headers; - } + (await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -2026,10 +1971,10 @@ public static void BeginUpdateInstances(this IVirtualMachineScaleSetsOperations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine scale set to create or update. + /// The name of the VM scale set. /// /// /// The input object for SetOrchestrationServiceState API. @@ -2046,10 +1991,10 @@ public static void BeginSetOrchestrationServiceState(this IVirtualMachineScaleSe /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the virtual machine scale set to create or update. + /// The name of the VM scale set. /// /// /// The input object for SetOrchestrationServiceState API. @@ -2063,43 +2008,55 @@ public static void BeginSetOrchestrationServiceState(this IVirtualMachineScaleSe } /// - /// Gets all the VM scale sets under the specified subscription for the - /// specified location. + /// Starts one or more virtual machines in a VM scale set. /// /// /// The operations group for this extension method. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The name of the resource group. The name is case insensitive. /// - public static IPage ListByLocationNext(this IVirtualMachineScaleSetsOperations operations, string nextPageLink) + /// + /// The name of the VM scale set. + /// + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. + /// + public static void BeginStart(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList)) { - return operations.ListByLocationNextAsync(nextPageLink).GetAwaiter().GetResult(); + operations.BeginStartAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); } /// - /// Gets all the VM scale sets under the specified subscription for the - /// specified location. + /// Starts one or more virtual machines in a VM scale set. /// /// /// The operations group for this extension method. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The virtual machine scale set instance ids. Omitting the virtual machine + /// scale set instance ids will result in the operation being performed on all + /// virtual machines in the virtual machine scale set. /// /// /// The cancellation token. /// - public static async Task> ListByLocationNextAsync(this IVirtualMachineScaleSetsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginStartAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByLocationNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.BeginStartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Gets a list of all VM scale sets under a resource group. + /// Gets all the VM scale sets under the specified subscription for the + /// specified location. /// /// /// The operations group for this extension method. @@ -2107,13 +2064,14 @@ public static IPage ListByLocationNext(this IVirtualMach /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IVirtualMachineScaleSetsOperations operations, string nextPageLink) + public static IPage ListByLocationNext(this IVirtualMachineScaleSetsOperations operations, string nextPageLink) { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByLocationNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Gets a list of all VM scale sets under a resource group. + /// Gets all the VM scale sets under the specified subscription for the + /// specified location. /// /// /// The operations group for this extension method. @@ -2124,9 +2082,9 @@ public static IPage ListNext(this IVirtualMachineScaleSe /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IVirtualMachineScaleSetsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByLocationNextAsync(this IVirtualMachineScaleSetsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByLocationNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -2173,8 +2131,7 @@ public static IPage ListAllNext(this IVirtualMachineScal } /// - /// Gets a list of SKUs available for your VM scale set, including the minimum - /// and maximum VM instances allowed for each SKU. + /// Gets a list of all VM scale sets under a resource group. /// /// /// The operations group for this extension method. @@ -2182,14 +2139,13 @@ public static IPage ListAllNext(this IVirtualMachineScal /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListSkusNext(this IVirtualMachineScaleSetsOperations operations, string nextPageLink) + public static IPage ListNext(this IVirtualMachineScaleSetsOperations operations, string nextPageLink) { - return operations.ListSkusNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Gets a list of SKUs available for your VM scale set, including the minimum - /// and maximum VM instances allowed for each SKU. + /// Gets a list of all VM scale sets under a resource group. /// /// /// The operations group for this extension method. @@ -2200,9 +2156,9 @@ public static IPage ListSkusNext(this IVirtualMachine /// /// The cancellation token. /// - public static async Task> ListSkusNextAsync(this IVirtualMachineScaleSetsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this IVirtualMachineScaleSetsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListSkusNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -2242,5 +2198,41 @@ public static IPage GetOSUpgradeHistoryNex } } + /// + /// Gets a list of SKUs available for your VM scale set, including the minimum + /// and maximum VM instances allowed for each SKU. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListSkusNext(this IVirtualMachineScaleSetsOperations operations, string nextPageLink) + { + return operations.ListSkusNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of SKUs available for your VM scale set, including the minimum + /// and maximum VM instances allowed for each SKU. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListSkusNextAsync(this IVirtualMachineScaleSetsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListSkusNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineSizesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineSizesOperations.cs index 71322a49e88e..44d6e7b27622 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineSizesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineSizesOperations.cs @@ -55,7 +55,7 @@ internal VirtualMachineSizesOperations(ComputeManagementClient client) /// Skus](https://docs.microsoft.com/rest/api/compute/resourceskus/list) /// /// - /// The location upon which virtual-machine-sizes is queried. + /// The name of Azure region. /// /// /// Headers that will be added to request. @@ -80,21 +80,21 @@ internal VirtualMachineSizesOperations(ComputeManagementClient client) /// public async Task>> ListWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } if (location != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(location, "^[-\\w\\._]+$")) + if (location.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "location", "^[-\\w\\._]+$"); + throw new ValidationException(ValidationRules.MinLength, "location", 1); } } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -103,16 +103,16 @@ internal VirtualMachineSizesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/vmSizes").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); List _queryParameters = new List(); if (apiVersion != null) { diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineSizesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineSizesOperationsExtensions.cs index 84a3b5d2dce0..a1d5601818a8 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineSizesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachineSizesOperationsExtensions.cs @@ -31,7 +31,7 @@ public static partial class VirtualMachineSizesOperationsExtensions /// The operations group for this extension method. /// /// - /// The location upon which virtual-machine-sizes is queried. + /// The name of Azure region. /// public static IEnumerable List(this IVirtualMachineSizesOperations operations, string location) { @@ -46,7 +46,7 @@ public static IEnumerable List(this IVirtualMachineSizesOper /// The operations group for this extension method. /// /// - /// The location upon which virtual-machine-sizes is queried. + /// The name of Azure region. /// /// /// The cancellation token. diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachinesOperations.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachinesOperations.cs index eb0369e55da9..0d46e06087cb 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachinesOperations.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachinesOperations.cs @@ -55,7 +55,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// specified location. /// /// - /// The location for which virtual machines under the subscription are queried. + /// The name of Azure region. /// /// /// Headers that will be added to request. @@ -80,21 +80,21 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// public async Task>> ListByLocationWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (location == null) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } if (location != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(location, "^[-\\w\\._]+$")) + if (location.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "location", "^[-\\w\\._]+$"); + throw new ValidationException(ValidationRules.MinLength, "location", 1); } } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -103,16 +103,16 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("location", location); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByLocation", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/virtualMachines").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); List _queryParameters = new List(); if (apiVersion != null) { @@ -244,154 +244,23 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Captures the VM by copying virtual hard disks of the VM and outputs a - /// template that can be used to create similar VMs. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Parameters supplied to the Capture Virtual Machine operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CaptureWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginCaptureWithHttpMessagesAsync(resourceGroupName, vmName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to create or update a virtual machine. Please note some - /// properties can be set only during virtual machine creation. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Parameters supplied to the Create Virtual Machine operation. - /// - /// - /// The ETag of the transformation. Omit this value to always overwrite the - /// current resource. Specify the last-seen ETag value to prevent accidentally - /// overwriting concurrent changes. - /// - /// - /// Set to '*' to allow a new record set to be created, but to prevent updating - /// an existing record set. Other values will result in error from server as - /// they are not supported. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachine parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmName, parameters, ifMatch, ifNoneMatch, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to update a virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Parameters supplied to the Update Virtual Machine operation. - /// - /// - /// The ETag of the transformation. Omit this value to always overwrite the - /// current resource. Specify the last-seen ETag value to prevent accidentally - /// overwriting concurrent changes. - /// - /// - /// Set to '*' to allow a new record set to be created, but to prevent updating - /// an existing record set. Other values will result in error from server as - /// they are not supported. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmName, parameters, ifMatch, ifNoneMatch, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to delete a virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Optional parameter to force delete virtual machines. - /// NOTE: As of api-version 2024-11-01, we are rolling out a feature where if - /// the forceDeletion parameter is unspecified OR not explicitly set to false, - /// AND all of the VM's attached disks including the OS disk are marked with - /// the delete option, then the VM will be force deleted. For more details on - /// how to configure delete options for a VM's resources, see [Delete a VM and - /// attached - /// resources](https://learn.microsoft.com/en-us/azure/virtual-machines/delete). - /// To avoid defaulting to force delete, ensure that the forceDeletion - /// parameter is explicitly set to false. This feature is expected to rollout - /// by end of March 2025. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Retrieves information about the model view or the instance view of a - /// virtual machine. + /// Lists all of the virtual machines in the specified subscription. Use the + /// nextLink property in the response to get the next page of virtual machines. /// - /// - /// The name of the resource group. + /// + /// statusOnly=true enables fetching run time status of all Virtual Machines in + /// the subscription. /// - /// - /// The name of the virtual machine. + /// + /// The system query option to filter VMs returned in the response. Allowed + /// value is 'virtualMachineScaleSet/id' eq + /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' /// /// - /// The expand expression to apply on the operation. 'InstanceView' retrieves a - /// snapshot of the runtime properties of the virtual machine that is managed - /// by the platform and can change outside of control plane operations. - /// 'UserData' retrieves the UserData property as part of the VM model view - /// that was provided by the user during the VM Create/Update operation. - /// Possible values include: 'instanceView', 'userData' + /// The expand expression to apply on operation. 'instanceView' enables + /// fetching run time status of all Virtual Machines, this can only be + /// specified if a valid $filter option is specified. Possible values include: + /// 'instanceView' /// /// /// Headers that will be added to request. @@ -414,16 +283,8 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAllWithHttpMessagesAsync(string statusOnly = default(string), string filter = default(string), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (vmName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -436,28 +297,34 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("vmName", vmName); - tracingParameters.Add("expand", expand); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("statusOnly", statusOnly); + tracingParameters.Add("filter", filter); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAll", 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/virtualMachines/{vmName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/virtualMachines").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (statusOnly != null) + { + _queryParameters.Add(string.Format("statusOnly={0}", System.Uri.EscapeDataString(statusOnly))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -551,7 +418,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -564,7 +431,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -584,13 +451,22 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Retrieves information about the run-time state of a virtual machine. + /// Lists all of the virtual machines in the specified resource group. Use the + /// nextLink property in the response to get the next page of virtual machines. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The name of the virtual machine. + /// + /// The system query option to filter VMs returned in the response. Allowed + /// value is 'virtualMachineScaleSet/id' eq + /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' + /// + /// + /// The expand expression to apply on operation. 'instanceView' enables + /// fetching run time status of all Virtual Machines, this can only be + /// specified if a valid $filter option is specified. Possible values include: + /// 'instanceView' /// /// /// Headers that will be added to request. @@ -613,19 +489,26 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> InstanceViewWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string filter = default(string), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (vmName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } string apiVersion = "2024-11-01"; // Tracing @@ -635,23 +518,31 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("vmName", vmName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("filter", filter); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "InstanceView", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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/virtualMachines/{vmName}/instanceView").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -745,7 +636,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -758,7 +649,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -778,67 +669,22 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Converts virtual machine disks from blob-based to managed disks. Virtual - /// machine must be stop-deallocated before invoking this operation. + /// Retrieves information about the model view or the instance view of a + /// virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task ConvertToManagedDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginConvertToManagedDisksWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Shuts down the virtual machine and releases the compute resources. You are - /// not billed for the compute resources that this virtual machine uses. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Optional parameter to hibernate a virtual machine. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? hibernate = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeallocateWithHttpMessagesAsync(resourceGroupName, vmName, hibernate, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Sets the OS state of the virtual machine to generalized. It is recommended - /// to sysprep the virtual machine before performing this operation. For - /// Windows, please refer to [Create a managed image of a generalized VM in - /// Azure](https://docs.microsoft.com/azure/virtual-machines/windows/capture-image-resource). - /// For Linux, please refer to [How to create an image of a virtual machine or - /// VHD](https://docs.microsoft.com/azure/virtual-machines/linux/capture-image). - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. + /// + /// The expand expression to apply on the operation. 'InstanceView' retrieves a + /// snapshot of the runtime properties of the virtual machine that is managed + /// by the platform and can change outside of control plane operations. + /// 'UserData' retrieves the UserData property as part of the VM model view + /// that was provided by the user during the VM Create/Update operation. + /// Possible values include: 'instanceView', 'userData', 'resiliencyView' /// /// /// Headers that will be added to request. @@ -849,6 +695,9 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -858,19 +707,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task GeneralizeWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -880,23 +740,28 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Generalize", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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/virtualMachines/{vmName}/generalize").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _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 (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -904,7 +769,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -990,13 +855,31 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1005,22 +888,237 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Lists all of the virtual machines in the specified resource group. Use the - /// nextLink property in the response to get the next page of virtual machines. + /// The operation to create or update a virtual machine. Please note some + /// properties can be set only during virtual machine creation. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The system query option to filter VMs returned in the response. Allowed - /// value is 'virtualMachineScaleSet/id' eq - /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' + /// + /// The name of the virtual machine. /// - /// - /// The expand expression to apply on operation. 'instanceView' enables - /// fetching run time status of all Virtual Machines, this can only be - /// specified if a valid $filter option is specified. Possible values include: - /// 'instanceView' + /// + /// Parameters supplied to the Create Virtual Machine operation. + /// + /// + /// The ETag of the transformation. Omit this value to always overwrite the + /// current resource. Specify the last-seen ETag value to prevent accidentally + /// overwriting concurrent changes. + /// + /// + /// Set to '*' to allow a new record set to be created, but to prevent updating + /// an existing record set. Other values will result in error from server as + /// they are not supported. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachine parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, vmName, parameters, ifMatch, ifNoneMatch, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to update a virtual machine. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Parameters supplied to the Update Virtual Machine operation. + /// + /// + /// The ETag of the transformation. Omit this value to always overwrite the + /// current resource. Specify the last-seen ETag value to prevent accidentally + /// overwriting concurrent changes. + /// + /// + /// Set to '*' to allow a new record set to be created, but to prevent updating + /// an existing record set. Other values will result in error from server as + /// they are not supported. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, vmName, parameters, ifMatch, ifNoneMatch, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to delete a virtual machine. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Optional parameter to force delete virtual machines. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Assess patches on the VM. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> AssessPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginAssessPatchesWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Attach and detach data disks to/from the virtual machine. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Parameters supplied to the attach and detach data disks operation on the + /// virtual machine. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> AttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginAttachDetachDataDisksWithHttpMessagesAsync(resourceGroupName, vmName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Captures the VM by copying virtual hard disks of the VM and outputs a + /// template that can be used to create similar VMs. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Parameters supplied to the Capture Virtual Machine operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CaptureWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginCaptureWithHttpMessagesAsync(resourceGroupName, vmName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Converts virtual machine disks from blob-based to managed disks. Virtual + /// machine must be stop-deallocated before invoking this operation. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ConvertToManagedDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginConvertToManagedDisksWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Shuts down the virtual machine and releases the compute resources. You are + /// not billed for the compute resources that this virtual machine uses. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Optional parameter to hibernate a virtual machine. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? hibernate = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeallocateWithHttpMessagesAsync(resourceGroupName, vmName, hibernate, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Sets the OS state of the virtual machine to generalized. It is recommended + /// to sysprep the virtual machine before performing this operation. For + /// Windows, please refer to [Create a managed image of a generalized VM in + /// Azure](https://docs.microsoft.com/azure/virtual-machines/windows/capture-image-resource). + /// For Linux, please refer to [How to create an image of a virtual machine or + /// VHD](https://docs.microsoft.com/azure/virtual-machines/linux/capture-image). + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. /// /// /// Headers that will be added to request. @@ -1031,9 +1129,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1043,15 +1138,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string filter = default(string), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task GeneralizeWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (Client.SubscriptionId == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (vmName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -1061,27 +1171,19 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("filter", filter); - tracingParameters.Add("expand", expand); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("vmName", vmName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Generalize", 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/virtualMachines").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/generalize").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); List _queryParameters = new List(); - if (filter != null) - { - _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); - } - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -1093,7 +1195,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1179,31 +1281,13 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1212,23 +1296,38 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Lists all of the virtual machines in the specified subscription. Use the - /// nextLink property in the response to get the next page of virtual machines. + /// Installs patches on the VM. /// - /// - /// statusOnly=true enables fetching run time status of all Virtual Machines in - /// the subscription. + /// + /// The name of the resource group. The name is case insensitive. /// - /// - /// The system query option to filter VMs returned in the response. Allowed - /// value is 'virtualMachineScaleSet/id' eq - /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' + /// + /// The name of the virtual machine. /// - /// - /// The expand expression to apply on operation. 'instanceView' enables - /// fetching run time status of all Virtual Machines, this can only be - /// specified if a valid $filter option is specified. Possible values include: - /// 'instanceView' + /// + /// Input for InstallPatches as directly received by the API + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> InstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginInstallPatchesWithHttpMessagesAsync(resourceGroupName, vmName, installPatchesInput, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Retrieves information about the run-time state of a virtual machine. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. /// /// /// Headers that will be added to request. @@ -1251,12 +1350,31 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAllWithHttpMessagesAsync(string statusOnly = default(string), string filter = default(string), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> InstanceViewWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (vmName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1266,33 +1384,22 @@ internal VirtualMachinesOperations(ComputeManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("statusOnly", statusOnly); - tracingParameters.Add("filter", filter); - tracingParameters.Add("expand", expand); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("vmName", vmName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAll", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "InstanceView", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/virtualMachines").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/instanceView").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } - if (statusOnly != null) - { - _queryParameters.Add(string.Format("statusOnly={0}", System.Uri.EscapeDataString(statusOnly))); - } - if (filter != null) - { - _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); - } - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -1386,7 +1493,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1399,7 +1506,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1419,15 +1526,195 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Lists all available virtual machine sizes to which the specified virtual - /// machine can be resized. + /// Migrate a virtual machine from availability set to Flexible Virtual Machine + /// Scale Set. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Parameters supplied to the Migrate Virtual Machine operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task MigrateToVMScaleSetWithHttpMessagesAsync(string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginMigrateToVMScaleSetWithHttpMessagesAsync(resourceGroupName, vmName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to perform maintenance on a virtual machine. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginPerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to power off (stop) a virtual machine. The virtual machine + /// can be restarted with the same provisioned resources. You are still charged + /// for this virtual machine. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// The parameter to request non-graceful VM shutdown. True value for this flag + /// indicates non-graceful shutdown whereas false indicates otherwise. Default + /// value for this flag is false if not specified + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? skipShutdown = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginPowerOffWithHttpMessagesAsync(resourceGroupName, vmName, skipShutdown, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to reapply a virtual machine's state. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ReapplyWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginReapplyWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Shuts down the virtual machine, moves it to a new node, and powers it back + /// on. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RedeployWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRedeployWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Reimages (upgrade the operating system) a virtual machine which don't have + /// a ephemeral OS disk, for virtual machines who have a ephemeral OS disk the + /// virtual machine is reset to initial state. NOTE: The retaining of old OS + /// disk depends on the value of deleteOption of OS disk. If deleteOption is + /// detach, the old OS disk will be preserved after reimage. If deleteOption is + /// delete, the old OS disk will be deleted after reimage. The deleteOption of + /// the OS disk should be updated accordingly before performing the reimage. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Parameters supplied to the Reimage Virtual Machine operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ReimageWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginReimageWithHttpMessagesAsync(resourceGroupName, vmName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to restart a virtual machine. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RestartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The operation to retrieve SAS URIs for a virtual machine's boot diagnostic + /// logs. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Expiration duration in minutes for the SAS URIs with a value between 1 to + /// 1440 minutes. **Note:** If not specified, SAS URIs will be generated with a + /// default expiration duration of 120 minutes. + /// /// /// Headers that will be added to request. /// @@ -1449,19 +1736,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAvailableSizesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> RetrieveBootDiagnosticsDataWithHttpMessagesAsync(string resourceGroupName, string vmName, int? sasUriExpirationTimeInMinutes = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -1471,23 +1769,28 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("sasUriExpirationTimeInMinutes", sasUriExpirationTimeInMinutes); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAvailableSizes", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "RetrieveBootDiagnosticsData", 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/virtualMachines/{vmName}/vmSizes").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/retrieveBootDiagnosticsData").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _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 (sasUriExpirationTimeInMinutes != null) + { + _queryParameters.Add(string.Format("sasUriExpirationTimeInMinutes={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(sasUriExpirationTimeInMinutes, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -1495,7 +1798,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1581,7 +1884,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1594,7 +1897,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1614,141 +1917,16 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// The operation to power off (stop) a virtual machine. The virtual machine - /// can be restarted with the same provisioned resources. You are still charged - /// for this virtual machine. NOTE: This operation is not allowed on a virtual - /// machine that is being deallocated or has already been deallocated. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// The parameter to request non-graceful VM shutdown. True value for this flag - /// indicates non-graceful shutdown whereas false indicates otherwise. Default - /// value for this flag is false if not specified - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? skipShutdown = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginPowerOffWithHttpMessagesAsync(resourceGroupName, vmName, skipShutdown, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to reapply a virtual machine's state. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task ReapplyWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginReapplyWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to restart a virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task RestartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The operation to start a virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task StartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginStartWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Shuts down the virtual machine, moves it to a new node, and powers it back - /// on. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task RedeployWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRedeployWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Reimages (upgrade the operating system) a virtual machine which don't have - /// a ephemeral OS disk, for virtual machines who have a ephemeral OS disk the - /// virtual machine is reset to initial state. NOTE: The retaining of old OS - /// disk depends on the value of deleteOption of OS disk. If deleteOption is - /// detach, the old OS disk will be preserved after reimage. If deleteOption is - /// delete, the old OS disk will be deleted after reimage. The deleteOption of - /// the OS disk should be updated accordingly before performing the reimage. + /// Run command on the VM. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// - /// Parameters supplied to the Reimage Virtual Machine operation. + /// Parameters supplied to the Run command operation. /// /// /// The headers that will be added to request. @@ -1756,28 +1934,22 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// The cancellation token. /// - public async Task ReimageWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> RunCommandWithHttpMessagesAsync(string resourceGroupName, string vmName, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginReimageWithHttpMessagesAsync(resourceGroupName, vmName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginRunCommandWithHttpMessagesAsync(resourceGroupName, vmName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// The operation to retrieve SAS URIs for a virtual machine's boot diagnostic - /// logs. + /// The operation to simulate the eviction of spot virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Expiration duration in minutes for the SAS URIs with a value between 1 to - /// 1440 minutes. **Note:** If not specified, SAS URIs will be generated with a - /// default expiration duration of 120 minutes. - /// /// /// Headers that will be added to request. /// @@ -1787,9 +1959,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1799,19 +1968,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> RetrieveBootDiagnosticsDataWithHttpMessagesAsync(string resourceGroupName, string vmName, int? sasUriExpirationTimeInMinutes = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task SimulateEvictionWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -1821,24 +2001,19 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("sasUriExpirationTimeInMinutes", sasUriExpirationTimeInMinutes); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "RetrieveBootDiagnosticsData", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "SimulateEviction", 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/virtualMachines/{vmName}/retrieveBootDiagnosticsData").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/simulateEviction").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (sasUriExpirationTimeInMinutes != null) - { - _queryParameters.Add(string.Format("sasUriExpirationTimeInMinutes={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(sasUriExpirationTimeInMinutes, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -1901,7 +2076,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1936,31 +2111,13 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1969,10 +2126,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// The operation to perform maintenance on a virtual machine. + /// The operation to start a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1983,18 +2140,19 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// The cancellation token. /// - public async Task PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task StartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginPerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginStartWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// The operation to simulate the eviction of spot virtual machine. + /// Lists all available virtual machine sizes to which the specified virtual + /// machine can be resized. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -2008,6 +2166,9 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -2017,19 +2178,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task SimulateEvictionWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAvailableSizesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -2039,18 +2211,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "SimulateEviction", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAvailableSizes", 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/virtualMachines/{vmName}/simulateEviction").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/vmSizes").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -2063,7 +2235,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2114,7 +2286,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2149,13 +2321,31 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -2164,141 +2354,27 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Assess patches on the VM. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> AssessPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginAssessPatchesWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Installs patches on the VM. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Input for InstallPatches as directly received by the API - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> InstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginInstallPatchesWithHttpMessagesAsync(resourceGroupName, vmName, installPatchesInput, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Attach and detach data disks to/from the virtual machine. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Parameters supplied to the attach and detach data disks operation on the - /// virtual machine. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> AttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginAttachDetachDataDisksWithHttpMessagesAsync(resourceGroupName, vmName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Migrate a virtual machine from availability set to Flexible Virtual Machine - /// Scale Set. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Parameters supplied to the Migrate Virtual Machine operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task MigrateToVMScaleSetWithHttpMessagesAsync(string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginMigrateToVMScaleSetWithHttpMessagesAsync(resourceGroupName, vmName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Run command on the VM. + /// The operation to create or update a virtual machine. Please note some + /// properties can be set only during virtual machine creation. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// - /// Parameters supplied to the Run command operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> RunCommandWithHttpMessagesAsync(string resourceGroupName, string vmName, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRunCommandWithHttpMessagesAsync(resourceGroupName, vmName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Captures the VM by copying virtual hard disks of the VM and outputs a - /// template that can be used to create similar VMs. - /// - /// - /// The name of the resource group. + /// Parameters supplied to the Create Virtual Machine operation. /// - /// - /// The name of the virtual machine. + /// + /// The ETag of the transformation. Omit this value to always overwrite the + /// current resource. Specify the last-seen ETag value to prevent accidentally + /// overwriting concurrent changes. /// - /// - /// Parameters supplied to the Capture Virtual Machine operation. + /// + /// Set to '*' to allow a new record set to be created, but to prevent updating + /// an existing record set. Other values will result in error from server as + /// they are not supported. /// /// /// Headers that will be added to request. @@ -2321,12 +2397,27 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCaptureWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachine parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); @@ -2339,10 +2430,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { parameters.Validate(); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -2351,19 +2438,21 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); + tracingParameters.Add("ifMatch", ifMatch); + tracingParameters.Add("ifNoneMatch", ifNoneMatch); tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCapture", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", 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/virtualMachines/{vmName}/capture").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -2376,13 +2465,29 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("PUT"); _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 (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) + { + _httpRequest.Headers.Remove("If-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } + if (ifNoneMatch != null) + { + if (_httpRequest.Headers.Contains("If-None-Match")) + { + _httpRequest.Headers.Remove("If-None-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-None-Match", ifNoneMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -2433,7 +2538,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2468,7 +2573,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2481,7 +2586,25 @@ internal VirtualMachinesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -2493,6 +2616,19 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + 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); @@ -2501,17 +2637,16 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// The operation to create or update a virtual machine. Please note some - /// properties can be set only during virtual machine creation. + /// The operation to update a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// - /// Parameters supplied to the Create Virtual Machine operation. + /// Parameters supplied to the Update Virtual Machine operation. /// /// /// The ETag of the transformation. Omit this value to always overwrite the @@ -2544,12 +2679,27 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachine parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); @@ -2558,14 +2708,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (parameters != null) - { - parameters.Validate(); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2024-11-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -2574,21 +2716,21 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("ifNoneMatch", ifNoneMatch); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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/virtualMachines/{vmName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -2601,7 +2743,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2674,7 +2816,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2709,7 +2851,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2734,23 +2876,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 201) + try { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + _httpResponse.Dispose(); } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); } if (_shouldTrace) { @@ -2760,26 +2897,16 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// The operation to update a virtual machine. + /// The operation to delete a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Update Virtual Machine operation. - /// - /// - /// The ETag of the transformation. Omit this value to always overwrite the - /// current resource. Specify the last-seen ETag value to prevent accidentally - /// overwriting concurrent changes. - /// - /// - /// Set to '*' to allow a new record set to be created, but to prevent updating - /// an existing record set. Other values will result in error from server as - /// they are not supported. + /// + /// Optional parameter to force delete virtual machines. /// /// /// Headers that will be added to request. @@ -2790,9 +2917,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -2802,23 +2926,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineUpdate parameters, string ifMatch = default(string), string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (vmName == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (parameters == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -2828,26 +2959,28 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("ifMatch", ifMatch); - tracingParameters.Add("ifNoneMatch", ifNoneMatch); + tracingParameters.Add("forceDeletion", forceDeletion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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/virtualMachines/{vmName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _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 (forceDeletion != null) + { + _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -2855,29 +2988,13 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("DELETE"); _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 (ifMatch != null) - { - if (_httpRequest.Headers.Contains("If-Match")) - { - _httpRequest.Headers.Remove("If-Match"); - } - _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); - } - if (ifNoneMatch != null) - { - if (_httpRequest.Headers.Contains("If-None-Match")) - { - _httpRequest.Headers.Remove("If-None-Match"); - } - _httpRequest.Headers.TryAddWithoutValidation("If-None-Match", ifNoneMatch); - } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -2902,12 +3019,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -2928,7 +3039,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2963,31 +3074,13 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -2996,27 +3089,14 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// The operation to delete a virtual machine. + /// Assess patches on the VM. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Optional parameter to force delete virtual machines. - /// NOTE: As of api-version 2024-11-01, we are rolling out a feature where if - /// the forceDeletion parameter is unspecified OR not explicitly set to false, - /// AND all of the VM's attached disks including the OS disk are marked with - /// the delete option, then the VM will be force deleted. For more details on - /// how to configure delete options for a VM's resources, see [Delete a VM and - /// attached - /// resources](https://learn.microsoft.com/en-us/azure/virtual-machines/delete). - /// To avoid defaulting to force delete, ensure that the forceDeletion - /// parameter is explicitly set to false. This feature is expected to rollout - /// by end of March 2025. - /// /// /// Headers that will be added to request. /// @@ -3026,6 +3106,9 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -3035,19 +3118,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginAssessPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -3057,24 +3151,19 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("forceDeletion", forceDeletion); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginAssessPatches", 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/virtualMachines/{vmName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/assessPatches").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (forceDeletion != null) - { - _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -3086,7 +3175,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3137,7 +3226,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -3172,13 +3261,31 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -3187,15 +3294,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Converts virtual machine disks from blob-based to managed disks. Virtual - /// machine must be stop-deallocated before invoking this operation. + /// Attach and detach data disks to/from the virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Parameters supplied to the attach and detach data disks operation on the + /// virtual machine. + /// /// /// Headers that will be added to request. /// @@ -3205,6 +3315,9 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -3214,19 +3327,38 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginConvertToManagedDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginAttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } - if (Client.SubscriptionId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2024-11-01"; // Tracing @@ -3236,18 +3368,19 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginConvertToManagedDisks", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginAttachDetachDataDisks", 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/virtualMachines/{vmName}/convertToManagedDisks").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/attachDetachDataDisks").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -3291,6 +3424,12 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -3346,13 +3485,44 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + 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); @@ -3361,17 +3531,17 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Shuts down the virtual machine and releases the compute resources. You are - /// not billed for the compute resources that this virtual machine uses. + /// Captures the VM by copying virtual hard disks of the VM and outputs a + /// template that can be used to create similar VMs. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Optional parameter to hibernate a virtual machine. + /// + /// Parameters supplied to the Capture Virtual Machine operation. /// /// /// Headers that will be added to request. @@ -3382,6 +3552,9 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -3391,19 +3564,38 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? hibernate = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCaptureWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } - if (Client.SubscriptionId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2024-11-01"; // Tracing @@ -3413,24 +3605,20 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("hibernate", hibernate); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDeallocate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCapture", 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/virtualMachines/{vmName}/deallocate").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/capture").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (hibernate != null) - { - _queryParameters.Add(string.Format("hibernate={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(hibernate, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -3473,6 +3661,12 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -3528,13 +3722,31 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -3543,22 +3755,15 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// The operation to power off (stop) a virtual machine. The virtual machine - /// can be restarted with the same provisioned resources. You are still charged - /// for this virtual machine. NOTE: This operation is not allowed on a virtual - /// machine that is being deallocated or has already been deallocated. + /// Converts virtual machine disks from blob-based to managed disks. Virtual + /// machine must be stop-deallocated before invoking this operation. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// The parameter to request non-graceful VM shutdown. True value for this flag - /// indicates non-graceful shutdown whereas false indicates otherwise. Default - /// value for this flag is false if not specified - /// /// /// Headers that will be added to request. /// @@ -3577,19 +3782,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? skipShutdown = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginConvertToManagedDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -3599,24 +3815,19 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("skipShutdown", skipShutdown); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginPowerOff", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginConvertToManagedDisks", 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/virtualMachines/{vmName}/powerOff").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/convertToManagedDisks").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (skipShutdown != null) - { - _queryParameters.Add(string.Format("skipShutdown={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skipShutdown, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -3729,14 +3940,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// The operation to reapply a virtual machine's state. + /// Shuts down the virtual machine and releases the compute resources. You are + /// not billed for the compute resources that this virtual machine uses. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Optional parameter to hibernate a virtual machine. + /// /// /// Headers that will be added to request. /// @@ -3755,19 +3970,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginReapplyWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? hibernate = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -3777,23 +4003,28 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("hibernate", hibernate); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginReapply", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginDeallocate", 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/virtualMachines/{vmName}/reapply").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/deallocate").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _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 (hibernate != null) + { + _queryParameters.Add(string.Format("hibernate={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(hibernate, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -3902,14 +4133,17 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// The operation to restart a virtual machine. + /// Installs patches on the VM. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Input for InstallPatches as directly received by the API + /// /// /// Headers that will be added to request. /// @@ -3919,6 +4153,9 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -3928,19 +4165,38 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginInstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } - if (Client.SubscriptionId == null) + if (installPatchesInput == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "installPatchesInput"); + } + if (installPatchesInput != null) + { + installPatchesInput.Validate(); } string apiVersion = "2024-11-01"; // Tracing @@ -3950,18 +4206,19 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("installPatchesInput", installPatchesInput); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginInstallPatches", 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/virtualMachines/{vmName}/restart").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/installPatches").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -4005,6 +4262,12 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(installPatchesInput != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(installPatchesInput, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -4060,13 +4323,31 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -4075,14 +4356,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// The operation to start a virtual machine. + /// Migrate a virtual machine from availability set to Flexible Virtual Machine + /// Scale Set. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Parameters supplied to the Migrate Virtual Machine operation. + /// /// /// Headers that will be added to request. /// @@ -4101,19 +4386,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginMigrateToVMScaleSetWithHttpMessagesAsync(string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -4123,18 +4419,19 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginStart", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginMigrateToVMScaleSet", 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/virtualMachines/{vmName}/start").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/migrateToVirtualMachineScaleSet").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -4178,6 +4475,12 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -4198,7 +4501,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -4248,11 +4551,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Shuts down the virtual machine, moves it to a new node, and powers it back - /// on. + /// The operation to perform maintenance on a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -4275,19 +4577,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginPerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -4297,18 +4610,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRedeploy", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginPerformMaintenance", 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/virtualMachines/{vmName}/redeploy").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/performMaintenance").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -4422,22 +4735,20 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Reimages (upgrade the operating system) a virtual machine which don't have - /// a ephemeral OS disk, for virtual machines who have a ephemeral OS disk the - /// virtual machine is reset to initial state. NOTE: The retaining of old OS - /// disk depends on the value of deleteOption of OS disk. If deleteOption is - /// detach, the old OS disk will be preserved after reimage. If deleteOption is - /// delete, the old OS disk will be deleted after reimage. The deleteOption of - /// the OS disk should be updated accordingly before performing the reimage. + /// The operation to power off (stop) a virtual machine. The virtual machine + /// can be restarted with the same provisioned resources. You are still charged + /// for this virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Reimage Virtual Machine operation. + /// + /// The parameter to request non-graceful VM shutdown. True value for this flag + /// indicates non-graceful shutdown whereas false indicates otherwise. Default + /// value for this flag is false if not specified /// /// /// Headers that will be added to request. @@ -4457,19 +4768,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? skipShutdown = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -4479,24 +4801,28 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("skipShutdown", skipShutdown); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginPowerOff", 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/virtualMachines/{vmName}/reimage").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/powerOff").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _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 (skipShutdown != null) + { + _queryParameters.Add(string.Format("skipShutdown={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skipShutdown, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -4535,12 +4861,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -4611,10 +4931,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// The operation to perform maintenance on a virtual machine. + /// The operation to reapply a virtual machine's state. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -4637,19 +4957,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginPerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginReapplyWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -4659,18 +4990,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginPerformMaintenance", tracingParameters); + 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/virtualMachines/{vmName}/performMaintenance").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/reapply").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -4784,10 +5115,11 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Assess patches on the VM. + /// Shuts down the virtual machine, moves it to a new node, and powers it back + /// on. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -4801,9 +5133,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -4813,19 +5142,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginAssessPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginRedeployWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (vmName == null) + if (resourceGroupName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -4835,18 +5175,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginAssessPatches", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginRedeploy", 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/virtualMachines/{vmName}/assessPatches").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/redeploy").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -4945,31 +5285,13 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -4978,16 +5300,22 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Installs patches on the VM. + /// Reimages (upgrade the operating system) a virtual machine which don't have + /// a ephemeral OS disk, for virtual machines who have a ephemeral OS disk the + /// virtual machine is reset to initial state. NOTE: The retaining of old OS + /// disk depends on the value of deleteOption of OS disk. If deleteOption is + /// detach, the old OS disk will be preserved after reimage. If deleteOption is + /// delete, the old OS disk will be deleted after reimage. The deleteOption of + /// the OS disk should be updated accordingly before performing the reimage. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Input for InstallPatches as directly received by the API + /// + /// Parameters supplied to the Reimage Virtual Machine operation. /// /// /// Headers that will be added to request. @@ -4998,9 +5326,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -5010,27 +5335,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginInstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (vmName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (installPatchesInput == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "installPatchesInput"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (installPatchesInput != null) + if (resourceGroupName != null) { - installPatchesInput.Validate(); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -5040,19 +5368,19 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("installPatchesInput", installPatchesInput); - tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginInstallPatches", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", 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/virtualMachines/{vmName}/installPatches").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/reimage").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -5096,9 +5424,9 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(installPatchesInput != null) + if(parameters != null) { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(installPatchesInput, Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } @@ -5157,31 +5485,13 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -5190,18 +5500,14 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Attach and detach data disks to/from the virtual machine. + /// The operation to restart a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the attach and detach data disks operation on the - /// virtual machine. - /// /// /// Headers that will be added to request. /// @@ -5211,9 +5517,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -5223,27 +5526,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginAttachDetachDataDisksWithHttpMessagesAsync(string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (vmName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (parameters == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (parameters != null) + if (resourceGroupName != null) { - parameters.Validate(); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -5253,19 +5559,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginAttachDetachDataDisks", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", 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/virtualMachines/{vmName}/attachDetachDataDisks").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/restart").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -5309,12 +5614,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -5370,44 +5669,13 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - 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); @@ -5416,17 +5684,16 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Migrate a virtual machine from availability set to Flexible Virtual Machine - /// Scale Set. + /// Run command on the VM. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// - /// Parameters supplied to the Migrate Virtual Machine operation. + /// Parameters supplied to the Run command operation. /// /// /// Headers that will be added to request. @@ -5437,6 +5704,9 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -5446,19 +5716,38 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginMigrateToVMScaleSetWithHttpMessagesAsync(string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginRunCommandWithHttpMessagesAsync(string resourceGroupName, string vmName, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } if (vmName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } - if (Client.SubscriptionId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2024-11-01"; // Tracing @@ -5468,19 +5757,19 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginMigrateToVMScaleSet", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginRunCommand", 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/virtualMachines/{vmName}/migrateToVirtualMachineScaleSet").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/runCommand").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -5550,7 +5839,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -5585,13 +5874,31 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -5600,17 +5907,14 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Run command on the VM. + /// The operation to start a virtual machine. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Run command operation. - /// /// /// Headers that will be added to request. /// @@ -5620,9 +5924,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -5632,27 +5933,30 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginRunCommandWithHttpMessagesAsync(string resourceGroupName, string vmName, RunCommandInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (vmName == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (parameters == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (parameters != null) + if (resourceGroupName != null) { - parameters.Validate(); + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } } - if (Client.SubscriptionId == null) + if (vmName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); } string apiVersion = "2024-11-01"; // Tracing @@ -5662,19 +5966,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRunCommand", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginStart", 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/virtualMachines/{vmName}/runCommand").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/start").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -5718,12 +6021,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -5779,31 +6076,13 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -5986,7 +6265,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Lists all of the virtual machines in the specified resource group. Use the + /// Lists all of the virtual machines in the specified subscription. Use the /// nextLink property in the response to get the next page of virtual machines. /// /// @@ -6013,7 +6292,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -6028,7 +6307,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAllNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -6160,7 +6439,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// Lists all of the virtual machines in the specified subscription. Use the + /// Lists all of the virtual machines in the specified resource group. Use the /// nextLink property in the response to get the next page of virtual machines. /// /// @@ -6187,7 +6466,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -6202,7 +6481,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAllNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachinesOperationsExtensions.cs b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachinesOperationsExtensions.cs index d54a4cca04d4..393fc2924ca9 100644 --- a/src/Compute/Compute.Management.Sdk/Generated/VirtualMachinesOperationsExtensions.cs +++ b/src/Compute/Compute.Management.Sdk/Generated/VirtualMachinesOperationsExtensions.cs @@ -31,7 +31,7 @@ public static partial class VirtualMachinesOperationsExtensions /// The operations group for this extension method. /// /// - /// The location for which virtual machines under the subscription are queried. + /// The name of Azure region. /// public static IPage ListByLocation(this IVirtualMachinesOperations operations, string location) { @@ -46,7 +46,7 @@ public static IPage ListByLocation(this IVirtualMachinesOperatio /// The operations group for this extension method. /// /// - /// The location for which virtual machines under the subscription are queried. + /// The name of Azure region. /// /// /// The cancellation token. @@ -60,48 +60,176 @@ public static IPage ListByLocation(this IVirtualMachinesOperatio } /// - /// Captures the VM by copying virtual hard disks of the VM and outputs a - /// template that can be used to create similar VMs. + /// Lists all of the virtual machines in the specified subscription. Use the + /// nextLink property in the response to get the next page of virtual machines. + /// + /// + /// The operations group for this extension method. + /// + /// + /// statusOnly=true enables fetching run time status of all Virtual Machines in + /// the subscription. + /// + /// + /// The system query option to filter VMs returned in the response. Allowed + /// value is 'virtualMachineScaleSet/id' eq + /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' + /// + /// + /// The expand expression to apply on operation. 'instanceView' enables + /// fetching run time status of all Virtual Machines, this can only be + /// specified if a valid $filter option is specified. Possible values include: + /// 'instanceView' + /// + public static IPage ListAll(this IVirtualMachinesOperations operations, string statusOnly = default(string), string filter = default(string), string expand = default(string)) + { + return operations.ListAllAsync(statusOnly, filter, expand).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the virtual machines in the specified subscription. Use the + /// nextLink property in the response to get the next page of virtual machines. + /// + /// + /// The operations group for this extension method. + /// + /// + /// statusOnly=true enables fetching run time status of all Virtual Machines in + /// the subscription. + /// + /// + /// The system query option to filter VMs returned in the response. Allowed + /// value is 'virtualMachineScaleSet/id' eq + /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' + /// + /// + /// The expand expression to apply on operation. 'instanceView' enables + /// fetching run time status of all Virtual Machines, this can only be + /// specified if a valid $filter option is specified. Possible values include: + /// 'instanceView' + /// + /// + /// The cancellation token. + /// + public static async Task> ListAllAsync(this IVirtualMachinesOperations operations, string statusOnly = default(string), string filter = default(string), string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAllWithHttpMessagesAsync(statusOnly, filter, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the virtual machines in the specified resource group. Use the + /// nextLink property in the response to get the next page of virtual machines. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The system query option to filter VMs returned in the response. Allowed + /// value is 'virtualMachineScaleSet/id' eq + /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' + /// + /// + /// The expand expression to apply on operation. 'instanceView' enables + /// fetching run time status of all Virtual Machines, this can only be + /// specified if a valid $filter option is specified. Possible values include: + /// 'instanceView' + /// + public static IPage List(this IVirtualMachinesOperations operations, string resourceGroupName, string filter = default(string), string expand = default(string)) + { + return operations.ListAsync(resourceGroupName, filter, expand).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the virtual machines in the specified resource group. Use the + /// nextLink property in the response to get the next page of virtual machines. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The system query option to filter VMs returned in the response. Allowed + /// value is 'virtualMachineScaleSet/id' eq + /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' + /// + /// + /// The expand expression to apply on operation. 'instanceView' enables + /// fetching run time status of all Virtual Machines, this can only be + /// specified if a valid $filter option is specified. Possible values include: + /// 'instanceView' + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string filter = default(string), string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, filter, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Retrieves information about the model view or the instance view of a + /// virtual machine. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Capture Virtual Machine operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' retrieves a + /// snapshot of the runtime properties of the virtual machine that is managed + /// by the platform and can change outside of control plane operations. + /// 'UserData' retrieves the UserData property as part of the VM model view + /// that was provided by the user during the VM Create/Update operation. + /// Possible values include: 'instanceView', 'userData', 'resiliencyView' /// - public static VirtualMachineCaptureResult Capture(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters) + public static VirtualMachine Get(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, InstanceViewTypes? expand = default(InstanceViewTypes?)) { - return operations.CaptureAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, vmName, expand).GetAwaiter().GetResult(); } /// - /// Captures the VM by copying virtual hard disks of the VM and outputs a - /// template that can be used to create similar VMs. + /// Retrieves information about the model view or the instance view of a + /// virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Capture Virtual Machine operation. + /// + /// The expand expression to apply on the operation. 'InstanceView' retrieves a + /// snapshot of the runtime properties of the virtual machine that is managed + /// by the platform and can change outside of control plane operations. + /// 'UserData' retrieves the UserData property as part of the VM model view + /// that was provided by the user during the VM Create/Update operation. + /// Possible values include: 'instanceView', 'userData', 'resiliencyView' /// /// /// The cancellation token. /// - public static async Task CaptureAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CaptureWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmName, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -115,7 +243,7 @@ public static VirtualMachineCaptureResult Capture(this IVirtualMachinesOperation /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -146,7 +274,7 @@ public static VirtualMachineCaptureResult Capture(this IVirtualMachinesOperation /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -182,7 +310,7 @@ public static VirtualMachineCaptureResult Capture(this IVirtualMachinesOperation /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -212,7 +340,7 @@ public static VirtualMachineCaptureResult Capture(this IVirtualMachinesOperation /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -248,23 +376,13 @@ public static VirtualMachineCaptureResult Capture(this IVirtualMachinesOperation /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// /// Optional parameter to force delete virtual machines. - /// NOTE: As of api-version 2024-11-01, we are rolling out a feature where if - /// the forceDeletion parameter is unspecified OR not explicitly set to false, - /// AND all of the VM's attached disks including the OS disk are marked with - /// the delete option, then the VM will be force deleted. For more details on - /// how to configure delete options for a VM's resources, see [Delete a VM and - /// attached - /// resources](https://learn.microsoft.com/en-us/azure/virtual-machines/delete). - /// To avoid defaulting to force delete, ensure that the forceDeletion - /// parameter is explicitly set to false. This feature is expected to rollout - /// by end of March 2025. /// public static void Delete(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? forceDeletion = default(bool?)) { @@ -278,23 +396,13 @@ public static VirtualMachineCaptureResult Capture(this IVirtualMachinesOperation /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// /// Optional parameter to force delete virtual machines. - /// NOTE: As of api-version 2024-11-01, we are rolling out a feature where if - /// the forceDeletion parameter is unspecified OR not explicitly set to false, - /// AND all of the VM's attached disks including the OS disk are marked with - /// the delete option, then the VM will be force deleted. For more details on - /// how to configure delete options for a VM's resources, see [Delete a VM and - /// attached - /// resources](https://learn.microsoft.com/en-us/azure/virtual-machines/delete). - /// To avoid defaulting to force delete, ensure that the forceDeletion - /// parameter is explicitly set to false. This feature is expected to rollout - /// by end of March 2025. /// /// /// The cancellation token. @@ -305,98 +413,136 @@ public static VirtualMachineCaptureResult Capture(this IVirtualMachinesOperation } /// - /// Retrieves information about the model view or the instance view of a - /// virtual machine. + /// Assess patches on the VM. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' retrieves a - /// snapshot of the runtime properties of the virtual machine that is managed - /// by the platform and can change outside of control plane operations. - /// 'UserData' retrieves the UserData property as part of the VM model view - /// that was provided by the user during the VM Create/Update operation. - /// Possible values include: 'instanceView', 'userData' + public static VirtualMachineAssessPatchesResult AssessPatches(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + { + return operations.AssessPatchesAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + } + + /// + /// Assess patches on the VM. + /// + /// + /// The operations group for this extension method. /// - public static VirtualMachine Get(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, InstanceViewTypes? expand = default(InstanceViewTypes?)) + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// The cancellation token. + /// + public static async Task AssessPatchesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - return operations.GetAsync(resourceGroupName, vmName, expand).GetAwaiter().GetResult(); + using (var _result = await operations.AssessPatchesWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Retrieves information about the model view or the instance view of a + /// Attach and detach data disks to/from the virtual machine. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Parameters supplied to the attach and detach data disks operation on the /// virtual machine. + /// + public static StorageProfile AttachDetachDataDisks(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters) + { + return operations.AttachDetachDataDisksAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Attach and detach data disks to/from the virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// The expand expression to apply on the operation. 'InstanceView' retrieves a - /// snapshot of the runtime properties of the virtual machine that is managed - /// by the platform and can change outside of control plane operations. - /// 'UserData' retrieves the UserData property as part of the VM model view - /// that was provided by the user during the VM Create/Update operation. - /// Possible values include: 'instanceView', 'userData' + /// + /// Parameters supplied to the attach and detach data disks operation on the + /// virtual machine. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task AttachDetachDataDisksAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.AttachDetachDataDisksWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Retrieves information about the run-time state of a virtual machine. + /// Captures the VM by copying virtual hard disks of the VM and outputs a + /// template that can be used to create similar VMs. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static VirtualMachineInstanceView InstanceView(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + /// + /// Parameters supplied to the Capture Virtual Machine operation. + /// + public static VirtualMachineCaptureResult Capture(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters) { - return operations.InstanceViewAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + return operations.CaptureAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); } /// - /// Retrieves information about the run-time state of a virtual machine. + /// Captures the VM by copying virtual hard disks of the VM and outputs a + /// template that can be used to create similar VMs. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Parameters supplied to the Capture Virtual Machine operation. + /// /// /// The cancellation token. /// - public static async Task InstanceViewAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CaptureAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.InstanceViewWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CaptureWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -410,7 +556,7 @@ public static VirtualMachineInstanceView InstanceView(this IVirtualMachinesOpera /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -428,7 +574,7 @@ public static void ConvertToManagedDisks(this IVirtualMachinesOperations operati /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -449,7 +595,7 @@ public static void ConvertToManagedDisks(this IVirtualMachinesOperations operati /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -470,7 +616,7 @@ public static void ConvertToManagedDisks(this IVirtualMachinesOperations operati /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -498,7 +644,7 @@ public static void ConvertToManagedDisks(this IVirtualMachinesOperations operati /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -520,7 +666,7 @@ public static void Generalize(this IVirtualMachinesOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -534,150 +680,76 @@ public static void Generalize(this IVirtualMachinesOperations operations, string } /// - /// Lists all of the virtual machines in the specified resource group. Use the - /// nextLink property in the response to get the next page of virtual machines. + /// Installs patches on the VM. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// - /// - /// The system query option to filter VMs returned in the response. Allowed - /// value is 'virtualMachineScaleSet/id' eq - /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' + /// + /// The name of the virtual machine. /// - /// - /// The expand expression to apply on operation. 'instanceView' enables - /// fetching run time status of all Virtual Machines, this can only be - /// specified if a valid $filter option is specified. Possible values include: - /// 'instanceView' + /// + /// Input for InstallPatches as directly received by the API /// - public static IPage List(this IVirtualMachinesOperations operations, string resourceGroupName, string filter = default(string), string expand = default(string)) + public static VirtualMachineInstallPatchesResult InstallPatches(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput) { - return operations.ListAsync(resourceGroupName, filter, expand).GetAwaiter().GetResult(); + return operations.InstallPatchesAsync(resourceGroupName, vmName, installPatchesInput).GetAwaiter().GetResult(); } /// - /// Lists all of the virtual machines in the specified resource group. Use the - /// nextLink property in the response to get the next page of virtual machines. + /// Installs patches on the VM. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. - /// - /// - /// The system query option to filter VMs returned in the response. Allowed - /// value is 'virtualMachineScaleSet/id' eq - /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' - /// - /// - /// The expand expression to apply on operation. 'instanceView' enables - /// fetching run time status of all Virtual Machines, this can only be - /// specified if a valid $filter option is specified. Possible values include: - /// 'instanceView' - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string filter = default(string), string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, filter, expand, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Lists all of the virtual machines in the specified subscription. Use the - /// nextLink property in the response to get the next page of virtual machines. - /// - /// - /// The operations group for this extension method. + /// The name of the resource group. The name is case insensitive. /// - /// - /// statusOnly=true enables fetching run time status of all Virtual Machines in - /// the subscription. - /// - /// - /// The system query option to filter VMs returned in the response. Allowed - /// value is 'virtualMachineScaleSet/id' eq - /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' - /// - /// - /// The expand expression to apply on operation. 'instanceView' enables - /// fetching run time status of all Virtual Machines, this can only be - /// specified if a valid $filter option is specified. Possible values include: - /// 'instanceView' - /// - public static IPage ListAll(this IVirtualMachinesOperations operations, string statusOnly = default(string), string filter = default(string), string expand = default(string)) - { - return operations.ListAllAsync(statusOnly, filter, expand).GetAwaiter().GetResult(); - } - - /// - /// Lists all of the virtual machines in the specified subscription. Use the - /// nextLink property in the response to get the next page of virtual machines. - /// - /// - /// The operations group for this extension method. - /// - /// - /// statusOnly=true enables fetching run time status of all Virtual Machines in - /// the subscription. - /// - /// - /// The system query option to filter VMs returned in the response. Allowed - /// value is 'virtualMachineScaleSet/id' eq - /// /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}' + /// + /// The name of the virtual machine. /// - /// - /// The expand expression to apply on operation. 'instanceView' enables - /// fetching run time status of all Virtual Machines, this can only be - /// specified if a valid $filter option is specified. Possible values include: - /// 'instanceView' + /// + /// Input for InstallPatches as directly received by the API /// /// /// The cancellation token. /// - public static async Task> ListAllAsync(this IVirtualMachinesOperations operations, string statusOnly = default(string), string filter = default(string), string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task InstallPatchesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListAllWithHttpMessagesAsync(statusOnly, filter, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.InstallPatchesWithHttpMessagesAsync(resourceGroupName, vmName, installPatchesInput, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all available virtual machine sizes to which the specified virtual - /// machine can be resized. + /// Retrieves information about the run-time state of a virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static IEnumerable ListAvailableSizes(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + public static VirtualMachineInstanceView InstanceView(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) { - return operations.ListAvailableSizesAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + return operations.InstanceViewAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); } /// - /// Lists all available virtual machine sizes to which the specified virtual - /// machine can be resized. + /// Retrieves information about the run-time state of a virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -685,92 +757,84 @@ public static IEnumerable ListAvailableSizes(this IVirtualMa /// /// The cancellation token. /// - public static async Task> ListAvailableSizesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task InstanceViewAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListAvailableSizesWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.InstanceViewWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// The operation to power off (stop) a virtual machine. The virtual machine - /// can be restarted with the same provisioned resources. You are still charged - /// for this virtual machine. NOTE: This operation is not allowed on a virtual - /// machine that is being deallocated or has already been deallocated. + /// Migrate a virtual machine from availability set to Flexible Virtual Machine + /// Scale Set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// The parameter to request non-graceful VM shutdown. True value for this flag - /// indicates non-graceful shutdown whereas false indicates otherwise. Default - /// value for this flag is false if not specified + /// + /// Parameters supplied to the Migrate Virtual Machine operation. /// - public static void PowerOff(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? skipShutdown = false) + public static void MigrateToVMScaleSet(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput)) { - operations.PowerOffAsync(resourceGroupName, vmName, skipShutdown).GetAwaiter().GetResult(); + operations.MigrateToVMScaleSetAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); } /// - /// The operation to power off (stop) a virtual machine. The virtual machine - /// can be restarted with the same provisioned resources. You are still charged - /// for this virtual machine. NOTE: This operation is not allowed on a virtual - /// machine that is being deallocated or has already been deallocated. + /// Migrate a virtual machine from availability set to Flexible Virtual Machine + /// Scale Set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// The parameter to request non-graceful VM shutdown. True value for this flag - /// indicates non-graceful shutdown whereas false indicates otherwise. Default - /// value for this flag is false if not specified + /// + /// Parameters supplied to the Migrate Virtual Machine operation. /// /// /// The cancellation token. /// - public static async Task PowerOffAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? skipShutdown = false, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task MigrateToVMScaleSetAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.PowerOffWithHttpMessagesAsync(resourceGroupName, vmName, skipShutdown, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.MigrateToVMScaleSetWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// The operation to reapply a virtual machine's state. + /// The operation to perform maintenance on a virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static void Reapply(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + public static void PerformMaintenance(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) { - operations.ReapplyAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + operations.PerformMaintenanceAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); } /// - /// The operation to reapply a virtual machine's state. + /// The operation to perform maintenance on a virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -778,73 +842,87 @@ public static void Reapply(this IVirtualMachinesOperations operations, string re /// /// The cancellation token. /// - public static async Task ReapplyAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PerformMaintenanceAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.ReapplyWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.PerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// The operation to restart a virtual machine. + /// The operation to power off (stop) a virtual machine. The virtual machine + /// can be restarted with the same provisioned resources. You are still charged + /// for this virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static void Restart(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + /// + /// The parameter to request non-graceful VM shutdown. True value for this flag + /// indicates non-graceful shutdown whereas false indicates otherwise. Default + /// value for this flag is false if not specified + /// + public static void PowerOff(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? skipShutdown = default(bool?)) { - operations.RestartAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + operations.PowerOffAsync(resourceGroupName, vmName, skipShutdown).GetAwaiter().GetResult(); } /// - /// The operation to restart a virtual machine. + /// The operation to power off (stop) a virtual machine. The virtual machine + /// can be restarted with the same provisioned resources. You are still charged + /// for this virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// The parameter to request non-graceful VM shutdown. True value for this flag + /// indicates non-graceful shutdown whereas false indicates otherwise. Default + /// value for this flag is false if not specified + /// /// /// The cancellation token. /// - public static async Task RestartAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PowerOffAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? skipShutdown = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.RestartWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.PowerOffWithHttpMessagesAsync(resourceGroupName, vmName, skipShutdown, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// The operation to start a virtual machine. + /// The operation to reapply a virtual machine's state. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static void Start(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + public static void Reapply(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) { - operations.StartAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + operations.ReapplyAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); } /// - /// The operation to start a virtual machine. + /// The operation to reapply a virtual machine's state. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -852,9 +930,9 @@ public static void Start(this IVirtualMachinesOperations operations, string reso /// /// The cancellation token. /// - public static async Task StartAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReapplyAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.StartWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.ReapplyWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -865,7 +943,7 @@ public static void Start(this IVirtualMachinesOperations operations, string reso /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -883,7 +961,7 @@ public static void Redeploy(this IVirtualMachinesOperations operations, string r /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -909,7 +987,7 @@ public static void Redeploy(this IVirtualMachinesOperations operations, string r /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -935,7 +1013,7 @@ public static void Redeploy(this IVirtualMachinesOperations operations, string r /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -951,6 +1029,43 @@ public static void Redeploy(this IVirtualMachinesOperations operations, string r (await operations.ReimageWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// The operation to restart a virtual machine. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + public static void Restart(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + { + operations.RestartAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + } + + /// + /// The operation to restart a virtual machine. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// The cancellation token. + /// + public static async Task RestartAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.RestartWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// The operation to retrieve SAS URIs for a virtual machine's boot diagnostic /// logs. @@ -959,7 +1074,7 @@ public static void Redeploy(this IVirtualMachinesOperations operations, string r /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -982,7 +1097,7 @@ public static void Redeploy(this IVirtualMachinesOperations operations, string r /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1004,40 +1119,49 @@ public static void Redeploy(this IVirtualMachinesOperations operations, string r } /// - /// The operation to perform maintenance on a virtual machine. + /// Run command on the VM. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static void PerformMaintenance(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + /// + /// Parameters supplied to the Run command operation. + /// + public static RunCommandResult RunCommand(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, RunCommandInput parameters) { - operations.PerformMaintenanceAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + return operations.RunCommandAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); } /// - /// The operation to perform maintenance on a virtual machine. + /// Run command on the VM. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Parameters supplied to the Run command operation. + /// /// /// The cancellation token. /// - public static async Task PerformMaintenanceAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RunCommandAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, RunCommandInput parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.PerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.RunCommandWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// @@ -1047,7 +1171,7 @@ public static void PerformMaintenance(this IVirtualMachinesOperations operations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1064,7 +1188,7 @@ public static void SimulateEviction(this IVirtualMachinesOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1078,30 +1202,30 @@ public static void SimulateEviction(this IVirtualMachinesOperations operations, } /// - /// Assess patches on the VM. + /// The operation to start a virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static VirtualMachineAssessPatchesResult AssessPatches(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + public static void Start(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) { - return operations.AssessPatchesAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + operations.StartAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); } /// - /// Assess patches on the VM. + /// The operation to start a virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1109,242 +1233,48 @@ public static VirtualMachineAssessPatchesResult AssessPatches(this IVirtualMachi /// /// The cancellation token. /// - public static async Task AssessPatchesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task StartAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.AssessPatchesWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.StartWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Installs patches on the VM. + /// Lists all available virtual machine sizes to which the specified virtual + /// machine can be resized. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Input for InstallPatches as directly received by the API - /// - public static VirtualMachineInstallPatchesResult InstallPatches(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput) + public static IEnumerable ListAvailableSizes(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) { - return operations.InstallPatchesAsync(resourceGroupName, vmName, installPatchesInput).GetAwaiter().GetResult(); + return operations.ListAvailableSizesAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); } /// - /// Installs patches on the VM. + /// Lists all available virtual machine sizes to which the specified virtual + /// machine can be resized. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Input for InstallPatches as directly received by the API - /// /// /// The cancellation token. /// - public static async Task InstallPatchesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAvailableSizesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.InstallPatchesWithHttpMessagesAsync(resourceGroupName, vmName, installPatchesInput, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Attach and detach data disks to/from the virtual machine. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Parameters supplied to the attach and detach data disks operation on the - /// virtual machine. - /// - public static StorageProfile AttachDetachDataDisks(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters) - { - return operations.AttachDetachDataDisksAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Attach and detach data disks to/from the virtual machine. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Parameters supplied to the attach and detach data disks operation on the - /// virtual machine. - /// - /// - /// The cancellation token. - /// - public static async Task AttachDetachDataDisksAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.AttachDetachDataDisksWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Migrate a virtual machine from availability set to Flexible Virtual Machine - /// Scale Set. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Parameters supplied to the Migrate Virtual Machine operation. - /// - public static void MigrateToVMScaleSet(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput)) - { - operations.MigrateToVMScaleSetAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Migrate a virtual machine from availability set to Flexible Virtual Machine - /// Scale Set. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Parameters supplied to the Migrate Virtual Machine operation. - /// - /// - /// The cancellation token. - /// - public static async Task MigrateToVMScaleSetAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput), CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.MigrateToVMScaleSetWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Run command on the VM. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Parameters supplied to the Run command operation. - /// - public static RunCommandResult RunCommand(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, RunCommandInput parameters) - { - return operations.RunCommandAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Run command on the VM. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Parameters supplied to the Run command operation. - /// - /// - /// The cancellation token. - /// - public static async Task RunCommandAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, RunCommandInput parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.RunCommandWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Captures the VM by copying virtual hard disks of the VM and outputs a - /// template that can be used to create similar VMs. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Parameters supplied to the Capture Virtual Machine operation. - /// - public static VirtualMachineCaptureResult BeginCapture(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters) - { - return operations.BeginCaptureAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Captures the VM by copying virtual hard disks of the VM and outputs a - /// template that can be used to create similar VMs. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Parameters supplied to the Capture Virtual Machine operation. - /// - /// - /// The cancellation token. - /// - public static async Task BeginCaptureAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.BeginCaptureWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListAvailableSizesWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1358,7 +1288,7 @@ public static VirtualMachineCaptureResult BeginCapture(this IVirtualMachinesOper /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1389,7 +1319,7 @@ public static VirtualMachineCaptureResult BeginCapture(this IVirtualMachinesOper /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1425,7 +1355,7 @@ public static VirtualMachineCaptureResult BeginCapture(this IVirtualMachinesOper /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1455,7 +1385,7 @@ public static VirtualMachineCaptureResult BeginCapture(this IVirtualMachinesOper /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1491,23 +1421,13 @@ public static VirtualMachineCaptureResult BeginCapture(this IVirtualMachinesOper /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// /// Optional parameter to force delete virtual machines. - /// NOTE: As of api-version 2024-11-01, we are rolling out a feature where if - /// the forceDeletion parameter is unspecified OR not explicitly set to false, - /// AND all of the VM's attached disks including the OS disk are marked with - /// the delete option, then the VM will be force deleted. For more details on - /// how to configure delete options for a VM's resources, see [Delete a VM and - /// attached - /// resources](https://learn.microsoft.com/en-us/azure/virtual-machines/delete). - /// To avoid defaulting to force delete, ensure that the forceDeletion - /// parameter is explicitly set to false. This feature is expected to rollout - /// by end of March 2025. /// public static void BeginDelete(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? forceDeletion = default(bool?)) { @@ -1521,23 +1441,13 @@ public static VirtualMachineCaptureResult BeginCapture(this IVirtualMachinesOper /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// /// Optional parameter to force delete virtual machines. - /// NOTE: As of api-version 2024-11-01, we are rolling out a feature where if - /// the forceDeletion parameter is unspecified OR not explicitly set to false, - /// AND all of the VM's attached disks including the OS disk are marked with - /// the delete option, then the VM will be force deleted. For more details on - /// how to configure delete options for a VM's resources, see [Delete a VM and - /// attached - /// resources](https://learn.microsoft.com/en-us/azure/virtual-machines/delete). - /// To avoid defaulting to force delete, ensure that the forceDeletion - /// parameter is explicitly set to false. This feature is expected to rollout - /// by end of March 2025. /// /// /// The cancellation token. @@ -1548,32 +1458,30 @@ public static VirtualMachineCaptureResult BeginCapture(this IVirtualMachinesOper } /// - /// Converts virtual machine disks from blob-based to managed disks. Virtual - /// machine must be stop-deallocated before invoking this operation. + /// Assess patches on the VM. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static void BeginConvertToManagedDisks(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + public static VirtualMachineAssessPatchesResult BeginAssessPatches(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) { - operations.BeginConvertToManagedDisksAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + return operations.BeginAssessPatchesAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); } /// - /// Converts virtual machine disks from blob-based to managed disks. Virtual - /// machine must be stop-deallocated before invoking this operation. + /// Assess patches on the VM. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1581,247 +1489,310 @@ public static void BeginConvertToManagedDisks(this IVirtualMachinesOperations op /// /// The cancellation token. /// - public static async Task BeginConvertToManagedDisksAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginAssessPatchesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginConvertToManagedDisksWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.BeginAssessPatchesWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Shuts down the virtual machine and releases the compute resources. You are - /// not billed for the compute resources that this virtual machine uses. + /// Attach and detach data disks to/from the virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Optional parameter to hibernate a virtual machine. + /// + /// Parameters supplied to the attach and detach data disks operation on the + /// virtual machine. /// - public static void BeginDeallocate(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? hibernate = default(bool?)) + public static StorageProfile BeginAttachDetachDataDisks(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters) { - operations.BeginDeallocateAsync(resourceGroupName, vmName, hibernate).GetAwaiter().GetResult(); + return operations.BeginAttachDetachDataDisksAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); } /// - /// Shuts down the virtual machine and releases the compute resources. You are - /// not billed for the compute resources that this virtual machine uses. + /// Attach and detach data disks to/from the virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Optional parameter to hibernate a virtual machine. + /// + /// Parameters supplied to the attach and detach data disks operation on the + /// virtual machine. /// /// /// The cancellation token. /// - public static async Task BeginDeallocateAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? hibernate = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginAttachDetachDataDisksAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginDeallocateWithHttpMessagesAsync(resourceGroupName, vmName, hibernate, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.BeginAttachDetachDataDisksWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// The operation to power off (stop) a virtual machine. The virtual machine - /// can be restarted with the same provisioned resources. You are still charged - /// for this virtual machine. NOTE: This operation is not allowed on a virtual - /// machine that is being deallocated or has already been deallocated. + /// Captures the VM by copying virtual hard disks of the VM and outputs a + /// template that can be used to create similar VMs. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// The parameter to request non-graceful VM shutdown. True value for this flag - /// indicates non-graceful shutdown whereas false indicates otherwise. Default - /// value for this flag is false if not specified + /// + /// Parameters supplied to the Capture Virtual Machine operation. /// - public static void BeginPowerOff(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? skipShutdown = false) + public static VirtualMachineCaptureResult BeginCapture(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters) { - operations.BeginPowerOffAsync(resourceGroupName, vmName, skipShutdown).GetAwaiter().GetResult(); + return operations.BeginCaptureAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); } /// - /// The operation to power off (stop) a virtual machine. The virtual machine - /// can be restarted with the same provisioned resources. You are still charged - /// for this virtual machine. NOTE: This operation is not allowed on a virtual - /// machine that is being deallocated or has already been deallocated. + /// Captures the VM by copying virtual hard disks of the VM and outputs a + /// template that can be used to create similar VMs. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// The parameter to request non-graceful VM shutdown. True value for this flag - /// indicates non-graceful shutdown whereas false indicates otherwise. Default - /// value for this flag is false if not specified + /// + /// Parameters supplied to the Capture Virtual Machine operation. /// /// /// The cancellation token. /// - public static async Task BeginPowerOffAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? skipShutdown = false, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginCaptureAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginPowerOffWithHttpMessagesAsync(resourceGroupName, vmName, skipShutdown, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.BeginCaptureWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// The operation to reapply a virtual machine's state. + /// Converts virtual machine disks from blob-based to managed disks. Virtual + /// machine must be stop-deallocated before invoking this operation. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static void BeginReapply(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + public static void BeginConvertToManagedDisks(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + { + operations.BeginConvertToManagedDisksAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + } + + /// + /// Converts virtual machine disks from blob-based to managed disks. Virtual + /// machine must be stop-deallocated before invoking this operation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// The cancellation token. + /// + public static async Task BeginConvertToManagedDisksAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginConvertToManagedDisksWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Shuts down the virtual machine and releases the compute resources. You are + /// not billed for the compute resources that this virtual machine uses. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Optional parameter to hibernate a virtual machine. + /// + public static void BeginDeallocate(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? hibernate = default(bool?)) { - operations.BeginReapplyAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + operations.BeginDeallocateAsync(resourceGroupName, vmName, hibernate).GetAwaiter().GetResult(); } /// - /// The operation to reapply a virtual machine's state. + /// Shuts down the virtual machine and releases the compute resources. You are + /// not billed for the compute resources that this virtual machine uses. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Optional parameter to hibernate a virtual machine. + /// /// /// The cancellation token. /// - public static async Task BeginReapplyAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginDeallocateAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? hibernate = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginReapplyWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginDeallocateWithHttpMessagesAsync(resourceGroupName, vmName, hibernate, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// The operation to restart a virtual machine. + /// Installs patches on the VM. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static void BeginRestart(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + /// + /// Input for InstallPatches as directly received by the API + /// + public static VirtualMachineInstallPatchesResult BeginInstallPatches(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput) { - operations.BeginRestartAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + return operations.BeginInstallPatchesAsync(resourceGroupName, vmName, installPatchesInput).GetAwaiter().GetResult(); } /// - /// The operation to restart a virtual machine. + /// Installs patches on the VM. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Input for InstallPatches as directly received by the API + /// /// /// The cancellation token. /// - public static async Task BeginRestartAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginInstallPatchesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.BeginInstallPatchesWithHttpMessagesAsync(resourceGroupName, vmName, installPatchesInput, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// The operation to start a virtual machine. + /// Migrate a virtual machine from availability set to Flexible Virtual Machine + /// Scale Set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static void BeginStart(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + /// + /// Parameters supplied to the Migrate Virtual Machine operation. + /// + public static void BeginMigrateToVMScaleSet(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput)) { - operations.BeginStartAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + operations.BeginMigrateToVMScaleSetAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); } /// - /// The operation to start a virtual machine. + /// Migrate a virtual machine from availability set to Flexible Virtual Machine + /// Scale Set. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// + /// + /// Parameters supplied to the Migrate Virtual Machine operation. + /// /// /// The cancellation token. /// - public static async Task BeginStartAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginMigrateToVMScaleSetAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginStartWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginMigrateToVMScaleSetWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Shuts down the virtual machine, moves it to a new node, and powers it back - /// on. + /// The operation to perform maintenance on a virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static void BeginRedeploy(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + public static void BeginPerformMaintenance(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) { - operations.BeginRedeployAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + operations.BeginPerformMaintenanceAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); } /// - /// Shuts down the virtual machine, moves it to a new node, and powers it back - /// on. + /// The operation to perform maintenance on a virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1829,91 +1800,87 @@ public static void BeginRedeploy(this IVirtualMachinesOperations operations, str /// /// The cancellation token. /// - public static async Task BeginRedeployAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginPerformMaintenanceAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginRedeployWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginPerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Reimages (upgrade the operating system) a virtual machine which don't have - /// a ephemeral OS disk, for virtual machines who have a ephemeral OS disk the - /// virtual machine is reset to initial state. NOTE: The retaining of old OS - /// disk depends on the value of deleteOption of OS disk. If deleteOption is - /// detach, the old OS disk will be preserved after reimage. If deleteOption is - /// delete, the old OS disk will be deleted after reimage. The deleteOption of - /// the OS disk should be updated accordingly before performing the reimage. + /// The operation to power off (stop) a virtual machine. The virtual machine + /// can be restarted with the same provisioned resources. You are still charged + /// for this virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Reimage Virtual Machine operation. + /// + /// The parameter to request non-graceful VM shutdown. True value for this flag + /// indicates non-graceful shutdown whereas false indicates otherwise. Default + /// value for this flag is false if not specified /// - public static void BeginReimage(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters)) + public static void BeginPowerOff(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? skipShutdown = default(bool?)) { - operations.BeginReimageAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); + operations.BeginPowerOffAsync(resourceGroupName, vmName, skipShutdown).GetAwaiter().GetResult(); } /// - /// Reimages (upgrade the operating system) a virtual machine which don't have - /// a ephemeral OS disk, for virtual machines who have a ephemeral OS disk the - /// virtual machine is reset to initial state. NOTE: The retaining of old OS - /// disk depends on the value of deleteOption of OS disk. If deleteOption is - /// detach, the old OS disk will be preserved after reimage. If deleteOption is - /// delete, the old OS disk will be deleted after reimage. The deleteOption of - /// the OS disk should be updated accordingly before performing the reimage. + /// The operation to power off (stop) a virtual machine. The virtual machine + /// can be restarted with the same provisioned resources. You are still charged + /// for this virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Reimage Virtual Machine operation. + /// + /// The parameter to request non-graceful VM shutdown. True value for this flag + /// indicates non-graceful shutdown whereas false indicates otherwise. Default + /// value for this flag is false if not specified /// /// /// The cancellation token. /// - public static async Task BeginReimageAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginPowerOffAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? skipShutdown = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginReimageWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginPowerOffWithHttpMessagesAsync(resourceGroupName, vmName, skipShutdown, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// The operation to perform maintenance on a virtual machine. + /// The operation to reapply a virtual machine's state. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static void BeginPerformMaintenance(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + public static void BeginReapply(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) { - operations.BeginPerformMaintenanceAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + operations.BeginReapplyAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); } /// - /// The operation to perform maintenance on a virtual machine. + /// The operation to reapply a virtual machine's state. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1921,36 +1888,38 @@ public static void BeginPerformMaintenance(this IVirtualMachinesOperations opera /// /// The cancellation token. /// - public static async Task BeginPerformMaintenanceAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginReapplyAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginPerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginReapplyWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Assess patches on the VM. + /// Shuts down the virtual machine, moves it to a new node, and powers it back + /// on. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - public static VirtualMachineAssessPatchesResult BeginAssessPatches(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + public static void BeginRedeploy(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) { - return operations.BeginAssessPatchesAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + operations.BeginRedeployAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); } /// - /// Assess patches on the VM. + /// Shuts down the virtual machine, moves it to a new node, and powers it back + /// on. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. @@ -1958,197 +1927,184 @@ public static VirtualMachineAssessPatchesResult BeginAssessPatches(this IVirtual /// /// The cancellation token. /// - public static async Task BeginAssessPatchesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginRedeployAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginAssessPatchesWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.BeginRedeployWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Installs patches on the VM. + /// Reimages (upgrade the operating system) a virtual machine which don't have + /// a ephemeral OS disk, for virtual machines who have a ephemeral OS disk the + /// virtual machine is reset to initial state. NOTE: The retaining of old OS + /// disk depends on the value of deleteOption of OS disk. If deleteOption is + /// detach, the old OS disk will be preserved after reimage. If deleteOption is + /// delete, the old OS disk will be deleted after reimage. The deleteOption of + /// the OS disk should be updated accordingly before performing the reimage. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Input for InstallPatches as directly received by the API + /// + /// Parameters supplied to the Reimage Virtual Machine operation. /// - public static VirtualMachineInstallPatchesResult BeginInstallPatches(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput) + public static void BeginReimage(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters)) { - return operations.BeginInstallPatchesAsync(resourceGroupName, vmName, installPatchesInput).GetAwaiter().GetResult(); + operations.BeginReimageAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); } /// - /// Installs patches on the VM. + /// Reimages (upgrade the operating system) a virtual machine which don't have + /// a ephemeral OS disk, for virtual machines who have a ephemeral OS disk the + /// virtual machine is reset to initial state. NOTE: The retaining of old OS + /// disk depends on the value of deleteOption of OS disk. If deleteOption is + /// detach, the old OS disk will be preserved after reimage. If deleteOption is + /// delete, the old OS disk will be deleted after reimage. The deleteOption of + /// the OS disk should be updated accordingly before performing the reimage. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Input for InstallPatches as directly received by the API + /// + /// Parameters supplied to the Reimage Virtual Machine operation. /// /// /// The cancellation token. /// - public static async Task BeginInstallPatchesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginReimageAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginInstallPatchesWithHttpMessagesAsync(resourceGroupName, vmName, installPatchesInput, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.BeginReimageWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Attach and detach data disks to/from the virtual machine. + /// The operation to restart a virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the attach and detach data disks operation on the - /// virtual machine. - /// - public static StorageProfile BeginAttachDetachDataDisks(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters) + public static void BeginRestart(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) { - return operations.BeginAttachDetachDataDisksAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); + operations.BeginRestartAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); } /// - /// Attach and detach data disks to/from the virtual machine. + /// The operation to restart a virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the attach and detach data disks operation on the - /// virtual machine. - /// /// /// The cancellation token. /// - public static async Task BeginAttachDetachDataDisksAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, AttachDetachDataDisksRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginRestartAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginAttachDetachDataDisksWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Migrate a virtual machine from availability set to Flexible Virtual Machine - /// Scale Set. + /// Run command on the VM. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// - /// Parameters supplied to the Migrate Virtual Machine operation. + /// Parameters supplied to the Run command operation. /// - public static void BeginMigrateToVMScaleSet(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput)) + public static RunCommandResult BeginRunCommand(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, RunCommandInput parameters) { - operations.BeginMigrateToVMScaleSetAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); + return operations.BeginRunCommandAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); } /// - /// Migrate a virtual machine from availability set to Flexible Virtual Machine - /// Scale Set. + /// Run command on the VM. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// /// - /// Parameters supplied to the Migrate Virtual Machine operation. + /// Parameters supplied to the Run command operation. /// /// /// The cancellation token. /// - public static async Task BeginMigrateToVMScaleSetAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, MigrateVMToVirtualMachineScaleSetInput parameters = default(MigrateVMToVirtualMachineScaleSetInput), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginRunCommandAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, RunCommandInput parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginMigrateToVMScaleSetWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.BeginRunCommandWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Run command on the VM. + /// The operation to start a virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Run command operation. - /// - public static RunCommandResult BeginRunCommand(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, RunCommandInput parameters) + public static void BeginStart(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) { - return operations.BeginRunCommandAsync(resourceGroupName, vmName, parameters).GetAwaiter().GetResult(); + operations.BeginStartAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); } /// - /// Run command on the VM. + /// The operation to start a virtual machine. /// /// /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the virtual machine. /// - /// - /// Parameters supplied to the Run command operation. - /// /// /// The cancellation token. /// - public static async Task BeginRunCommandAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, RunCommandInput parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginStartAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginRunCommandWithHttpMessagesAsync(resourceGroupName, vmName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.BeginStartWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -2188,7 +2144,7 @@ public static IPage ListByLocationNext(this IVirtualMachinesOper } /// - /// Lists all of the virtual machines in the specified resource group. Use the + /// Lists all of the virtual machines in the specified subscription. Use the /// nextLink property in the response to get the next page of virtual machines. /// /// @@ -2197,13 +2153,13 @@ public static IPage ListByLocationNext(this IVirtualMachinesOper /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IVirtualMachinesOperations operations, string nextPageLink) + public static IPage ListAllNext(this IVirtualMachinesOperations operations, string nextPageLink) { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListAllNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all of the virtual machines in the specified resource group. Use the + /// Lists all of the virtual machines in the specified subscription. Use the /// nextLink property in the response to get the next page of virtual machines. /// /// @@ -2215,16 +2171,16 @@ public static IPage ListNext(this IVirtualMachinesOperations ope /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IVirtualMachinesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAllNextAsync(this IVirtualMachinesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all of the virtual machines in the specified subscription. Use the + /// Lists all of the virtual machines in the specified resource group. Use the /// nextLink property in the response to get the next page of virtual machines. /// /// @@ -2233,13 +2189,13 @@ public static IPage ListNext(this IVirtualMachinesOperations ope /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListAllNext(this IVirtualMachinesOperations operations, string nextPageLink) + public static IPage ListNext(this IVirtualMachinesOperations operations, string nextPageLink) { - return operations.ListAllNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all of the virtual machines in the specified subscription. Use the + /// Lists all of the virtual machines in the specified resource group. Use the /// nextLink property in the response to get the next page of virtual machines. /// /// @@ -2251,9 +2207,9 @@ public static IPage ListAllNext(this IVirtualMachinesOperations /// /// The cancellation token. /// - public static async Task> ListAllNextAsync(this IVirtualMachinesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this IVirtualMachinesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/Compute/Compute.Management.Sdk/README.md b/src/Compute/Compute.Management.Sdk/README.md index 65907f35eb3e..157831351d6c 100644 --- a/src/Compute/Compute.Management.Sdk/README.md +++ b/src/Compute/Compute.Management.Sdk/README.md @@ -4,6 +4,7 @@ This directory contains the service clients of Az.Compute module. ## Run Generation In this directory, run AutoRest: ``` +.\Rest-api-specs\preprocess-rest-api-spec.ps1 autorest --reset autorest --use:@microsoft.azure/autorest.csharp@2.3.90 autorest.cmd README.md --version=v2 @@ -23,16 +24,287 @@ license-header: MICROSOFT_MIT_NO_VERSION title: ComputeManagementClient payload-flattening-threshold: 1 +input-file: + - ./Rest-api-specs/types.json + - ./Rest-api-specs/common.json + - ./Rest-api-specs/ComputeRP.json + - ./Rest-api-specs/DiskRP.json + - ./Rest-api-specs/GalleryRP.json + - ./Rest-api-specs/skus.json + +output-folder: Generated +namespace: Microsoft.Azure.Management.Compute + + directive: - # dynamically add a DummyOrchestrationServiceName value to the enum - - from: virtualMachineScaleSet.json - where: $..enum - transform: >- - if( $.length === 1 && $[0] === "AutomaticRepairs") { - $.push('DummyOrchestrationServiceName'); + + + - from: swagger-document + where: $..definitions.OperatingSystemStateTypes + transform: > + $.description = "This property allows the user to specify whether the virtual machines created under this image are 'Generalized' or 'Specialized'."; + $.type = "string"; + $.enum = ["Generalized", "Specialized"]; + $["x-ms-enum"] = { "name": "OperatingSystemStateTypes", "modelAsString": false }; + + # Description updates for various definitions + - from: swagger-document + where: $..definitions.Architecture + transform: > + $.description = "The architecture of the image. Applicable to OS disks only."; + - from: swagger-document + where: $..definitions.ResourceIdentityType + transform: > + $.description = "The type of identity used for the virtual machine scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine scale set."; + - from: swagger-document + where: $..definitions.OperatingSystemTypes + transform: > + $.description = "The Operating System type."; + - from: swagger-document + where: $..definitions.HyperVGeneration + transform: > + $.description = "The hypervisor generation of the Virtual Machine [V1, V2]"; + - from: swagger-document + where: $.securityDefinitions.azure_auth + transform: > + $["description"] = "Azure Active Directory OAuth2 Flow"; + - from: swagger-document + where: $ + transform: > + $.tags = []; + + # Ensure VirtualMachineSizeListResult doesn't have nextLink property + - from: swagger-document + where: $.definitions.VirtualMachineSizeListResult + transform: | + if ($.properties && $.properties.nextLink) { + delete $.properties.nextLink; + } + return $; + - from: swagger-document + where: $.definitions.DedicatedHostSizeListResult + transform: | + if ($.properties && $.properties.nextLink) { + delete $.properties.nextLink; + } + return $; + + # Set x-ms-pageable to null for VirtualMachineSizes_List operation + - from: swagger-document + where: $.paths["/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/vmSizes"].get + transform: | + if ($["x-ms-pageable"]) { + $["x-ms-pageable"] = { "nextLinkName": null }; } return $; - + + # Set x-ms-pageable to null for VirtualMachines_ListAvailableSizes operation + - from: swagger-document + where: $.paths["/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/vmSizes"].get + transform: | + if ($["x-ms-pageable"]) { + $["x-ms-pageable"] = { "nextLinkName": null }; + } + return $; + + # Set x-ms-pageable to null for AvailabilitySets_ListAvailableSizes operation + - from: swagger-document + where: $.paths["/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}/vmSizes"].get + transform: | + if ($["x-ms-pageable"]) { + $["x-ms-pageable"] = { "nextLinkName": null }; + } + return $; + + # Set x-ms-pageable to null for DedicatedHosts_ListAvailableSizes operation + - from: swagger-document + where: $.paths["/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts/{hostName}/hostSizes"].get + transform: | + if ($["x-ms-pageable"]) { + $["x-ms-pageable"] = { "nextLinkName": null }; + } + return $; + + # Set x-ms-pageable to null for operations_list_ operation + - from: swagger-document + where: $.paths["/providers/Microsoft.Compute/operations"].get + transform: | + if ($["x-ms-pageable"]) { + $["x-ms-pageable"] = { "nextLinkName": null }; + } + return $; + + # Remove x-ms-client-name from VirtualMachineScaleSetExtension name property + - from: swagger-document + where: $.definitions.VirtualMachineScaleSetExtension.properties.name + transform: | + if ($["x-ms-client-name"]) { + delete $["x-ms-client-name"]; + } + return $; + + # Remove x-ms-client-name from VirtualMachineScaleSetExtension name property + - from: swagger-document + where: $.definitions.VirtualMachineScaleSetVMExtension.properties.name + transform: | + if ($["x-ms-client-name"]) { + delete $["x-ms-client-name"]; + } + return $; + + # Remove existing PassNames and ComponentNames definitions + - from: swagger-document + where: $.definitions + transform: | + // Delete existing definitions if they exist + if ($.PassNames) { + delete $.PassNames; + } + if ($.ComponentNames) { + delete $.ComponentNames; + } + if ($.SettingNames) { + delete $.SettingNames; + } + return $; + + # Remove PurchasePlan definitions + - from: ComputeRP.json + where: $.definitions + transform: | + // Delete existing definitions if they exist + if ($.PurchasePlan) { + delete $.PurchasePlan; + } + + # Rename DiskPurchasePlan to PurchasePlan + - from: DiskRP.json + where: $.definitions + transform: | + if ($.DiskPurchasePlan) { + $.PurchasePlan = $.DiskPurchasePlan; + delete $.DiskPurchasePlan; + } + return $; + + # Update all references from DiskPurchasePlan to PurchasePlan + - from: swagger-document + where: $ + transform: | + const traverse = (obj) => { + if (obj === null || typeof obj !== 'object') return obj; + + if (obj.$ref === '#/definitions/DiskPurchasePlan') { + obj.$ref = '#/definitions/PurchasePlan'; + } + + Object.keys(obj).forEach(key => { + obj[key] = traverse(obj[key]); + }); + + return obj; + }; + + return traverse($); + + # Define AdditionalUnattendContent structure + - from: swagger-document + where: $.definitions + transform: | + $.AdditionalUnattendContent = { + "type": "object", + "description": "Specifies additional XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup. Contents are defined by setting name, component name, and the pass in which the content is applied.", + "properties": { + "passName": { + "type": "string", + "description": "The pass name. Currently, the only allowable value is OobeSystem.", + "enum": [ + "OobeSystem" + ], + "x-ms-enum": { + "name": "PassNames", + "modelAsString": false + }, + "x-nullable": true + }, + "componentName": { + "type": "string", + "description": "The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.", + "enum": [ + "Microsoft-Windows-Shell-Setup" + ], + "x-ms-enum": { + "name": "ComponentNames", + "modelAsString": false + }, + "x-nullable": true + }, + "settingName": { + "type": "string", + "description": "Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.", + "enum": [ + "AutoLogon", + "FirstLogonCommands" + ], + "x-ms-enum": { + "name": "SettingNames", + "modelAsString": false + } + }, + "content": { + "type": "string", + "description": "Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted." + } + } + }; + return $; + + # Rename TrackedResource definition to Resource + - from: swagger-document + where: $.definitions + transform: | + if ($.TrackedResource) { + $.Resource = $.TrackedResource; + delete $.TrackedResource; + } + return $; + + # Fix all references to TrackedResource + - from: swagger-document + where: $ + transform: | + const traverse = (obj) => { + if (obj === null || typeof obj !== 'object') return obj; + + if (obj.$ref === '#/definitions/TrackedResource') { + obj.$ref = '#/definitions/Resource'; + } + + Object.keys(obj).forEach(key => { + obj[key] = traverse(obj[key]); + }); + + return obj; + }; + + return traverse($); + + # Update OrchestrationServiceNames enum consistently + - from: ComputeRP.json + where: $.definitions.OrchestrationServiceNames + transform: | + if ($.enum && $.enum.length === 1 && $.enum[0] === "AutomaticRepairs") { + // Add to enum array + $.enum.push('DummyOrchestrationServiceName'); + + // Add the new value to x-ms-enum.values + $['x-ms-enum'].values.push({ + value: 'DummyOrchestrationServiceName', + name: 'DummyOrchestrationServiceName' + }); + } + return $; + # remove it from the C# generated code - from: source-file-csharp where: $ @@ -40,48 +312,10 @@ directive: return $. replace(/.*public const string DummyOrchestrationServiceName.*/g,''). replace(/, 'DummyOrchestrationServiceName'/g,''); - - from: gallery.json + - from: GalleryRP.json where: $.definitions.GalleryTargetExtendedLocation.properties.storageAccountType["x-ms-enum"].name transform: return "EdgeZoneStorageAccountType" - - from: virtualMachineScaleSet.json + - from: ComputeRP.json where: $.paths["/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}"].get.parameters[?(@.name === "$expand")]["x-ms-enum"].name transform: return "VmssVMInstanceViewTypes" -``` - - -### -``` yaml -commit: e2bdeadfb399be0691fb9d0425bd2b32d252538c -input-file: - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/common-types/v1/common.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/computeRPCommon.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/virtualMachineScaleSet.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/virtualMachine.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/virtualMachineImage.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/virtualMachineExtensionImage.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/availabilitySet.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/proximityPlacementGroup.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/dedicatedHost.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/sshPublicKey.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/image.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/restorePoint.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/capacityReservation.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/logAnalytic.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2024-11-01/runCommand.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/DiskRP/stable/2024-03-02/diskRPCommon.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/DiskRP/stable/2024-03-02/disk.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/DiskRP/stable/2024-03-02/diskAccess.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/DiskRP/stable/2024-03-02/diskEncryptionSet.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/DiskRP/stable/2024-03-02/diskRestorePoint.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/DiskRP/stable/2024-03-02/snapshot.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/Skus/stable/2021-07-01/skus.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/GalleryRP/stable/2024-03-03/galleryRPCommon.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/GalleryRP/stable/2024-03-03/gallery.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/GalleryRP/stable/2024-03-03/sharedGallery.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/GalleryRP/stable/2024-03-03/communityGallery.json - - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/compute/resource-manager/Microsoft.Compute/CloudserviceRP/stable/2022-09-04/cloudService.json - -output-folder: Generated - -namespace: Microsoft.Azure.Management.Compute ``` \ No newline at end of file diff --git a/src/Compute/Compute.Management.Sdk/Rest-api-specs/ComputeRP.json b/src/Compute/Compute.Management.Sdk/Rest-api-specs/ComputeRP.json new file mode 100644 index 000000000000..70ff526004aa --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Rest-api-specs/ComputeRP.json @@ -0,0 +1,20740 @@ +{ + "swagger": "2.0", + "info": { + "title": "Azure Compute resource management API.", + "version": "2024-11-01", + "description": "Compute Client", + "x-typespec-generated": [ + { + "emitter": "@azure-tools/typespec-autorest" + } + ] + }, + "schemes": [ + "https" + ], + "host": "management.azure.com", + "produces": [ + "application/json" + ], + "consumes": [ + "application/json" + ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "description": "Azure Active Directory OAuth2 Flow.", + "flow": "implicit", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "tags": [ + { + "name": "Operations" + }, + { + "name": "VirtualMachineScaleSets" + }, + { + "name": "RollingUpgradeStatusInfos" + }, + { + "name": "VirtualMachineScaleSetExtensions" + }, + { + "name": "VirtualMachineScaleSetVMS" + }, + { + "name": "VirtualMachineScaleSetVMExtensions" + }, + { + "name": "VirtualMachines" + }, + { + "name": "VirtualMachineExtensions" + }, + { + "name": "AvailabilitySets" + }, + { + "name": "ProximityPlacementGroups" + }, + { + "name": "DedicatedHostGroups" + }, + { + "name": "DedicatedHosts" + }, + { + "name": "SshPublicKeyResources" + }, + { + "name": "Images" + }, + { + "name": "RestorePointCollections" + }, + { + "name": "RestorePoints" + }, + { + "name": "CapacityReservationGroups" + }, + { + "name": "CapacityReservations" + }, + { + "name": "VirtualMachineRunCommands" + }, + { + "name": "VirtualMachineScaleSetVMRunCommands" + } + ], + "paths": { + "/providers/Microsoft.Compute/operations": { + "get": { + "operationId": "Operations_List", + "tags": [ + "Operations" + ], + "description": "List the operations for the provider", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "./types.json#/definitions/OperationListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/availabilitySets": { + "get": { + "operationId": "AvailabilitySets_ListBySubscription", + "tags": [ + "AvailabilitySets" + ], + "description": "Lists all availability sets in a subscription.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply to the operation. Allowed values are 'instanceView'.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/AvailabilitySetListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/capacityReservationGroups": { + "get": { + "operationId": "CapacityReservationGroups_ListBySubscription", + "tags": [ + "CapacityReservationGroups" + ], + "description": "Lists all of the capacity reservation groups in the subscription. Use the nextLink property in the response to get the next page of capacity reservation groups.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation. Based on the expand param(s) specified we return Virtual Machine or ScaleSet VM Instance or both resource Ids which are associated to capacity reservation group in the response.", + "required": false, + "type": "string", + "enum": [ + "virtualMachineScaleSetVMs/$ref", + "virtualMachines/$ref" + ], + "x-ms-enum": { + "name": "ExpandTypesForGetCapacityReservationGroups", + "modelAsString": true, + "values": [ + { + "name": "virtualMachineScaleSetVMs/$ref", + "value": "virtualMachineScaleSetVMs/$ref" + }, + { + "name": "virtualMachines/$ref", + "value": "virtualMachines/$ref" + } + ] + } + }, + { + "name": "resourceIdsOnly", + "in": "query", + "description": "The query option to fetch Capacity Reservation Group Resource Ids.
'CreatedInSubscription' enables fetching Resource Ids for all capacity reservation group resources created in the subscription.
'SharedWithSubscription' enables fetching Resource Ids for all capacity reservation group resources shared with the subscription.
'All' enables fetching Resource Ids for all capacity reservation group resources shared with the subscription and created in the subscription.", + "required": false, + "type": "string", + "enum": [ + "CreatedInSubscription", + "SharedWithSubscription", + "All" + ], + "x-ms-enum": { + "name": "ResourceIdOptionsForGetCapacityReservationGroups", + "modelAsString": true, + "values": [ + { + "name": "CreatedInSubscription", + "value": "CreatedInSubscription" + }, + { + "name": "SharedWithSubscription", + "value": "SharedWithSubscription" + }, + { + "name": "All", + "value": "All" + } + ] + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/CapacityReservationGroupListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/hostGroups": { + "get": { + "operationId": "DedicatedHostGroups_ListBySubscription", + "tags": [ + "DedicatedHostGroups" + ], + "description": "Lists all of the dedicated host groups in the subscription. Use the nextLink property in the response to get the next page of dedicated host groups.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DedicatedHostGroupListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/images": { + "get": { + "operationId": "Images_List", + "tags": [ + "Images" + ], + "description": "Gets the list of Images in the subscription. Use nextLink property in the response to get the next page of Images. Do this till nextLink is null to fetch all the Images.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/ImageListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers": { + "get": { + "operationId": "VirtualMachineImagesEdgeZone_ListPublishers", + "description": "Gets a list of virtual machine image publishers for the specified Azure location and edge zone.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "edgeZone", + "in": "path", + "description": "The name of the edge zone.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VirtualMachineImageResource" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers": { + "get": { + "operationId": "VirtualMachineImagesEdgeZone_ListOffers", + "description": "Gets a list of virtual machine image offers for the specified location, edge zone and publisher.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "edgeZone", + "in": "path", + "description": "The name of the edge zone.", + "required": true, + "type": "string" + }, + { + "name": "publisherName", + "in": "path", + "description": "A valid image publisher.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VirtualMachineImageResource" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus": { + "get": { + "operationId": "VirtualMachineImagesEdgeZone_ListSkus", + "description": "Gets a list of virtual machine image SKUs for the specified location, edge zone, publisher, and offer.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "edgeZone", + "in": "path", + "description": "The name of the edge zone.", + "required": true, + "type": "string" + }, + { + "name": "publisherName", + "in": "path", + "description": "A valid image publisher.", + "required": true, + "type": "string" + }, + { + "name": "offer", + "in": "path", + "description": "A valid image publisher offer.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VirtualMachineImageResource" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions": { + "get": { + "operationId": "VirtualMachineImagesEdgeZone_List", + "description": "Gets a list of all virtual machine image versions for the specified location, edge zone, publisher, offer, and SKU.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "edgeZone", + "in": "path", + "description": "The name of the edge zone.", + "required": true, + "type": "string" + }, + { + "name": "publisherName", + "in": "path", + "description": "A valid image publisher.", + "required": true, + "type": "string" + }, + { + "name": "offer", + "in": "path", + "description": "A valid image publisher offer.", + "required": true, + "type": "string" + }, + { + "name": "skus", + "in": "path", + "description": "A valid image SKU.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string" + }, + { + "name": "$top", + "in": "query", + "description": "An integer value specifying the number of images to return that matches supplied values.", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "$orderby", + "in": "query", + "description": "Specifies the order of the results returned. Formatted as an OData query.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VirtualMachineImageResource" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions/{version}": { + "get": { + "operationId": "VirtualMachineImagesEdgeZone_Get", + "description": "Gets a virtual machine image in an edge zone.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "edgeZone", + "in": "path", + "description": "The name of the edge zone.", + "required": true, + "type": "string" + }, + { + "name": "publisherName", + "in": "path", + "description": "A valid image publisher.", + "required": true, + "type": "string" + }, + { + "name": "offer", + "in": "path", + "description": "A valid image publisher offer.", + "required": true, + "type": "string" + }, + { + "name": "skus", + "in": "path", + "description": "A valid image SKU.", + "required": true, + "type": "string" + }, + { + "name": "version", + "in": "path", + "description": "A valid image SKU version.", + "required": true, + "type": "string" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineImage" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/vmimages": { + "get": { + "operationId": "VirtualMachineImages_ListByEdgeZone", + "description": "Gets a list of all virtual machine image versions for the specified edge zone", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "edgeZone", + "in": "path", + "description": "The name of the edge zone.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VmImagesInEdgeZoneListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/logAnalytics/apiAccess/getRequestRateByInterval": { + "post": { + "operationId": "LogAnalytics_ExportRequestRateByInterval", + "description": "Export logs that show Api requests made by this subscription in the given time window to show throttling activities.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the LogAnalytics getRequestRateByInterval Api.", + "required": true, + "schema": { + "$ref": "#/definitions/RequestRateByIntervalInput" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/LogAnalyticsOperationResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/logAnalytics/apiAccess/getThrottledRequests": { + "post": { + "operationId": "LogAnalytics_ExportThrottledRequests", + "description": "Export logs that show total throttled Api requests for this subscription in the given time window.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The request body", + "required": true, + "schema": { + "$ref": "#/definitions/ThrottledRequestsInput" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/LogAnalyticsOperationResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers": { + "get": { + "operationId": "VirtualMachineImages_ListPublishers", + "description": "Gets a list of virtual machine image publishers for the specified Azure location.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VirtualMachineImageResource" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmextension/types": { + "get": { + "operationId": "VirtualMachineExtensionImages_ListTypes", + "description": "Gets a list of virtual machine extension image types.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "publisherName", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VirtualMachineExtensionImage" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmextension/types/{type}/versions": { + "get": { + "operationId": "VirtualMachineExtensionImages_ListVersions", + "description": "Gets a list of virtual machine extension image versions.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "publisherName", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "type", + "in": "path", + "description": "", + "required": true, + "type": "string" + }, + { + "name": "$filter", + "in": "query", + "description": "The filter to apply on the operation.", + "required": false, + "type": "string" + }, + { + "name": "$top", + "in": "query", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "$orderby", + "in": "query", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VirtualMachineExtensionImage" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmextension/types/{type}/versions/{version}": { + "get": { + "operationId": "VirtualMachineExtensionImages_Get", + "description": "Gets a virtual machine extension image.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "publisherName", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "type", + "in": "path", + "description": "", + "required": true, + "type": "string" + }, + { + "name": "version", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineExtensionImage" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers": { + "get": { + "operationId": "VirtualMachineImages_ListOffers", + "description": "Gets a list of virtual machine image offers for the specified location and publisher.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "publisherName", + "in": "path", + "description": "A valid image publisher.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VirtualMachineImageResource" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus": { + "get": { + "operationId": "VirtualMachineImages_ListSkus", + "description": "Gets a list of virtual machine image SKUs for the specified location, publisher, and offer.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "publisherName", + "in": "path", + "description": "A valid image publisher.", + "required": true, + "type": "string" + }, + { + "name": "offer", + "in": "path", + "description": "A valid image publisher offer.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VirtualMachineImageResource" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions": { + "get": { + "operationId": "VirtualMachineImages_List", + "description": "Gets a list of all virtual machine image versions for the specified location, publisher, offer, and SKU.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "publisherName", + "in": "path", + "description": "A valid image publisher.", + "required": true, + "type": "string" + }, + { + "name": "offer", + "in": "path", + "description": "A valid image publisher offer.", + "required": true, + "type": "string" + }, + { + "name": "skus", + "in": "path", + "description": "A valid image SKU.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string" + }, + { + "name": "$top", + "in": "query", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "$orderby", + "in": "query", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VirtualMachineImageResource" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions/{version}": { + "get": { + "operationId": "VirtualMachineImages_Get", + "description": "Gets a virtual machine image.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "publisherName", + "in": "path", + "description": "A valid image publisher.", + "required": true, + "type": "string" + }, + { + "name": "offer", + "in": "path", + "description": "A valid image publisher offer.", + "required": true, + "type": "string" + }, + { + "name": "skus", + "in": "path", + "description": "A valid image SKU.", + "required": true, + "type": "string" + }, + { + "name": "version", + "in": "path", + "description": "A valid image SKU version.", + "required": true, + "type": "string" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineImage" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/runCommands": { + "get": { + "operationId": "VirtualMachineRunCommands_List", + "description": "Lists all available run commands for a subscription in a location.", + "produces": [ + "application/json", + "text/json" + ], + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/RunCommandListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/runCommands/{commandId}": { + "get": { + "operationId": "VirtualMachineRunCommands_Get", + "description": "Gets specific run command for a subscription in a location.", + "produces": [ + "application/json", + "text/json" + ], + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "commandId", + "in": "path", + "description": "The command id.", + "required": true, + "type": "string" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RunCommandDocument" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/usages": { + "get": { + "operationId": "Usage_List", + "description": "Gets, for the specified location, the current compute resource usage information as well as the limits for compute resources under the subscription.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/ListUsagesResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/virtualMachineScaleSets": { + "get": { + "operationId": "VirtualMachineScaleSets_ListByLocation", + "description": "Gets all the VM scale sets under the specified subscription for the specified location.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/virtualMachines": { + "get": { + "operationId": "VirtualMachines_ListByLocation", + "description": "Gets all the virtual machines under the specified subscription for the specified location.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/vmSizes": { + "get": { + "operationId": "VirtualMachineSizes_List", + "description": "This API is deprecated. Use [Resources Skus](https://docs.microsoft.com/rest/api/compute/resourceskus/list)", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineSizeListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/proximityPlacementGroups": { + "get": { + "operationId": "ProximityPlacementGroups_ListBySubscription", + "tags": [ + "ProximityPlacementGroups" + ], + "description": "Lists all proximity placement groups in a subscription.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/ProximityPlacementGroupListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/restorePointCollections": { + "get": { + "operationId": "RestorePointCollections_ListAll", + "tags": [ + "RestorePointCollections" + ], + "description": "Gets the list of restore point collections in the subscription. Use nextLink property in the response to get the next page of restore point collections. Do this till nextLink is not null to fetch all the restore point collections.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/RestorePointCollectionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/sshPublicKeys": { + "get": { + "operationId": "SshPublicKeys_ListBySubscription", + "tags": [ + "SshPublicKeyResources" + ], + "description": "Lists all of the SSH public keys in the subscription. Use the nextLink property in the response to get the next page of SSH public keys.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/SshPublicKeysGroupListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/virtualMachineScaleSets": { + "get": { + "operationId": "VirtualMachineScaleSets_ListAll", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Gets a list of all VM Scale Sets in the subscription, regardless of the associated resource group. Use nextLink property in the response to get the next page of VM Scale Sets. Do this till nextLink is null to fetch all the VM Scale Sets.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetListWithLinkResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/virtualMachines": { + "get": { + "operationId": "VirtualMachines_ListAll", + "tags": [ + "VirtualMachines" + ], + "description": "Lists all of the virtual machines in the specified subscription. Use the nextLink property in the response to get the next page of virtual machines.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "statusOnly", + "in": "query", + "description": "statusOnly=true enables fetching run time status of all Virtual Machines in the subscription.", + "required": false, + "type": "string" + }, + { + "name": "$filter", + "in": "query", + "description": "The system query option to filter VMs returned in the response. Allowed value is 'virtualMachineScaleSet/id' eq /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}'", + "required": false, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on operation. 'instanceView' enables fetching run time status of all Virtual Machines, this can only be specified if a valid $filter option is specified", + "required": false, + "type": "string", + "enum": [ + "instanceView" + ], + "x-ms-enum": { + "name": "ExpandTypesForListVMs", + "modelAsString": true, + "values": [ + { + "name": "instanceView", + "value": "instanceView" + } + ] + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets": { + "get": { + "operationId": "AvailabilitySets_List", + "tags": [ + "AvailabilitySets" + ], + "description": "Lists all availability sets in a resource group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/AvailabilitySetListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}": { + "get": { + "operationId": "AvailabilitySets_Get", + "tags": [ + "AvailabilitySets" + ], + "description": "Retrieves information about an availability set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "availabilitySetName", + "in": "path", + "description": "The name of the availability set.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AvailabilitySet" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "AvailabilitySets_CreateOrUpdate", + "tags": [ + "AvailabilitySets" + ], + "description": "Create or update an availability set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "availabilitySetName", + "in": "path", + "description": "The name of the availability set.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Create Availability Set operation.", + "required": true, + "schema": { + "$ref": "#/definitions/AvailabilitySet" + } + } + ], + "responses": { + "200": { + "description": "Resource 'AvailabilitySet' update operation succeeded", + "schema": { + "$ref": "#/definitions/AvailabilitySet" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "patch": { + "operationId": "AvailabilitySets_Update", + "tags": [ + "AvailabilitySets" + ], + "description": "Update an availability set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "availabilitySetName", + "in": "path", + "description": "The name of the availability set.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Update Availability Set operation.", + "required": true, + "schema": { + "$ref": "#/definitions/AvailabilitySetUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AvailabilitySet" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "delete": { + "operationId": "AvailabilitySets_Delete", + "tags": [ + "AvailabilitySets" + ], + "description": "Delete an availability set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "availabilitySetName", + "in": "path", + "description": "The name of the availability set.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}/cancelMigrationToVirtualMachineScaleSet": { + "post": { + "operationId": "AvailabilitySets_CancelMigrationToVirtualMachineScaleSet", + "tags": [ + "AvailabilitySets" + ], + "description": "Cancel the migration operation on an Availability Set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "availabilitySetName", + "in": "path", + "description": "The name of the availability set.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}/convertToVirtualMachineScaleSet": { + "post": { + "operationId": "AvailabilitySets_ConvertToVirtualMachineScaleSet", + "tags": [ + "AvailabilitySets" + ], + "description": "Create a new Flexible Virtual Machine Scale Set and migrate all the Virtual Machines in the Availability Set. This does not trigger a downtime on the Virtual Machines.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "availabilitySetName", + "in": "path", + "description": "The name of the availability set.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the migrate operation on the availability set.", + "required": false, + "schema": { + "$ref": "#/definitions/ConvertToVirtualMachineScaleSetInput" + } + } + ], + "responses": { + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}/startMigrationToVirtualMachineScaleSet": { + "post": { + "operationId": "AvailabilitySets_StartMigrationToVirtualMachineScaleSet", + "tags": [ + "AvailabilitySets" + ], + "description": "Start migration operation on an Availability Set to move its Virtual Machines to a Virtual Machine Scale Set. This should be followed by a migrate operation on each Virtual Machine that triggers a downtime on the Virtual Machine.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "availabilitySetName", + "in": "path", + "description": "The name of the availability set.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the migrate operation on the availability set.", + "required": true, + "schema": { + "$ref": "#/definitions/MigrateToVirtualMachineScaleSetInput" + } + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}/validateMigrationToVirtualMachineScaleSet": { + "post": { + "operationId": "AvailabilitySets_ValidateMigrationToVirtualMachineScaleSet", + "tags": [ + "AvailabilitySets" + ], + "description": "Validates that the Virtual Machines in the Availability Set can be migrated to the provided Virtual Machine Scale Set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "availabilitySetName", + "in": "path", + "description": "The name of the availability set.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the migrate operation on the availability set.", + "required": true, + "schema": { + "$ref": "#/definitions/MigrateToVirtualMachineScaleSetInput" + } + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}/vmSizes": { + "get": { + "operationId": "AvailabilitySets_ListAvailableSizes", + "tags": [ + "AvailabilitySets" + ], + "description": "Lists all available virtual machine sizes that can be used to create a new virtual machine in an existing availability set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "availabilitySetName", + "in": "path", + "description": "The name of the availability set.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineSizeListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups": { + "get": { + "operationId": "CapacityReservationGroups_ListByResourceGroup", + "tags": [ + "CapacityReservationGroups" + ], + "description": "Lists all of the capacity reservation groups in the specified resource group. Use the nextLink property in the response to get the next page of capacity reservation groups.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation. Based on the expand param(s) specified we return Virtual Machine or ScaleSet VM Instance or both resource Ids which are associated to capacity reservation group in the response.", + "required": false, + "type": "string", + "enum": [ + "virtualMachineScaleSetVMs/$ref", + "virtualMachines/$ref" + ], + "x-ms-enum": { + "name": "ExpandTypesForGetCapacityReservationGroups", + "modelAsString": true, + "values": [ + { + "name": "virtualMachineScaleSetVMs/$ref", + "value": "virtualMachineScaleSetVMs/$ref" + }, + { + "name": "virtualMachines/$ref", + "value": "virtualMachines/$ref" + } + ] + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/CapacityReservationGroupListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups/{capacityReservationGroupName}": { + "get": { + "operationId": "CapacityReservationGroups_Get", + "tags": [ + "CapacityReservationGroups" + ], + "description": "The operation that retrieves information about a capacity reservation group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "capacityReservationGroupName", + "in": "path", + "description": "The name of the capacity reservation group.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation. 'InstanceView' will retrieve the list of instance views of the capacity reservations under the capacity reservation group which is a snapshot of the runtime properties of a capacity reservation that is managed by the platform and can change outside of control plane operations.", + "required": false, + "type": "string", + "enum": [ + "instanceView" + ], + "x-ms-enum": { + "name": "CapacityReservationGroupInstanceViewTypes", + "modelAsString": true, + "values": [ + { + "name": "instanceView", + "value": "instanceView" + } + ] + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CapacityReservationGroup" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "CapacityReservationGroups_CreateOrUpdate", + "tags": [ + "CapacityReservationGroups" + ], + "description": "The operation to create or update a capacity reservation group. When updating a capacity reservation group, only tags and sharing profile may be modified. Please refer to https://aka.ms/CapacityReservation for more details.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "capacityReservationGroupName", + "in": "path", + "description": "The name of the capacity reservation group.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Create capacity reservation Group.", + "required": true, + "schema": { + "$ref": "#/definitions/CapacityReservationGroup" + } + } + ], + "responses": { + "200": { + "description": "Resource 'CapacityReservationGroup' update operation succeeded", + "schema": { + "$ref": "#/definitions/CapacityReservationGroup" + } + }, + "201": { + "description": "Resource 'CapacityReservationGroup' create operation succeeded", + "schema": { + "$ref": "#/definitions/CapacityReservationGroup" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "patch": { + "operationId": "CapacityReservationGroups_Update", + "tags": [ + "CapacityReservationGroups" + ], + "description": "The operation to update a capacity reservation group. When updating a capacity reservation group, only tags and sharing profile may be modified.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "capacityReservationGroupName", + "in": "path", + "description": "The name of the capacity reservation group.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Update capacity reservation Group operation.", + "required": true, + "schema": { + "$ref": "#/definitions/CapacityReservationGroupUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CapacityReservationGroup" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "delete": { + "operationId": "CapacityReservationGroups_Delete", + "tags": [ + "CapacityReservationGroups" + ], + "description": "The operation to delete a capacity reservation group. This operation is allowed only if all the associated resources are disassociated from the reservation group and all capacity reservations under the reservation group have also been deleted. Please refer to https://aka.ms/CapacityReservation for more details.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "capacityReservationGroupName", + "in": "path", + "description": "The name of the capacity reservation group.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups/{capacityReservationGroupName}/capacityReservations": { + "get": { + "operationId": "CapacityReservations_ListByCapacityReservationGroup", + "tags": [ + "CapacityReservations" + ], + "description": "Lists all of the capacity reservations in the specified capacity reservation group. Use the nextLink property in the response to get the next page of capacity reservations.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "capacityReservationGroupName", + "in": "path", + "description": "The name of the capacity reservation group.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/CapacityReservationListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/capacityReservationGroups/{capacityReservationGroupName}/capacityReservations/{capacityReservationName}": { + "get": { + "operationId": "CapacityReservations_Get", + "tags": [ + "CapacityReservations" + ], + "description": "The operation that retrieves information about the capacity reservation.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "capacityReservationGroupName", + "in": "path", + "description": "The name of the capacity reservation group.", + "required": true, + "type": "string" + }, + { + "name": "capacityReservationName", + "in": "path", + "description": "The name of the capacity reservation.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation. 'InstanceView' retrieves a snapshot of the runtime properties of the capacity reservation that is managed by the platform and can change outside of control plane operations.", + "required": false, + "type": "string", + "enum": [ + "instanceView" + ], + "x-ms-enum": { + "name": "CapacityReservationInstanceViewTypes", + "modelAsString": true, + "values": [ + { + "name": "instanceView", + "value": "instanceView" + } + ] + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CapacityReservation" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "CapacityReservations_CreateOrUpdate", + "tags": [ + "CapacityReservations" + ], + "description": "The operation to create or update a capacity reservation. Please note some properties can be set only during capacity reservation creation. Please refer to https://aka.ms/CapacityReservation for more details.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "capacityReservationGroupName", + "in": "path", + "description": "The name of the capacity reservation group.", + "required": true, + "type": "string" + }, + { + "name": "capacityReservationName", + "in": "path", + "description": "The name of the capacity reservation.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Create capacity reservation.", + "required": true, + "schema": { + "$ref": "#/definitions/CapacityReservation" + } + } + ], + "responses": { + "200": { + "description": "Resource 'CapacityReservation' update operation succeeded", + "schema": { + "$ref": "#/definitions/CapacityReservation" + } + }, + "201": { + "description": "Resource 'CapacityReservation' create operation succeeded", + "schema": { + "$ref": "#/definitions/CapacityReservation" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "CapacityReservations_Update", + "tags": [ + "CapacityReservations" + ], + "description": "The operation to update a capacity reservation.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "capacityReservationGroupName", + "in": "path", + "description": "The name of the capacity reservation group.", + "required": true, + "type": "string" + }, + { + "name": "capacityReservationName", + "in": "path", + "description": "The name of the capacity reservation.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Update capacity reservation operation.", + "required": true, + "schema": { + "$ref": "#/definitions/CapacityReservationUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CapacityReservation" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "CapacityReservations_Delete", + "tags": [ + "CapacityReservations" + ], + "description": "The operation to delete a capacity reservation. This operation is allowed only when all the associated resources are disassociated from the capacity reservation. Please refer to https://aka.ms/CapacityReservation for more details.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "capacityReservationGroupName", + "in": "path", + "description": "The name of the capacity reservation group.", + "required": true, + "type": "string" + }, + { + "name": "capacityReservationName", + "in": "path", + "description": "The name of the capacity reservation.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups": { + "get": { + "operationId": "DedicatedHostGroups_ListByResourceGroup", + "tags": [ + "DedicatedHostGroups" + ], + "description": "Lists all of the dedicated host groups in the specified resource group. Use the nextLink property in the response to get the next page of dedicated host groups.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DedicatedHostGroupListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}": { + "get": { + "operationId": "DedicatedHostGroups_Get", + "tags": [ + "DedicatedHostGroups" + ], + "description": "Retrieves information about a dedicated host group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostGroupName", + "in": "path", + "description": "The name of the dedicated host group.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation. 'InstanceView' will retrieve the list of instance views of the dedicated hosts under the dedicated host group. 'UserData' is not supported for dedicated host group.", + "required": false, + "type": "string", + "enum": [ + "instanceView", + "userData", + "resiliencyView" + ], + "x-ms-enum": { + "name": "InstanceViewTypes", + "modelAsString": false + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DedicatedHostGroup" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "DedicatedHostGroups_CreateOrUpdate", + "tags": [ + "DedicatedHostGroups" + ], + "description": "Create or update a dedicated host group. For details of Dedicated Host and Dedicated Host Groups please see [Dedicated Host Documentation] (https://go.microsoft.com/fwlink/?linkid=2082596)", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostGroupName", + "in": "path", + "description": "The name of the dedicated host group.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Create Dedicated Host Group.", + "required": true, + "schema": { + "$ref": "#/definitions/DedicatedHostGroup" + } + } + ], + "responses": { + "200": { + "description": "Resource 'DedicatedHostGroup' update operation succeeded", + "schema": { + "$ref": "#/definitions/DedicatedHostGroup" + } + }, + "201": { + "description": "Resource 'DedicatedHostGroup' create operation succeeded", + "schema": { + "$ref": "#/definitions/DedicatedHostGroup" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "patch": { + "operationId": "DedicatedHostGroups_Update", + "tags": [ + "DedicatedHostGroups" + ], + "description": "Update an dedicated host group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostGroupName", + "in": "path", + "description": "The name of the dedicated host group.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Update Dedicated Host Group operation.", + "required": true, + "schema": { + "$ref": "#/definitions/DedicatedHostGroupUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DedicatedHostGroup" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "delete": { + "operationId": "DedicatedHostGroups_Delete", + "tags": [ + "DedicatedHostGroups" + ], + "description": "Delete a dedicated host group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostGroupName", + "in": "path", + "description": "The name of the dedicated host group.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts": { + "get": { + "operationId": "DedicatedHosts_ListByHostGroup", + "tags": [ + "DedicatedHosts" + ], + "description": "Lists all of the dedicated hosts in the specified dedicated host group. Use the nextLink property in the response to get the next page of dedicated hosts.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostGroupName", + "in": "path", + "description": "The name of the dedicated host group.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DedicatedHostListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts/{hostName}": { + "get": { + "operationId": "DedicatedHosts_Get", + "tags": [ + "DedicatedHosts" + ], + "description": "Retrieves information about a dedicated host.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostGroupName", + "in": "path", + "description": "The name of the dedicated host group.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "path", + "description": "The name of the dedicated host.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation. 'InstanceView' will retrieve the list of instance views of the dedicated host. 'UserData' is not supported for dedicated host.", + "required": false, + "type": "string", + "enum": [ + "instanceView", + "userData", + "resiliencyView" + ], + "x-ms-enum": { + "name": "InstanceViewTypes", + "modelAsString": false + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DedicatedHost" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "DedicatedHosts_CreateOrUpdate", + "tags": [ + "DedicatedHosts" + ], + "description": "Create or update a dedicated host .", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostGroupName", + "in": "path", + "description": "The name of the dedicated host group.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "path", + "description": "The name of the dedicated host.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Create Dedicated Host.", + "required": true, + "schema": { + "$ref": "#/definitions/DedicatedHost" + } + } + ], + "responses": { + "200": { + "description": "Resource 'DedicatedHost' update operation succeeded", + "schema": { + "$ref": "#/definitions/DedicatedHost" + } + }, + "201": { + "description": "Resource 'DedicatedHost' create operation succeeded", + "schema": { + "$ref": "#/definitions/DedicatedHost" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "DedicatedHosts_Update", + "tags": [ + "DedicatedHosts" + ], + "description": "Update a dedicated host .", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostGroupName", + "in": "path", + "description": "The name of the dedicated host group.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "path", + "description": "The name of the dedicated host.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Update Dedicated Host operation.", + "required": true, + "schema": { + "$ref": "#/definitions/DedicatedHostUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DedicatedHost" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "DedicatedHosts_Delete", + "tags": [ + "DedicatedHosts" + ], + "description": "Delete a dedicated host.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostGroupName", + "in": "path", + "description": "The name of the dedicated host group.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "path", + "description": "The name of the dedicated host.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts/{hostName}/hostSizes": { + "get": { + "operationId": "DedicatedHosts_ListAvailableSizes", + "tags": [ + "DedicatedHosts" + ], + "description": "Lists all available dedicated host sizes to which the specified dedicated host can be resized. NOTE: The dedicated host sizes provided can be used to only scale up the existing dedicated host.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostGroupName", + "in": "path", + "description": "The name of the dedicated host group.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "path", + "description": "The name of the dedicated host.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DedicatedHostSizeListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts/{hostName}/redeploy": { + "post": { + "operationId": "DedicatedHosts_Redeploy", + "tags": [ + "DedicatedHosts" + ], + "description": "Redeploy the dedicated host. The operation will complete successfully once the dedicated host has migrated to a new node and is running. To determine the health of VMs deployed on the dedicated host after the redeploy check the Resource Health Center in the Azure Portal. Please refer to https://docs.microsoft.com/azure/service-health/resource-health-overview for more details.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostGroupName", + "in": "path", + "description": "The name of the dedicated host group.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "path", + "description": "The name of the dedicated host.", + "required": true, + "type": "string" + } + ], + "responses": { + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts/{hostName}/restart": { + "post": { + "operationId": "DedicatedHosts_Restart", + "tags": [ + "DedicatedHosts" + ], + "description": "Restart the dedicated host. The operation will complete successfully once the dedicated host has restarted and is running. To determine the health of VMs deployed on the dedicated host after the restart check the Resource Health Center in the Azure Portal. Please refer to https://docs.microsoft.com/azure/service-health/resource-health-overview for more details.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostGroupName", + "in": "path", + "description": "The name of the dedicated host group.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "path", + "description": "The name of the dedicated host.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images": { + "get": { + "operationId": "Images_ListByResourceGroup", + "tags": [ + "Images" + ], + "description": "Gets the list of images under a resource group. Use nextLink property in the response to get the next page of Images. Do this till nextLink is null to fetch all the Images.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/ImageListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images/{imageName}": { + "get": { + "operationId": "Images_Get", + "tags": [ + "Images" + ], + "description": "Gets an image.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "imageName", + "in": "path", + "description": "The name of the image.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Image" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "Images_CreateOrUpdate", + "tags": [ + "Images" + ], + "description": "Create or update an image.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "imageName", + "in": "path", + "description": "The name of the image.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Create Image operation.", + "required": true, + "schema": { + "$ref": "#/definitions/Image" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Image' update operation succeeded", + "schema": { + "$ref": "#/definitions/Image" + } + }, + "201": { + "description": "Resource 'Image' create operation succeeded", + "schema": { + "$ref": "#/definitions/Image" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "Images_Update", + "tags": [ + "Images" + ], + "description": "Update an image.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "imageName", + "in": "path", + "description": "The name of the image.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Update Image operation.", + "required": true, + "schema": { + "$ref": "#/definitions/ImageUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Image" + } + }, + "201": { + "description": "Resource 'Image' create operation succeeded", + "schema": { + "$ref": "#/definitions/Image" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "Images_Delete", + "tags": [ + "Images" + ], + "description": "Deletes an Image.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "imageName", + "in": "path", + "description": "The name of the image.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/proximityPlacementGroups": { + "get": { + "operationId": "ProximityPlacementGroups_ListByResourceGroup", + "tags": [ + "ProximityPlacementGroups" + ], + "description": "Lists all proximity placement groups in a resource group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/ProximityPlacementGroupListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/proximityPlacementGroups/{proximityPlacementGroupName}": { + "get": { + "operationId": "ProximityPlacementGroups_Get", + "tags": [ + "ProximityPlacementGroups" + ], + "description": "Retrieves information about a proximity placement group .", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "proximityPlacementGroupName", + "in": "path", + "description": "The name of the proximity placement group.", + "required": true, + "type": "string" + }, + { + "name": "includeColocationStatus", + "in": "query", + "description": "includeColocationStatus=true enables fetching the colocation status of all the resources in the proximity placement group.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProximityPlacementGroup" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "ProximityPlacementGroups_CreateOrUpdate", + "tags": [ + "ProximityPlacementGroups" + ], + "description": "Create or update a proximity placement group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "proximityPlacementGroupName", + "in": "path", + "description": "The name of the proximity placement group.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Create Proximity Placement Group operation.", + "required": true, + "schema": { + "$ref": "#/definitions/ProximityPlacementGroup" + } + } + ], + "responses": { + "200": { + "description": "Resource 'ProximityPlacementGroup' update operation succeeded", + "schema": { + "$ref": "#/definitions/ProximityPlacementGroup" + } + }, + "201": { + "description": "Resource 'ProximityPlacementGroup' create operation succeeded", + "schema": { + "$ref": "#/definitions/ProximityPlacementGroup" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "patch": { + "operationId": "ProximityPlacementGroups_Update", + "tags": [ + "ProximityPlacementGroups" + ], + "description": "Update a proximity placement group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "proximityPlacementGroupName", + "in": "path", + "description": "The name of the proximity placement group.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Update Proximity Placement Group operation.", + "required": true, + "schema": { + "$ref": "#/definitions/ProximityPlacementGroupUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProximityPlacementGroup" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "delete": { + "operationId": "ProximityPlacementGroups_Delete", + "tags": [ + "ProximityPlacementGroups" + ], + "description": "Delete a proximity placement group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "proximityPlacementGroupName", + "in": "path", + "description": "The name of the proximity placement group.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/restorePointCollections": { + "get": { + "operationId": "RestorePointCollections_List", + "tags": [ + "RestorePointCollections" + ], + "description": "Gets the list of restore point collections in a resource group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/RestorePointCollectionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/restorePointCollections/{restorePointCollectionName}": { + "get": { + "operationId": "RestorePointCollections_Get", + "tags": [ + "RestorePointCollections" + ], + "description": "The operation to get the restore point collection.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "restorePointCollectionName", + "in": "path", + "description": "The name of the restore point collection.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation. If expand=restorePoints, server will return all contained restore points in the restorePointCollection.", + "required": false, + "type": "string", + "enum": [ + "restorePoints" + ], + "x-ms-enum": { + "name": "RestorePointCollectionExpandOptions", + "modelAsString": true, + "values": [ + { + "name": "restorePoints", + "value": "restorePoints" + } + ] + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RestorePointCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "RestorePointCollections_CreateOrUpdate", + "tags": [ + "RestorePointCollections" + ], + "description": "The operation to create or update the restore point collection. Please refer to https://aka.ms/RestorePoints for more details. When updating a restore point collection, only tags may be modified.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "restorePointCollectionName", + "in": "path", + "description": "The name of the restore point collection.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Create or Update restore point collection operation.", + "required": true, + "schema": { + "$ref": "#/definitions/RestorePointCollection" + } + } + ], + "responses": { + "200": { + "description": "Resource 'RestorePointCollection' update operation succeeded", + "schema": { + "$ref": "#/definitions/RestorePointCollection" + } + }, + "201": { + "description": "Resource 'RestorePointCollection' create operation succeeded", + "schema": { + "$ref": "#/definitions/RestorePointCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "patch": { + "operationId": "RestorePointCollections_Update", + "tags": [ + "RestorePointCollections" + ], + "description": "The operation to update the restore point collection.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "restorePointCollectionName", + "in": "path", + "description": "The name of the restore point collection.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Update restore point collection operation.", + "required": true, + "schema": { + "$ref": "#/definitions/RestorePointCollectionUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RestorePointCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "delete": { + "operationId": "RestorePointCollections_Delete", + "tags": [ + "RestorePointCollections" + ], + "description": "The operation to delete the restore point collection. This operation will also delete all the contained restore points.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "restorePointCollectionName", + "in": "path", + "description": "The name of the restore point collection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/restorePointCollections/{restorePointCollectionName}/restorePoints/{restorePointName}": { + "get": { + "operationId": "RestorePoints_Get", + "tags": [ + "RestorePoints" + ], + "description": "The operation to get the restore point.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "restorePointCollectionName", + "in": "path", + "description": "The name of the restore point collection.", + "required": true, + "type": "string" + }, + { + "name": "restorePointName", + "in": "path", + "description": "The name of the restore point.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation. 'InstanceView' retrieves information about the run-time state of a restore point.", + "required": false, + "type": "string", + "enum": [ + "instanceView" + ], + "x-ms-enum": { + "name": "RestorePointExpandOptions", + "modelAsString": true, + "values": [ + { + "name": "instanceView", + "value": "instanceView" + } + ] + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RestorePoint" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "RestorePoints_Create", + "tags": [ + "RestorePoints" + ], + "description": "The operation to create the restore point. Updating properties of an existing restore point is not allowed", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "restorePointCollectionName", + "in": "path", + "description": "The name of the restore point collection.", + "required": true, + "type": "string" + }, + { + "name": "restorePointName", + "in": "path", + "description": "The name of the restore point.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Create restore point operation.", + "required": true, + "schema": { + "$ref": "#/definitions/RestorePoint" + } + } + ], + "responses": { + "201": { + "description": "Resource 'RestorePoint' create operation succeeded", + "schema": { + "$ref": "#/definitions/RestorePoint" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "RestorePoints_Delete", + "tags": [ + "RestorePoints" + ], + "description": "The operation to delete the restore point.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "restorePointCollectionName", + "in": "path", + "description": "The name of the restore point collection.", + "required": true, + "type": "string" + }, + { + "name": "restorePointName", + "in": "path", + "description": "The name of the restore point.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/sshPublicKeys": { + "get": { + "operationId": "SshPublicKeys_ListByResourceGroup", + "tags": [ + "SshPublicKeyResources" + ], + "description": "Lists all of the SSH public keys in the specified resource group. Use the nextLink property in the response to get the next page of SSH public keys.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/SshPublicKeysGroupListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/sshPublicKeys/{sshPublicKeyName}": { + "get": { + "operationId": "SshPublicKeys_Get", + "tags": [ + "SshPublicKeyResources" + ], + "description": "Retrieves information about an SSH public key.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "sshPublicKeyName", + "in": "path", + "description": "The name of the SSH public key.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SshPublicKeyResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "SshPublicKeys_Create", + "tags": [ + "SshPublicKeyResources" + ], + "description": "Creates a new SSH public key resource.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "sshPublicKeyName", + "in": "path", + "description": "The name of the SSH public key.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to create the SSH public key.", + "required": true, + "schema": { + "$ref": "#/definitions/SshPublicKeyResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SshPublicKeyResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/SshPublicKeyResource" + } + }, + "201": { + "description": "Resource 'SshPublicKeyResource' create operation succeeded", + "schema": { + "$ref": "#/definitions/SshPublicKeyResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "patch": { + "operationId": "SshPublicKeys_Update", + "tags": [ + "SshPublicKeyResources" + ], + "description": "Updates a new SSH public key resource.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "sshPublicKeyName", + "in": "path", + "description": "The name of the SSH public key.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to update the SSH public key.", + "required": true, + "schema": { + "$ref": "#/definitions/SshPublicKeyUpdateResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SshPublicKeyResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "delete": { + "operationId": "SshPublicKeys_Delete", + "tags": [ + "SshPublicKeyResources" + ], + "description": "Delete an SSH public key.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "sshPublicKeyName", + "in": "path", + "description": "The name of the SSH public key.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/sshPublicKeys/{sshPublicKeyName}/generateKeyPair": { + "post": { + "operationId": "SshPublicKeys_GenerateKeyPair", + "tags": [ + "SshPublicKeyResources" + ], + "description": "Generates and returns a public/private key pair and populates the SSH public key resource with the public key. The length of the key will be 3072 bits. This operation can only be performed once per SSH public key resource.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "sshPublicKeyName", + "in": "path", + "description": "The name of the SSH public key.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to generate the SSH public key.", + "required": false, + "schema": { + "$ref": "#/definitions/SshGenerateKeyPairInputParameters" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SshPublicKeyGenerateKeyPairResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets": { + "get": { + "operationId": "VirtualMachineScaleSets_List", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Gets a list of all VM scale sets under a resource group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}": { + "get": { + "operationId": "VirtualMachineScaleSets_Get", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Display information about a virtual machine scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation. 'UserData' retrieves the UserData property of the VM scale set that was provided by the user during the VM scale set Create/Update operation", + "required": false, + "type": "string", + "enum": [ + "userData" + ], + "x-ms-enum": { + "name": "ExpandTypesForGetVMScaleSets", + "modelAsString": true, + "values": [ + { + "name": "userData", + "value": "userData" + } + ] + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSet" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "VirtualMachineScaleSets_CreateOrUpdate", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Create or update a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "If-Match", + "in": "header", + "description": "The ETag of the transformation. Omit this value to always overwrite the current resource. Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes.", + "required": false, + "type": "string", + "x-ms-client-name": "IfMatch" + }, + { + "name": "If-None-Match", + "in": "header", + "description": "Set to '*' to allow a new record set to be created, but to prevent updating an existing record set. Other values will result in error from server as they are not supported.", + "required": false, + "type": "string", + "x-ms-client-name": "IfNoneMatch" + }, + { + "name": "parameters", + "in": "body", + "description": "The scale set object.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSet" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VirtualMachineScaleSet' update operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSet" + } + }, + "201": { + "description": "Resource 'VirtualMachineScaleSet' create operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSet" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "VirtualMachineScaleSets_Update", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Update a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "If-Match", + "in": "header", + "description": "The ETag of the transformation. Omit this value to always overwrite the current resource. Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes.", + "required": false, + "type": "string", + "x-ms-client-name": "IfMatch" + }, + { + "name": "If-None-Match", + "in": "header", + "description": "Set to '*' to allow a new record set to be created, but to prevent updating an existing record set. Other values will result in error from server as they are not supported.", + "required": false, + "type": "string", + "x-ms-client-name": "IfNoneMatch" + }, + { + "name": "parameters", + "in": "body", + "description": "The scale set object.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSet" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "VirtualMachineScaleSets_Delete", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Deletes a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "forceDeletion", + "in": "query", + "description": "Optional parameter to force delete a VM scale set. (Feature in Preview)", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/approveRollingUpgrade": { + "post": { + "operationId": "VirtualMachineScaleSets_ApproveRollingUpgrade", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Approve upgrade on deferred rolling upgrades for OS disks in the virtual machines in a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "vmInstanceIDs", + "in": "body", + "description": "A list of virtual machine instance IDs from the VM scale set.", + "required": false, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMInstanceIDs" + } + } + ], + "responses": { + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/convertToSinglePlacementGroup": { + "post": { + "operationId": "VirtualMachineScaleSets_ConvertToSinglePlacementGroup", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Converts SinglePlacementGroup property to false for a existing virtual machine scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "The input object for ConvertToSinglePlacementGroup API.", + "required": true, + "schema": { + "$ref": "#/definitions/VMScaleSetConvertToSinglePlacementGroupInput" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/deallocate": { + "post": { + "operationId": "VirtualMachineScaleSets_Deallocate", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Deallocates specific virtual machines in a VM scale set. Shuts down the virtual machines and releases the compute resources. You are not billed for the compute resources that this virtual machine scale set deallocates.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "hibernate", + "in": "query", + "description": "Optional parameter to hibernate a virtual machine from the VM scale set. (This feature is available for VMSS with Flexible OrchestrationMode only)", + "required": false, + "type": "boolean" + }, + { + "name": "vmInstanceIDs", + "in": "body", + "description": "A list of virtual machine instance IDs from the VM scale set.", + "required": false, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMInstanceIDs" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/delete": { + "post": { + "operationId": "VirtualMachineScaleSets_DeleteInstances", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Deletes virtual machines in a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "forceDeletion", + "in": "query", + "description": "Optional parameter to force delete virtual machines from the VM scale set. (Feature in Preview)", + "required": false, + "type": "boolean" + }, + { + "name": "vmInstanceIDs", + "in": "body", + "description": "A list of virtual machine instance IDs from the VM scale set.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMInstanceRequiredIDs" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/extensionRollingUpgrade": { + "post": { + "operationId": "VirtualMachineScaleSetRollingUpgrades_StartExtensionUpgrade", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Starts a rolling upgrade to move all extensions for all virtual machine scale set instances to the latest available extension version. Instances which are already running the latest extension versions are not affected.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/extensions": { + "get": { + "operationId": "VirtualMachineScaleSetExtensions_List", + "tags": [ + "VirtualMachineScaleSetExtensions" + ], + "description": "Gets a list of all extensions in a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetExtensionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/extensions/{vmssExtensionName}": { + "get": { + "operationId": "VirtualMachineScaleSetExtensions_Get", + "tags": [ + "VirtualMachineScaleSetExtensions" + ], + "description": "The operation to get the extension.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "vmssExtensionName", + "in": "path", + "description": "The name of the VM scale set extension.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetExtension" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "VirtualMachineScaleSetExtensions_CreateOrUpdate", + "tags": [ + "VirtualMachineScaleSetExtensions" + ], + "description": "The operation to create or update an extension.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "vmssExtensionName", + "in": "path", + "description": "The name of the VM scale set extension.", + "required": true, + "type": "string" + }, + { + "name": "extensionParameters", + "in": "body", + "description": "Parameters supplied to the Create VM scale set Extension operation.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetExtension" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VirtualMachineScaleSetExtension' update operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetExtension" + } + }, + "201": { + "description": "Resource 'VirtualMachineScaleSetExtension' create operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetExtension" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "VirtualMachineScaleSetExtensions_Update", + "tags": [ + "VirtualMachineScaleSetExtensions" + ], + "description": "The operation to update an extension.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "vmssExtensionName", + "in": "path", + "description": "The name of the VM scale set extension.", + "required": true, + "type": "string" + }, + { + "name": "extensionParameters", + "in": "body", + "description": "Parameters supplied to the Update VM scale set Extension operation.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetExtensionUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetExtension" + } + }, + "201": { + "description": "Resource 'VirtualMachineScaleSetExtension' create operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetExtension" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "VirtualMachineScaleSetExtensions_Delete", + "tags": [ + "VirtualMachineScaleSetExtensions" + ], + "description": "The operation to delete the extension.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "vmssExtensionName", + "in": "path", + "description": "The name of the VM scale set extension.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/forceRecoveryServiceFabricPlatformUpdateDomainWalk": { + "post": { + "operationId": "VirtualMachineScaleSets_ForceRecoveryServiceFabricPlatformUpdateDomainWalk", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Manual platform update domain walk to update virtual machines in a service fabric virtual machine scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "platformUpdateDomain", + "in": "query", + "description": "The platform update domain for which a manual recovery walk is requested", + "required": true, + "type": "integer", + "format": "int32" + }, + { + "name": "zone", + "in": "query", + "description": "The zone in which the manual recovery walk is requested for cross zone virtual machine scale set", + "required": false, + "type": "string" + }, + { + "name": "placementGroupId", + "in": "query", + "description": "The placement group id for which the manual recovery walk is requested.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RecoveryWalkResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/instanceView": { + "get": { + "operationId": "VirtualMachineScaleSets_GetInstanceView", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Gets the status of a VM scale set instance.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetInstanceView" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/manualupgrade": { + "post": { + "operationId": "VirtualMachineScaleSets_UpdateInstances", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Upgrades one or more virtual machines to the latest SKU set in the VM scale set model.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "vmInstanceIDs", + "in": "body", + "description": "A list of virtual machine instance IDs from the VM scale set.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMInstanceRequiredIDs" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/osRollingUpgrade": { + "post": { + "operationId": "VirtualMachineScaleSetRollingUpgrades_StartOSUpgrade", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Starts a rolling upgrade to move all virtual machine scale set instances to the latest available Platform Image OS version. Instances which are already running the latest available OS version are not affected.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/osUpgradeHistory": { + "get": { + "operationId": "VirtualMachineScaleSets_GetOSUpgradeHistory", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Gets list of OS upgrades on a VM scale set instance.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetListOSUpgradeHistory" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/performMaintenance": { + "post": { + "operationId": "VirtualMachineScaleSets_PerformMaintenance", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Perform maintenance on one or more virtual machines in a VM scale set. Operation on instances which are not eligible for perform maintenance will be failed. Please refer to best practices for more details: https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-maintenance-notifications", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "vmInstanceIDs", + "in": "body", + "description": "A list of virtual machine instance IDs from the VM scale set.", + "required": false, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMInstanceIDs" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/poweroff": { + "post": { + "operationId": "VirtualMachineScaleSets_PowerOff", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Power off (stop) one or more virtual machines in a VM scale set. Note that resources are still attached and you are getting charged for the resources. Instead, use deallocate to release resources and avoid charges.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "skipShutdown", + "in": "query", + "description": "The parameter to request non-graceful VM shutdown. True value for this flag indicates non-graceful shutdown whereas false indicates otherwise. Default value for this flag is false if not specified", + "required": false, + "type": "boolean" + }, + { + "name": "vmInstanceIDs", + "in": "body", + "description": "A list of virtual machine instance IDs from the VM scale set.", + "required": false, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMInstanceIDs" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/reapply": { + "post": { + "operationId": "VirtualMachineScaleSets_Reapply", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Reapplies the Virtual Machine Scale Set Virtual Machine Profile to the Virtual Machine Instances", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/redeploy": { + "post": { + "operationId": "VirtualMachineScaleSets_Redeploy", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Shuts down all the virtual machines in the virtual machine scale set, moves them to a new node, and powers them back on.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "vmInstanceIDs", + "in": "body", + "description": "A list of virtual machine instance IDs from the VM scale set.", + "required": false, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMInstanceIDs" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/reimage": { + "post": { + "operationId": "VirtualMachineScaleSets_Reimage", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Reimages (upgrade the operating system) one or more virtual machines in a VM scale set which don't have a ephemeral OS disk, for virtual machines who have a ephemeral OS disk the virtual machine is reset to initial state.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "vmScaleSetReimageInput", + "in": "body", + "description": "Parameters for Reimaging VM ScaleSet.", + "required": false, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetReimageParameters" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/reimageall": { + "post": { + "operationId": "VirtualMachineScaleSets_ReimageAll", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Reimages all the disks ( including data disks ) in the virtual machines in a VM scale set. This operation is only supported for managed disks.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "vmInstanceIDs", + "in": "body", + "description": "A list of virtual machine instance IDs from the VM scale set.", + "required": false, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMInstanceIDs" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/restart": { + "post": { + "operationId": "VirtualMachineScaleSets_Restart", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Restarts one or more virtual machines in a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "vmInstanceIDs", + "in": "body", + "description": "A list of virtual machine instance IDs from the VM scale set.", + "required": false, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMInstanceIDs" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/rollingUpgrades/cancel": { + "post": { + "operationId": "VirtualMachineScaleSetRollingUpgrades_Cancel", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Cancels the current virtual machine scale set rolling upgrade.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/rollingUpgrades/latest": { + "get": { + "operationId": "VirtualMachineScaleSetRollingUpgrades_GetLatest", + "tags": [ + "RollingUpgradeStatusInfos" + ], + "description": "Gets the status of the latest virtual machine scale set rolling upgrade.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RollingUpgradeStatusInfo" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/setOrchestrationServiceState": { + "post": { + "operationId": "VirtualMachineScaleSets_SetOrchestrationServiceState", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Changes ServiceState property for a given service", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "The input object for SetOrchestrationServiceState API.", + "required": true, + "schema": { + "$ref": "#/definitions/OrchestrationServiceStateInput" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/skus": { + "get": { + "operationId": "VirtualMachineScaleSets_ListSkus", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Gets a list of SKUs available for your VM scale set, including the minimum and maximum VM instances allowed for each SKU.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetListSkusResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/start": { + "post": { + "operationId": "VirtualMachineScaleSets_Start", + "tags": [ + "VirtualMachineScaleSets" + ], + "description": "Starts one or more virtual machines in a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "vmInstanceIDs", + "in": "body", + "description": "A list of virtual machine instance IDs from the VM scale set.", + "required": false, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMInstanceIDs" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines": { + "get": { + "operationId": "VirtualMachineScaleSetVMs_List", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Gets a list of all virtual machines in a VM scale sets.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "virtualMachineScaleSetName", + "in": "path", + "description": "The name of the VirtualMachineScaleSet", + "required": true, + "type": "string" + }, + { + "name": "$filter", + "in": "query", + "description": "The filter to apply to the operation. Allowed values are 'startswith(instanceView/statuses/code, 'PowerState') eq true', 'properties/latestModelApplied eq true', 'properties/latestModelApplied eq false'.", + "required": false, + "type": "string" + }, + { + "name": "$select", + "in": "query", + "description": "The list parameters. Allowed values are 'instanceView', 'instanceView/statuses'.", + "required": false, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply to the operation. Allowed values are 'instanceView'.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}": { + "get": { + "operationId": "VirtualMachineScaleSetVMs_Get", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Gets a virtual machine from a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation. 'InstanceView' will retrieve the instance view of the virtual machine. 'UserData' will retrieve the UserData of the virtual machine.", + "required": false, + "type": "string", + "enum": [ + "instanceView", + "userData", + "resiliencyView" + ], + "x-ms-enum": { + "name": "InstanceViewTypes", + "modelAsString": false + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVM" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "VirtualMachineScaleSetVMs_Update", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Updates a virtual machine of a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "If-Match", + "in": "header", + "description": "The ETag of the transformation. Omit this value to always overwrite the current resource. Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes.", + "required": false, + "type": "string", + "x-ms-client-name": "IfMatch" + }, + { + "name": "If-None-Match", + "in": "header", + "description": "Set to '*' to allow a new record set to be created, but to prevent updating an existing record set. Other values will result in error from server as they are not supported.", + "required": false, + "type": "string", + "x-ms-client-name": "IfNoneMatch" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Update Virtual Machine Scale Sets VM operation.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVM" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VirtualMachineScaleSetVM' update operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVM" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "VirtualMachineScaleSetVMs_Delete", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Deletes a virtual machine from a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "forceDeletion", + "in": "query", + "description": "Optional parameter to force delete a virtual machine from a VM scale set. (Feature in Preview)", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/approveRollingUpgrade": { + "post": { + "operationId": "VirtualMachineScaleSetVMs_ApproveRollingUpgrade", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Approve upgrade on deferred rolling upgrade for OS disk on a VM scale set instance.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/attachDetachDataDisks": { + "post": { + "operationId": "VirtualMachineScaleSetVMs_AttachDetachDataDisks", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Attach and detach data disks to/from a virtual machine in a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the attach and detach data disks operation on a Virtual Machine Scale Sets VM.", + "required": true, + "schema": { + "$ref": "#/definitions/AttachDetachDataDisksRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StorageProfile" + } + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/deallocate": { + "post": { + "operationId": "VirtualMachineScaleSetVMs_Deallocate", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Deallocates a specific virtual machine in a VM scale set. Shuts down the virtual machine and releases the compute resources it uses. You are not billed for the compute resources of this virtual machine once it is deallocated.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/extensions": { + "get": { + "operationId": "VirtualMachineScaleSetVMExtensions_List", + "tags": [ + "VirtualMachineScaleSetVMExtensions" + ], + "description": "The operation to get all extensions of an instance in Virtual Machine Scaleset.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMExtensionsListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/extensions/{vmExtensionName}": { + "get": { + "operationId": "VirtualMachineScaleSetVMExtensions_Get", + "tags": [ + "VirtualMachineScaleSetVMExtensions" + ], + "description": "The operation to get the VMSS VM extension.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "vmExtensionName", + "in": "path", + "description": "The name of the virtual machine extension.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMExtension" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "VirtualMachineScaleSetVMExtensions_CreateOrUpdate", + "tags": [ + "VirtualMachineScaleSetVMExtensions" + ], + "description": "The operation to create or update the VMSS VM extension.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "vmExtensionName", + "in": "path", + "description": "The name of the virtual machine extension.", + "required": true, + "type": "string" + }, + { + "name": "extensionParameters", + "in": "body", + "description": "Parameters supplied to the Create Virtual Machine Extension operation.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMExtension" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VirtualMachineScaleSetVMExtension' update operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMExtension" + } + }, + "201": { + "description": "Resource 'VirtualMachineScaleSetVMExtension' create operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMExtension" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "VirtualMachineScaleSetVMExtensions_Update", + "tags": [ + "VirtualMachineScaleSetVMExtensions" + ], + "description": "The operation to update the VMSS VM extension.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "vmExtensionName", + "in": "path", + "description": "The name of the virtual machine extension.", + "required": true, + "type": "string" + }, + { + "name": "extensionParameters", + "in": "body", + "description": "Parameters supplied to the Update Virtual Machine Extension operation.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMExtensionUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMExtension" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "VirtualMachineScaleSetVMExtensions_Delete", + "tags": [ + "VirtualMachineScaleSetVMExtensions" + ], + "description": "The operation to delete the VMSS VM extension.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "vmExtensionName", + "in": "path", + "description": "The name of the virtual machine extension.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/instanceView": { + "get": { + "operationId": "VirtualMachineScaleSetVMs_GetInstanceView", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Gets the status of a virtual machine from a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMInstanceView" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/performMaintenance": { + "post": { + "operationId": "VirtualMachineScaleSetVMs_PerformMaintenance", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Performs maintenance on a virtual machine in a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/powerOff": { + "post": { + "operationId": "VirtualMachineScaleSetVMs_PowerOff", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Power off (stop) a virtual machine in a VM scale set. Note that resources are still attached and you are getting charged for the resources. Instead, use deallocate to release resources and avoid charges.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "skipShutdown", + "in": "query", + "description": "The parameter to request non-graceful VM shutdown. True value for this flag indicates non-graceful shutdown whereas false indicates otherwise. Default value for this flag is false if not specified", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/redeploy": { + "post": { + "operationId": "VirtualMachineScaleSetVMs_Redeploy", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Shuts down the virtual machine in the virtual machine scale set, moves it to a new node, and powers it back on.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/reimage": { + "post": { + "operationId": "VirtualMachineScaleSetVMs_Reimage", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Reimages (upgrade the operating system) a specific virtual machine in a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "vmScaleSetVMReimageInput", + "in": "body", + "description": "Parameters for the Reimaging Virtual machine in ScaleSet.", + "required": false, + "schema": { + "$ref": "#/definitions/VirtualMachineScaleSetVMReimageParameters" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/reimageall": { + "post": { + "operationId": "VirtualMachineScaleSetVMs_ReimageAll", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Allows you to re-image all the disks ( including data disks ) in the a VM scale set instance. This operation is only supported for managed disks.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/restart": { + "post": { + "operationId": "VirtualMachineScaleSetVMs_Restart", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Restarts a virtual machine in a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/retrieveBootDiagnosticsData": { + "post": { + "operationId": "VirtualMachineScaleSetVMs_RetrieveBootDiagnosticsData", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "The operation to retrieve SAS URIs of boot diagnostic logs for a virtual machine in a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "sasUriExpirationTimeInMinutes", + "in": "query", + "description": "Expiration duration in minutes for the SAS URIs with a value between 1 to 1440 minutes. **Note:** If not specified, SAS URIs will be generated with a default expiration duration of 120 minutes.", + "required": false, + "type": "integer", + "format": "int32" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RetrieveBootDiagnosticsDataResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommand": { + "post": { + "operationId": "VirtualMachineScaleSetVMs_RunCommand", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Run command on a virtual machine in a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Run command operation.", + "required": true, + "schema": { + "$ref": "#/definitions/RunCommandInput" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RunCommandResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands": { + "get": { + "operationId": "VirtualMachineScaleSetVMRunCommands_List", + "tags": [ + "VirtualMachineScaleSetVMRunCommands" + ], + "description": "The operation to get all run commands of an instance in Virtual Machine Scaleset.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VirtualMachineScaleSet", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The name of the VirtualMachineScaleSetVM", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommandsListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands/{runCommandName}": { + "get": { + "operationId": "VirtualMachineScaleSetVMRunCommands_Get", + "tags": [ + "VirtualMachineScaleSetVMRunCommands" + ], + "description": "The operation to get the VMSS VM run command.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VirtualMachineScaleSet", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The name of the VirtualMachineScaleSetVM", + "required": true, + "type": "string" + }, + { + "name": "runCommandName", + "in": "path", + "description": "The name of the VirtualMachineRunCommand", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommand" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "VirtualMachineScaleSetVMRunCommands_CreateOrUpdate", + "tags": [ + "VirtualMachineScaleSetVMRunCommands" + ], + "description": "The operation to create or update the VMSS VM run command.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VirtualMachineScaleSet", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The name of the VirtualMachineScaleSetVM", + "required": true, + "type": "string" + }, + { + "name": "runCommandName", + "in": "path", + "description": "The name of the VirtualMachineRunCommand", + "required": true, + "type": "string" + }, + { + "name": "runCommand", + "in": "body", + "description": "Parameters supplied to the Create Virtual Machine RunCommand operation.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommand" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VirtualMachineRunCommand' update operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommand" + } + }, + "201": { + "description": "Resource 'VirtualMachineRunCommand' create operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommand" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "VirtualMachineScaleSetVMRunCommands_Update", + "tags": [ + "VirtualMachineScaleSetVMRunCommands" + ], + "description": "The operation to update the VMSS VM run command.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VirtualMachineScaleSet", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The name of the VirtualMachineScaleSetVM", + "required": true, + "type": "string" + }, + { + "name": "runCommandName", + "in": "path", + "description": "The name of the VirtualMachineRunCommand", + "required": true, + "type": "string" + }, + { + "name": "runCommand", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommandUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommand" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "VirtualMachineScaleSetVMRunCommands_Delete", + "tags": [ + "VirtualMachineScaleSetVMRunCommands" + ], + "description": "The operation to delete the VMSS VM run command.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VirtualMachineScaleSet", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The name of the VirtualMachineScaleSetVM", + "required": true, + "type": "string" + }, + { + "name": "runCommandName", + "in": "path", + "description": "The name of the VirtualMachineRunCommand", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/simulateEviction": { + "post": { + "operationId": "VirtualMachineScaleSetVMs_SimulateEviction", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "The operation to simulate the eviction of spot virtual machine in a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/start": { + "post": { + "operationId": "VirtualMachineScaleSetVMs_Start", + "tags": [ + "VirtualMachineScaleSetVMS" + ], + "description": "Starts a virtual machine in a VM scale set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmScaleSetName", + "in": "path", + "description": "The name of the VM scale set.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "The instance ID of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines": { + "get": { + "operationId": "VirtualMachines_List", + "tags": [ + "VirtualMachines" + ], + "description": "Lists all of the virtual machines in the specified resource group. Use the nextLink property in the response to get the next page of virtual machines.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "$filter", + "in": "query", + "description": "The system query option to filter VMs returned in the response. Allowed value is 'virtualMachineScaleSet/id' eq /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}'", + "required": false, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on operation. 'instanceView' enables fetching run time status of all Virtual Machines, this can only be specified if a valid $filter option is specified", + "required": false, + "type": "string", + "enum": [ + "instanceView" + ], + "x-ms-enum": { + "name": "ExpandTypeForListVMs", + "modelAsString": true, + "values": [ + { + "name": "instanceView", + "value": "instanceView" + } + ] + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}": { + "get": { + "operationId": "VirtualMachines_Get", + "tags": [ + "VirtualMachines" + ], + "description": "Retrieves information about the model view or the instance view of a virtual machine.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation. 'InstanceView' retrieves a snapshot of the runtime properties of the virtual machine that is managed by the platform and can change outside of control plane operations. 'UserData' retrieves the UserData property as part of the VM model view that was provided by the user during the VM Create/Update operation.", + "required": false, + "type": "string", + "enum": [ + "instanceView", + "userData", + "resiliencyView" + ], + "x-ms-enum": { + "name": "InstanceViewTypes", + "modelAsString": false + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachine" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "VirtualMachines_CreateOrUpdate", + "tags": [ + "VirtualMachines" + ], + "description": "The operation to create or update a virtual machine. Please note some properties can be set only during virtual machine creation.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "If-Match", + "in": "header", + "description": "The ETag of the transformation. Omit this value to always overwrite the current resource. Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes.", + "required": false, + "type": "string", + "x-ms-client-name": "IfMatch" + }, + { + "name": "If-None-Match", + "in": "header", + "description": "Set to '*' to allow a new record set to be created, but to prevent updating an existing record set. Other values will result in error from server as they are not supported.", + "required": false, + "type": "string", + "x-ms-client-name": "IfNoneMatch" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Create Virtual Machine operation.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachine" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VirtualMachine' update operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachine" + } + }, + "201": { + "description": "Resource 'VirtualMachine' create operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachine" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "VirtualMachines_Update", + "tags": [ + "VirtualMachines" + ], + "description": "The operation to update a virtual machine.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "If-Match", + "in": "header", + "description": "The ETag of the transformation. Omit this value to always overwrite the current resource. Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes.", + "required": false, + "type": "string", + "x-ms-client-name": "IfMatch" + }, + { + "name": "If-None-Match", + "in": "header", + "description": "Set to '*' to allow a new record set to be created, but to prevent updating an existing record set. Other values will result in error from server as they are not supported.", + "required": false, + "type": "string", + "x-ms-client-name": "IfNoneMatch" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Update Virtual Machine operation.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachine" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "VirtualMachines_Delete", + "tags": [ + "VirtualMachines" + ], + "description": "The operation to delete a virtual machine.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "forceDeletion", + "in": "query", + "description": "Optional parameter to force delete virtual machines.", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/assessPatches": { + "post": { + "operationId": "VirtualMachines_AssessPatches", + "tags": [ + "VirtualMachines" + ], + "description": "Assess patches on the VM.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineAssessPatchesResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/attachDetachDataDisks": { + "post": { + "operationId": "VirtualMachines_AttachDetachDataDisks", + "tags": [ + "VirtualMachines" + ], + "description": "Attach and detach data disks to/from the virtual machine.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the attach and detach data disks operation on the virtual machine.", + "required": true, + "schema": { + "$ref": "#/definitions/AttachDetachDataDisksRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StorageProfile" + } + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/capture": { + "post": { + "operationId": "VirtualMachines_Capture", + "tags": [ + "VirtualMachines" + ], + "description": "Captures the VM by copying virtual hard disks of the VM and outputs a template that can be used to create similar VMs.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Capture Virtual Machine operation.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineCaptureParameters" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineCaptureResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/convertToManagedDisks": { + "post": { + "operationId": "VirtualMachines_ConvertToManagedDisks", + "tags": [ + "VirtualMachines" + ], + "description": "Converts virtual machine disks from blob-based to managed disks. Virtual machine must be stop-deallocated before invoking this operation.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/deallocate": { + "post": { + "operationId": "VirtualMachines_Deallocate", + "tags": [ + "VirtualMachines" + ], + "description": "Shuts down the virtual machine and releases the compute resources. You are not billed for the compute resources that this virtual machine uses.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "hibernate", + "in": "query", + "description": "Optional parameter to hibernate a virtual machine.", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/extensions": { + "get": { + "operationId": "VirtualMachineExtensions_List", + "tags": [ + "VirtualMachineExtensions" + ], + "description": "The operation to get all extensions of a Virtual Machine.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineExtensionsListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/extensions/{vmExtensionName}": { + "get": { + "operationId": "VirtualMachineExtensions_Get", + "tags": [ + "VirtualMachineExtensions" + ], + "description": "The operation to get the extension.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "vmExtensionName", + "in": "path", + "description": "The name of the virtual machine extension.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineExtension" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "VirtualMachineExtensions_CreateOrUpdate", + "tags": [ + "VirtualMachineExtensions" + ], + "description": "The operation to create or update the extension.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "vmExtensionName", + "in": "path", + "description": "The name of the virtual machine extension.", + "required": true, + "type": "string" + }, + { + "name": "extensionParameters", + "in": "body", + "description": "Parameters supplied to the Create Virtual Machine Extension operation.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineExtension" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VirtualMachineExtension' update operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineExtension" + } + }, + "201": { + "description": "Resource 'VirtualMachineExtension' create operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineExtension" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "VirtualMachineExtensions_Update", + "tags": [ + "VirtualMachineExtensions" + ], + "description": "The operation to update the extension.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "vmExtensionName", + "in": "path", + "description": "The name of the virtual machine extension.", + "required": true, + "type": "string" + }, + { + "name": "extensionParameters", + "in": "body", + "description": "Parameters supplied to the Update Virtual Machine Extension operation.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineExtensionUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineExtension" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "VirtualMachineExtensions_Delete", + "tags": [ + "VirtualMachineExtensions" + ], + "description": "The operation to delete the extension.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "vmExtensionName", + "in": "path", + "description": "The name of the virtual machine extension.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/generalize": { + "post": { + "operationId": "VirtualMachines_Generalize", + "tags": [ + "VirtualMachines" + ], + "description": "Sets the OS state of the virtual machine to generalized. It is recommended to sysprep the virtual machine before performing this operation. For Windows, please refer to [Create a managed image of a generalized VM in Azure](https://docs.microsoft.com/azure/virtual-machines/windows/capture-image-resource). For Linux, please refer to [How to create an image of a virtual machine or VHD](https://docs.microsoft.com/azure/virtual-machines/linux/capture-image).", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/installPatches": { + "post": { + "operationId": "VirtualMachines_InstallPatches", + "tags": [ + "VirtualMachines" + ], + "description": "Installs patches on the VM.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "installPatchesInput", + "in": "body", + "description": "Input for InstallPatches as directly received by the API", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineInstallPatchesParameters" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineInstallPatchesResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/instanceView": { + "get": { + "operationId": "VirtualMachines_InstanceView", + "tags": [ + "VirtualMachines" + ], + "description": "Retrieves information about the run-time state of a virtual machine.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineInstanceView" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/migrateToVirtualMachineScaleSet": { + "post": { + "operationId": "VirtualMachines_migrateToVMScaleSet", + "tags": [ + "VirtualMachines" + ], + "description": "Migrate a virtual machine from availability set to Flexible Virtual Machine Scale Set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Migrate Virtual Machine operation.", + "required": false, + "schema": { + "$ref": "#/definitions/MigrateVMToVirtualMachineScaleSetInput" + } + } + ], + "responses": { + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/performMaintenance": { + "post": { + "operationId": "VirtualMachines_PerformMaintenance", + "tags": [ + "VirtualMachines" + ], + "description": "The operation to perform maintenance on a virtual machine.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/powerOff": { + "post": { + "operationId": "VirtualMachines_PowerOff", + "tags": [ + "VirtualMachines" + ], + "description": "The operation to power off (stop) a virtual machine. The virtual machine can be restarted with the same provisioned resources. You are still charged for this virtual machine.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "skipShutdown", + "in": "query", + "description": "The parameter to request non-graceful VM shutdown. True value for this flag indicates non-graceful shutdown whereas false indicates otherwise. Default value for this flag is false if not specified", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/reapply": { + "post": { + "operationId": "VirtualMachines_Reapply", + "tags": [ + "VirtualMachines" + ], + "description": "The operation to reapply a virtual machine's state.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/redeploy": { + "post": { + "operationId": "VirtualMachines_Redeploy", + "tags": [ + "VirtualMachines" + ], + "description": "Shuts down the virtual machine, moves it to a new node, and powers it back on.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/reimage": { + "post": { + "operationId": "VirtualMachines_Reimage", + "tags": [ + "VirtualMachines" + ], + "description": "Reimages (upgrade the operating system) a virtual machine which don't have a ephemeral OS disk, for virtual machines who have a ephemeral OS disk the virtual machine is reset to initial state. NOTE: The retaining of old OS disk depends on the value of deleteOption of OS disk. If deleteOption is detach, the old OS disk will be preserved after reimage. If deleteOption is delete, the old OS disk will be deleted after reimage. The deleteOption of the OS disk should be updated accordingly before performing the reimage.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Reimage Virtual Machine operation.", + "required": false, + "schema": { + "$ref": "#/definitions/VirtualMachineReimageParameters" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/restart": { + "post": { + "operationId": "VirtualMachines_Restart", + "tags": [ + "VirtualMachines" + ], + "description": "The operation to restart a virtual machine.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/retrieveBootDiagnosticsData": { + "post": { + "operationId": "VirtualMachines_RetrieveBootDiagnosticsData", + "tags": [ + "VirtualMachines" + ], + "description": "The operation to retrieve SAS URIs for a virtual machine's boot diagnostic logs.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "sasUriExpirationTimeInMinutes", + "in": "query", + "description": "Expiration duration in minutes for the SAS URIs with a value between 1 to 1440 minutes. **Note:** If not specified, SAS URIs will be generated with a default expiration duration of 120 minutes.", + "required": false, + "type": "integer", + "format": "int32" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RetrieveBootDiagnosticsDataResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/runCommand": { + "post": { + "operationId": "VirtualMachines_RunCommand", + "tags": [ + "VirtualMachines" + ], + "description": "Run command on the VM.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "Parameters supplied to the Run command operation.", + "required": true, + "schema": { + "$ref": "#/definitions/RunCommandInput" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RunCommandResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/runCommands": { + "get": { + "operationId": "VirtualMachineRunCommands_ListByVirtualMachine", + "tags": [ + "VirtualMachineRunCommands" + ], + "description": "The operation to get all run commands of a Virtual Machine.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the VirtualMachine", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommandsListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/runCommands/{runCommandName}": { + "get": { + "operationId": "VirtualMachineRunCommands_GetByVirtualMachine", + "tags": [ + "VirtualMachineRunCommands" + ], + "description": "The operation to get the run command.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the VirtualMachine", + "required": true, + "type": "string" + }, + { + "name": "runCommandName", + "in": "path", + "description": "The name of the VirtualMachineRunCommand", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommand" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "VirtualMachineRunCommands_CreateOrUpdate", + "tags": [ + "VirtualMachineRunCommands" + ], + "description": "The operation to create or update the run command.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the VirtualMachine", + "required": true, + "type": "string" + }, + { + "name": "runCommandName", + "in": "path", + "description": "The name of the VirtualMachineRunCommand", + "required": true, + "type": "string" + }, + { + "name": "runCommand", + "in": "body", + "description": "Parameters supplied to the Create Virtual Machine RunCommand operation.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommand" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VirtualMachineRunCommand' update operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommand" + } + }, + "201": { + "description": "Resource 'VirtualMachineRunCommand' create operation succeeded", + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommand" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "VirtualMachineRunCommands_Update", + "tags": [ + "VirtualMachineRunCommands" + ], + "description": "The operation to update the run command.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the VirtualMachine", + "required": true, + "type": "string" + }, + { + "name": "runCommandName", + "in": "path", + "description": "The name of the VirtualMachineRunCommand", + "required": true, + "type": "string" + }, + { + "name": "runCommand", + "in": "body", + "description": "Parameters supplied to the Update Virtual Machine RunCommand operation.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommandUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VirtualMachineRunCommand" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "VirtualMachineRunCommands_Delete", + "tags": [ + "VirtualMachineRunCommands" + ], + "description": "The operation to delete the run command.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the VirtualMachine", + "required": true, + "type": "string" + }, + { + "name": "runCommandName", + "in": "path", + "description": "The name of the VirtualMachineRunCommand", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/simulateEviction": { + "post": { + "operationId": "VirtualMachines_SimulateEviction", + "tags": [ + "VirtualMachines" + ], + "description": "The operation to simulate the eviction of spot virtual machine.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/start": { + "post": { + "operationId": "VirtualMachines_Start", + "tags": [ + "VirtualMachines" + ], + "description": "The operation to start a virtual machine.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/vmSizes": { + "get": { + "operationId": "VirtualMachines_ListAvailableSizes", + "tags": [ + "VirtualMachines" + ], + "description": "Lists all available virtual machine sizes to which the specified virtual machine can be resized.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "vmName", + "in": "path", + "description": "The name of the virtual machine.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VirtualMachineSizeListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + } + }, + "x-ms-paths": { + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions?$expand=Properties": { + "get": { + "operationId": "VirtualMachineImages_ListWithProperties", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "publisherName", + "in": "path", + "description": "A valid image publisher.", + "required": true, + "type": "string" + }, + { + "name": "offer", + "in": "path", + "description": "A valid image publisher offer.", + "required": true, + "type": "string" + }, + { + "name": "skus", + "in": "path", + "description": "A valid image SKU.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": true, + "type": "string" + }, + { + "name": "$top", + "in": "query", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "$orderby", + "in": "query", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VirtualMachineImage" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + } + }, + "definitions": { + "AdditionalCapabilities": { + "type": "object", + "description": "Enables or disables a capability on the virtual machine or virtual machine scale set.", + "properties": { + "ultraSSDEnabled": { + "type": "boolean", + "description": "The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled." + }, + "hibernationEnabled": { + "type": "boolean", + "description": "The flag that enables or disables hibernation capability on the VM." + } + } + }, + "AdditionalUnattendContent": { + "type": "object", + "description": "Specifies additional XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup. Contents are defined by setting name, component name, and the pass in which the content is applied.", + "properties": { + "passName": { + "$ref": "#/definitions/PassNames", + "description": "The pass name. Currently, the only allowable value is OobeSystem." + }, + "componentName": { + "$ref": "#/definitions/ComponentNames", + "description": "The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup." + }, + "settingName": { + "$ref": "#/definitions/SettingNames", + "description": "Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon." + }, + "content": { + "type": "string", + "description": "Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted." + } + } + }, + "AllocationStrategy": { + "type": "string", + "description": "Specifies the allocation strategy for the virtual machine scale set based on which the VMs will be allocated.", + "enum": [ + "LowestPrice", + "CapacityOptimized", + "Prioritized" + ], + "x-ms-enum": { + "name": "AllocationStrategy", + "modelAsString": true, + "values": [ + { + "name": "LowestPrice", + "value": "LowestPrice" + }, + { + "name": "CapacityOptimized", + "value": "CapacityOptimized" + }, + { + "name": "Prioritized", + "value": "Prioritized" + } + ] + } + }, + "AlternativeOption": { + "type": "object", + "description": "Describes the alternative option specified by the Publisher for this image when this image is deprecated.", + "properties": { + "type": { + "$ref": "#/definitions/AlternativeType", + "description": "Describes the type of the alternative option." + }, + "value": { + "type": "string", + "description": "Indicates the alternative option value specified by the Publisher. This is the Offer name when the type is Offer or the Plan name when the type is Plan." + } + } + }, + "AlternativeType": { + "type": "string", + "description": "Describes the type of the alternative option.", + "enum": [ + "None", + "Offer", + "Plan" + ], + "x-ms-enum": { + "name": "AlternativeType", + "modelAsString": true, + "values": [ + { + "name": "None", + "value": "None" + }, + { + "name": "Offer", + "value": "Offer" + }, + { + "name": "Plan", + "value": "Plan" + } + ] + } + }, + "ApiEntityReference": { + "type": "object", + "description": "The API entity reference.", + "properties": { + "id": { + "type": "string", + "description": "The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/..." + } + } + }, + "ApplicationProfile": { + "type": "object", + "description": "Contains the list of gallery applications that should be made available to the VM/VMSS", + "properties": { + "galleryApplications": { + "type": "array", + "description": "Specifies the gallery applications that should be made available to the VM/VMSS", + "items": { + "$ref": "#/definitions/VMGalleryApplication" + }, + "x-ms-identifiers": [ + "packageReferenceId" + ] + } + } + }, + "ArchitectureTypes": { + "type": "string", + "description": "Specifies the Architecture Type", + "enum": [ + "x64", + "Arm64" + ], + "x-ms-enum": { + "name": "ArchitectureTypes", + "modelAsString": true, + "values": [ + { + "name": "x64", + "value": "x64" + }, + { + "name": "Arm64", + "value": "Arm64" + } + ] + } + }, + "AttachDetachDataDisksRequest": { + "type": "object", + "description": "Specifies the input for attaching and detaching a list of managed data disks.", + "properties": { + "dataDisksToAttach": { + "type": "array", + "description": "The list of managed data disks to be attached.", + "minItems": 1, + "items": { + "$ref": "#/definitions/DataDisksToAttach" + }, + "x-ms-identifiers": [ + "diskId" + ] + }, + "dataDisksToDetach": { + "type": "array", + "description": "The list of managed data disks to be detached.", + "minItems": 1, + "items": { + "$ref": "#/definitions/DataDisksToDetach" + }, + "x-ms-identifiers": [ + "diskId" + ] + } + } + }, + "AutomaticOSUpgradePolicy": { + "type": "object", + "description": "The configuration parameters used for performing automatic OS upgrade.", + "properties": { + "enableAutomaticOSUpgrade": { + "type": "boolean", + "description": "Indicates whether OS upgrades should automatically be applied to scale set instances in a rolling fashion when a newer version of the OS image becomes available. Default value is false. If this is set to true for Windows based scale sets, [enableAutomaticUpdates](https://docs.microsoft.com/dotnet/api/microsoft.azure.management.compute.models.windowsconfiguration.enableautomaticupdates?view=azure-dotnet) is automatically set to false and cannot be set to true." + }, + "disableAutomaticRollback": { + "type": "boolean", + "description": "Whether OS image rollback feature should be disabled. Default value is false." + }, + "useRollingUpgradePolicy": { + "type": "boolean", + "description": "Indicates whether rolling upgrade policy should be used during Auto OS Upgrade. Default value is false. Auto OS Upgrade will fallback to the default policy if no policy is defined on the VMSS." + }, + "osRollingUpgradeDeferral": { + "type": "boolean", + "description": "Indicates whether Auto OS Upgrade should undergo deferral. Deferred OS upgrades will send advanced notifications on a per-VM basis that an OS upgrade from rolling upgrades is incoming, via the IMDS tag 'Platform.PendingOSUpgrade'. The upgrade then defers until the upgrade is approved via an ApproveRollingUpgrade call." + } + } + }, + "AutomaticOSUpgradeProperties": { + "type": "object", + "description": "Describes automatic OS upgrade properties on the image.", + "properties": { + "automaticOSUpgradeSupported": { + "type": "boolean", + "description": "Specifies whether automatic OS upgrade is supported on the image." + } + }, + "required": [ + "automaticOSUpgradeSupported" + ] + }, + "AutomaticRepairsPolicy": { + "type": "object", + "description": "Specifies the configuration parameters for automatic repairs on the virtual machine scale set.", + "properties": { + "enabled": { + "type": "boolean", + "description": "Specifies whether automatic repairs should be enabled on the virtual machine scale set. The default value is false." + }, + "gracePeriod": { + "type": "string", + "description": "The amount of time for which automatic repairs are suspended due to a state change on VM. The grace time starts after the state change has completed. This helps avoid premature or accidental repairs. The time duration should be specified in ISO 8601 format. The minimum allowed grace period is 10 minutes (PT10M), which is also the default value. The maximum allowed grace period is 90 minutes (PT90M)." + }, + "repairAction": { + "$ref": "#/definitions/RepairAction", + "description": "Type of repair action (replace, restart, reimage) that will be used for repairing unhealthy virtual machines in the scale set. Default value is replace." + } + } + }, + "AutomaticZoneRebalancingPolicy": { + "type": "object", + "description": "The configuration parameters used while performing automatic AZ balancing.", + "properties": { + "enabled": { + "type": "boolean", + "description": "Specifies whether Automatic AZ Balancing should be enabled on the virtual machine scale set. The default value is false." + }, + "rebalanceStrategy": { + "$ref": "#/definitions/RebalanceStrategy", + "description": "Type of rebalance strategy that will be used for rebalancing virtual machines in the scale set across availability zones. Default and only supported value for now is Recreate." + }, + "rebalanceBehavior": { + "$ref": "#/definitions/RebalanceBehavior", + "description": "Type of rebalance behavior that will be used for recreating virtual machines in the scale set across availability zones. Default and only supported value for now is CreateBeforeDelete." + } + } + }, + "AvailabilitySet": { + "type": "object", + "description": "Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see [Availability sets overview](https://docs.microsoft.com/azure/virtual-machines/availability-set-overview). For more information on Azure planned maintenance, see [Maintenance and updates for Virtual Machines in Azure](https://docs.microsoft.com/azure/virtual-machines/maintenance-and-updates). Currently, a VM can only be added to an availability set at creation time. An existing VM cannot be added to an availability set.", + "properties": { + "properties": { + "$ref": "#/definitions/AvailabilitySetProperties", + "description": "The instance view of a resource.", + "x-ms-client-flatten": true + }, + "sku": { + "$ref": "#/definitions/Sku", + "description": "Sku of the availability set, only name is required to be set. See AvailabilitySetSkuTypes for possible set of values. Use 'Aligned' for virtual machines with managed disks and 'Classic' for virtual machines with unmanaged disks. Default value is 'Classic'." + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "AvailabilitySetListResult": { + "type": "object", + "description": "The List Availability Set operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of availability sets.", + "items": { + "$ref": "#/definitions/AvailabilitySet" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The URI to fetch the next page of AvailabilitySets. Call ListNext() with this URI to fetch the next page of AvailabilitySets." + } + }, + "required": [ + "value" + ] + }, + "AvailabilitySetProperties": { + "type": "object", + "description": "The instance view of a resource.", + "properties": { + "platformUpdateDomainCount": { + "type": "integer", + "format": "int32", + "description": "Update Domain count." + }, + "platformFaultDomainCount": { + "type": "integer", + "format": "int32", + "description": "Fault Domain count." + }, + "virtualMachines": { + "type": "array", + "description": "A list of references to all virtual machines in the availability set.", + "items": { + "$ref": "./common.json#/definitions/SubResource" + } + }, + "proximityPlacementGroup": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies information about the proximity placement group that the availability set should be assigned to. Minimum api-version: 2018-04-01." + }, + "statuses": { + "type": "array", + "description": "The resource status information.", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "scheduledEventsPolicy": { + "$ref": "#/definitions/ScheduledEventsPolicy", + "description": "Specifies Redeploy, Reboot and ScheduledEventsAdditionalPublishingTargets Scheduled Event related configurations for the availability set." + }, + "virtualMachineScaleSetMigrationInfo": { + "$ref": "#/definitions/VirtualMachineScaleSetMigrationInfo", + "description": "Describes the migration properties on the Availability Set.", + "readOnly": true + } + } + }, + "AvailabilitySetSkuTypes": { + "type": "string", + "description": "Specifies the sku of an Availability Set. Use 'Aligned' for virtual machines with managed disks and 'Classic' for virtual machines with unmanaged disks. Default value is 'Classic'.", + "enum": [ + "Classic", + "Aligned" + ], + "x-ms-enum": { + "name": "AvailabilitySetSkuTypes", + "modelAsString": true, + "values": [ + { + "name": "Classic", + "value": "Classic" + }, + { + "name": "Aligned", + "value": "Aligned" + } + ] + } + }, + "AvailabilitySetUpdate": { + "type": "object", + "description": "Specifies information about the availability set that the virtual machine should be assigned to. Only tags may be updated.", + "properties": { + "properties": { + "$ref": "#/definitions/AvailabilitySetProperties", + "description": "The instance view of a resource.", + "x-ms-client-flatten": true + }, + "sku": { + "$ref": "#/definitions/Sku", + "description": "Sku of the availability set" + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResource" + } + ] + }, + "AvailablePatchSummary": { + "type": "object", + "description": "Describes the properties of an virtual machine instance view for available patch summary.", + "properties": { + "status": { + "$ref": "#/definitions/PatchOperationStatus", + "description": "The overall success or failure status of the operation. It remains \"InProgress\" until the operation completes. At that point it will become \"Unknown\", \"Failed\", \"Succeeded\", or \"CompletedWithWarnings.\"", + "readOnly": true + }, + "assessmentActivityId": { + "type": "string", + "description": "The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.", + "readOnly": true + }, + "rebootPending": { + "type": "boolean", + "description": "The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.", + "readOnly": true + }, + "criticalAndSecurityPatchCount": { + "type": "integer", + "format": "int32", + "description": "The number of critical or security patches that have been detected as available and not yet installed.", + "readOnly": true + }, + "otherPatchCount": { + "type": "integer", + "format": "int32", + "description": "The number of all available patches excluding critical and security.", + "readOnly": true + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "The UTC timestamp when the operation began.", + "readOnly": true + }, + "lastModifiedTime": { + "type": "string", + "format": "date-time", + "description": "The UTC timestamp when the operation began.", + "readOnly": true + }, + "error": { + "$ref": "./common.json#/definitions/ApiError", + "description": "The errors that were encountered during execution of the operation. The details array contains the list of them.", + "readOnly": true + } + } + }, + "BillingProfile": { + "type": "object", + "description": "Specifies the billing related details of a Azure Spot VM or VMSS. Minimum api-version: 2019-03-01.", + "properties": { + "maxPrice": { + "type": "number", + "format": "double", + "description": "Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars.

This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price.

The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS.

Possible values are:

- Any decimal value greater than zero. Example: 0.01538

-1 – indicates default price to be up-to on-demand.

You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you.

Minimum api-version: 2019-03-01." + } + } + }, + "BootDiagnostics": { + "type": "object", + "description": "Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.", + "properties": { + "enabled": { + "type": "boolean", + "description": "Whether boot diagnostics should be enabled on the Virtual Machine." + }, + "storageUri": { + "type": "string", + "description": "Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used." + } + } + }, + "BootDiagnosticsInstanceView": { + "type": "object", + "description": "The instance view of a virtual machine boot diagnostics.", + "properties": { + "consoleScreenshotBlobUri": { + "type": "string", + "description": "The console screenshot blob URI. **Note:** This will **not** be set if boot diagnostics is currently enabled with managed storage.", + "readOnly": true + }, + "serialConsoleLogBlobUri": { + "type": "string", + "description": "The serial console log blob Uri. **Note:** This will **not** be set if boot diagnostics is currently enabled with managed storage.", + "readOnly": true + }, + "status": { + "$ref": "#/definitions/InstanceViewStatus", + "description": "The boot diagnostics status information for the VM. **Note:** It will be set only if there are errors encountered in enabling boot diagnostics.", + "readOnly": true + } + } + }, + "CachingTypes": { + "type": "string", + "description": "Specifies the caching requirements. Possible values are: **None,** **ReadOnly,** **ReadWrite.** The default values are: **None for Standard storage. ReadOnly for Premium storage**", + "enum": [ + "None", + "ReadOnly", + "ReadWrite" + ], + "x-ms-enum": { + "name": "CachingTypes", + "modelAsString": false + } + }, + "CapacityReservation": { + "type": "object", + "description": "Specifies information about the capacity reservation.", + "properties": { + "properties": { + "$ref": "#/definitions/CapacityReservationProperties", + "description": "Properties of the Capacity reservation.", + "x-ms-client-flatten": true + }, + "sku": { + "$ref": "#/definitions/Sku", + "description": "SKU of the resource for which capacity needs be reserved. The SKU name and capacity is required to be set. Currently VM Skus with the capability called 'CapacityReservationSupported' set to true are supported. Refer to List Microsoft.Compute SKUs in a region (https://docs.microsoft.com/rest/api/compute/resourceskus/list) for supported values." + }, + "zones": { + "type": "array", + "description": "The availability zones.", + "items": { + "type": "string" + } + } + }, + "required": [ + "sku" + ], + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "CapacityReservationGroup": { + "type": "object", + "description": "Specifies information about the capacity reservation group that the capacity reservations should be assigned to. Currently, a capacity reservation can only be added to a capacity reservation group at creation time. An existing capacity reservation cannot be added or moved to another capacity reservation group.", + "properties": { + "properties": { + "$ref": "#/definitions/CapacityReservationGroupProperties", + "description": "capacity reservation group Properties.", + "x-ms-client-flatten": true + }, + "zones": { + "type": "array", + "description": "The availability zones.", + "items": { + "type": "string" + } + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "CapacityReservationGroupInstanceView": { + "type": "object", + "properties": { + "capacityReservations": { + "type": "array", + "description": "List of instance view of the capacity reservations under the capacity reservation group.", + "items": { + "$ref": "#/definitions/CapacityReservationInstanceViewWithName" + }, + "readOnly": true, + "x-ms-identifiers": [ + "name" + ] + }, + "sharedSubscriptionIds": { + "type": "array", + "description": "List of the subscriptions that the capacity reservation group is shared with. **Note:** Minimum api-version: 2023-09-01. Please refer to https://aka.ms/computereservationsharing for more details.", + "items": { + "$ref": "./common.json#/definitions/SubResourceReadOnly" + }, + "readOnly": true, + "x-ms-identifiers": [ + "id" + ] + } + } + }, + "CapacityReservationGroupInstanceViewTypes": { + "type": "string", + "enum": [ + "instanceView" + ], + "x-ms-enum": { + "name": "CapacityReservationGroupInstanceViewTypes", + "modelAsString": true, + "values": [ + { + "name": "instanceView", + "value": "instanceView" + } + ] + } + }, + "CapacityReservationGroupListResult": { + "type": "object", + "description": "The List capacity reservation group with resource group response.", + "properties": { + "value": { + "type": "array", + "description": "The list of capacity reservation groups.", + "items": { + "$ref": "#/definitions/CapacityReservationGroup" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The URI to fetch the next page of capacity reservation groups. Call ListNext() with this URI to fetch the next page of capacity reservation groups." + } + }, + "required": [ + "value" + ] + }, + "CapacityReservationGroupProperties": { + "type": "object", + "description": "capacity reservation group Properties.", + "properties": { + "capacityReservations": { + "type": "array", + "description": "A list of all capacity reservation resource ids that belong to capacity reservation group.", + "items": { + "$ref": "./common.json#/definitions/SubResourceReadOnly" + }, + "readOnly": true + }, + "virtualMachinesAssociated": { + "type": "array", + "description": "A list of references to all virtual machines associated to the capacity reservation group.", + "items": { + "$ref": "./common.json#/definitions/SubResourceReadOnly" + }, + "readOnly": true + }, + "instanceView": { + "$ref": "#/definitions/CapacityReservationGroupInstanceView", + "description": "The capacity reservation group instance view which has the list of instance views for all the capacity reservations that belong to the capacity reservation group.", + "readOnly": true + }, + "sharingProfile": { + "$ref": "#/definitions/ResourceSharingProfile", + "description": "Specifies the settings to enable sharing across subscriptions for the capacity reservation group resource. Pls. keep in mind the capacity reservation group resource generally can be shared across subscriptions belonging to a single azure AAD tenant or cross AAD tenant if there is a trust relationship established between the AAD tenants. **Note:** Minimum api-version: 2023-09-01. Please refer to https://aka.ms/computereservationsharing for more details." + } + } + }, + "CapacityReservationGroupUpdate": { + "type": "object", + "description": "Specifies information about the capacity reservation group. Only tags can be updated.", + "properties": { + "properties": { + "$ref": "#/definitions/CapacityReservationGroupProperties", + "description": "capacity reservation group Properties.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResource" + } + ] + }, + "CapacityReservationInstanceView": { + "type": "object", + "description": "The instance view of a capacity reservation that provides as snapshot of the runtime properties of the capacity reservation that is managed by the platform and can change outside of control plane operations.", + "properties": { + "utilizationInfo": { + "$ref": "#/definitions/CapacityReservationUtilization", + "description": "Unutilized capacity of the capacity reservation." + }, + "statuses": { + "type": "array", + "description": "The resource status information.", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "x-ms-identifiers": [] + } + } + }, + "CapacityReservationInstanceViewTypes": { + "type": "string", + "enum": [ + "instanceView" + ], + "x-ms-enum": { + "name": "CapacityReservationInstanceViewTypes", + "modelAsString": true, + "values": [ + { + "name": "instanceView", + "value": "instanceView" + } + ] + } + }, + "CapacityReservationInstanceViewWithName": { + "type": "object", + "description": "The instance view of a capacity reservation that includes the name of the capacity reservation. It is used for the response to the instance view of a capacity reservation group.", + "properties": { + "name": { + "type": "string", + "description": "The name of the capacity reservation.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/CapacityReservationInstanceView" + } + ] + }, + "CapacityReservationListResult": { + "type": "object", + "description": "The list capacity reservation operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of capacity reservations.", + "items": { + "$ref": "#/definitions/CapacityReservation" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The URI to fetch the next page of capacity reservations. Call ListNext() with this URI to fetch the next page of capacity reservations." + } + }, + "required": [ + "value" + ] + }, + "CapacityReservationProfile": { + "type": "object", + "description": "The parameters of a capacity reservation Profile.", + "properties": { + "capacityReservationGroup": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details." + } + } + }, + "CapacityReservationProperties": { + "type": "object", + "description": "Properties of the Capacity reservation.", + "properties": { + "reservationId": { + "type": "string", + "description": "A unique id generated and assigned to the capacity reservation by the platform which does not change throughout the lifetime of the resource.", + "readOnly": true + }, + "platformFaultDomainCount": { + "type": "integer", + "format": "int32", + "description": "Specifies the value of fault domain count that Capacity Reservation supports for requested VM size. **Note:** The fault domain count specified for a resource (like virtual machines scale set) must be less than or equal to this value if it deploys using capacity reservation. Minimum api-version: 2022-08-01.", + "readOnly": true + }, + "virtualMachinesAssociated": { + "type": "array", + "description": "A list of all virtual machine resource ids that are associated with the capacity reservation.", + "items": { + "$ref": "./common.json#/definitions/SubResourceReadOnly" + }, + "readOnly": true + }, + "provisioningTime": { + "type": "string", + "format": "date-time", + "description": "The date time when the capacity reservation was last updated.", + "readOnly": true + }, + "provisioningState": { + "type": "string", + "description": "The provisioning state, which only appears in the response.", + "readOnly": true + }, + "instanceView": { + "$ref": "#/definitions/CapacityReservationInstanceView", + "description": "The Capacity reservation instance view.", + "readOnly": true + }, + "timeCreated": { + "type": "string", + "format": "date-time", + "description": "Specifies the time at which the Capacity Reservation resource was created. Minimum api-version: 2021-11-01.", + "readOnly": true + } + } + }, + "CapacityReservationUpdate": { + "type": "object", + "description": "Specifies information about the capacity reservation. Only tags and sku.capacity can be updated.", + "properties": { + "properties": { + "$ref": "#/definitions/CapacityReservationProperties", + "description": "Properties of the Capacity reservation.", + "x-ms-client-flatten": true + }, + "sku": { + "$ref": "#/definitions/Sku", + "description": "SKU of the resource for which capacity needs be reserved. The SKU name and capacity is required to be set. Currently VM Skus with the capability called 'CapacityReservationSupported' set to true are supported. Refer to List Microsoft.Compute SKUs in a region (https://docs.microsoft.com/rest/api/compute/resourceskus/list) for supported values." + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResource" + } + ] + }, + "CapacityReservationUtilization": { + "type": "object", + "description": "Represents the capacity reservation utilization in terms of resources allocated.", + "properties": { + "currentCapacity": { + "type": "integer", + "format": "int32", + "description": "The value provides the current capacity of the VM size which was reserved successfully and for which the customer is getting billed. Minimum api-version: 2022-08-01.", + "readOnly": true + }, + "virtualMachinesAllocated": { + "type": "array", + "description": "A list of all virtual machines resource ids allocated against the capacity reservation.", + "items": { + "$ref": "./common.json#/definitions/SubResourceReadOnly" + }, + "readOnly": true + } + } + }, + "ComponentNames": { + "type": "string", + "enum": [ + "Microsoft-Windows-Shell-Setup" + ], + "x-ms-enum": { + "modelAsString": false + }, + "x-nullable": false + }, + "ConsistencyModeTypes": { + "type": "string", + "description": "ConsistencyMode of the RestorePoint. Can be specified in the input while creating a restore point. For now, only CrashConsistent is accepted as a valid input. Please refer to https://aka.ms/RestorePoints for more details.", + "enum": [ + "CrashConsistent", + "FileSystemConsistent", + "ApplicationConsistent" + ], + "x-ms-enum": { + "name": "ConsistencyModeTypes", + "modelAsString": true, + "values": [ + { + "name": "CrashConsistent", + "value": "CrashConsistent" + }, + { + "name": "FileSystemConsistent", + "value": "FileSystemConsistent" + }, + { + "name": "ApplicationConsistent", + "value": "ApplicationConsistent" + } + ] + } + }, + "ConvertToVirtualMachineScaleSetInput": { + "type": "object", + "description": "Describes the Virtual Machine Scale Set to convert from Availability Set.", + "properties": { + "virtualMachineScaleSetName": { + "type": "string", + "description": "Specifies information about the Virtual Machine Scale Set that the Availability Set should be converted to." + } + } + }, + "DataDisk": { + "type": "object", + "description": "Describes a data disk.", + "properties": { + "lun": { + "type": "integer", + "format": "int32", + "description": "Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM." + }, + "name": { + "type": "string", + "description": "The disk name." + }, + "vhd": { + "$ref": "#/definitions/VirtualHardDisk", + "description": "The virtual hard disk." + }, + "image": { + "$ref": "#/definitions/VirtualHardDisk", + "description": "The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist." + }, + "caching": { + "$ref": "#/definitions/CachingTypes", + "description": "Specifies the caching requirements. Possible values are: **None,** **ReadOnly,** **ReadWrite.** The defaulting behavior is: **None for Standard storage. ReadOnly for Premium storage.**" + }, + "writeAcceleratorEnabled": { + "type": "boolean", + "description": "Specifies whether writeAccelerator should be enabled or disabled on the disk." + }, + "createOption": { + "$ref": "#/definitions/DiskCreateOptionTypes", + "description": "Specifies how the virtual machine disk should be created. Possible values are **Attach:** This value is used when you are using a specialized disk to create the virtual machine. **FromImage:** This value is used when you are using an image to create the virtual machine data disk. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described. **Empty:** This value is used when creating an empty data disk. **Copy:** This value is used to create a data disk from a snapshot or another disk. **Restore:** This value is used to create a data disk from a disk restore point." + }, + "diskSizeGB": { + "type": "integer", + "format": "int32", + "description": "Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023." + }, + "managedDisk": { + "$ref": "#/definitions/ManagedDiskParameters", + "description": "The managed disk parameters." + }, + "sourceResource": { + "$ref": "#/definitions/ApiEntityReference", + "description": "The source resource identifier. It can be a snapshot, or disk restore point from which to create a disk." + }, + "toBeDetached": { + "type": "boolean", + "description": "Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset" + }, + "diskIOPSReadWrite": { + "type": "integer", + "format": "int64", + "description": "Specifies the Read-Write IOPS for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.", + "readOnly": true + }, + "diskMBpsReadWrite": { + "type": "integer", + "format": "int64", + "description": "Specifies the bandwidth in MB per second for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.", + "readOnly": true + }, + "detachOption": { + "$ref": "#/definitions/DiskDetachOptionTypes", + "description": "Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. **This feature is still in preview**. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'." + }, + "deleteOption": { + "$ref": "#/definitions/DiskDeleteOptionTypes", + "description": "Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: **Delete.** If this value is used, the data disk is deleted when VM is deleted. **Detach.** If this value is used, the data disk is retained after VM is deleted. The default value is set to **Detach**." + } + }, + "required": [ + "lun", + "createOption" + ] + }, + "DataDiskImage": { + "type": "object", + "description": "Contains the data disk images information.", + "properties": { + "lun": { + "type": "integer", + "format": "int32", + "description": "Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.", + "readOnly": true + } + } + }, + "DataDisksToAttach": { + "type": "object", + "description": "Describes the data disk to be attached.", + "properties": { + "diskId": { + "type": "string", + "description": "ID of the managed data disk." + }, + "lun": { + "type": "integer", + "format": "int32", + "description": "The logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM. If not specified, lun would be auto assigned." + }, + "caching": { + "$ref": "#/definitions/CachingTypes", + "description": "Specifies the caching requirements. Possible values are: **None,** **ReadOnly,** **ReadWrite.** The defaulting behavior is: **None for Standard storage. ReadOnly for Premium storage.**" + }, + "deleteOption": { + "$ref": "#/definitions/DiskDeleteOptionTypes", + "description": "Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: **Delete.** If this value is used, the data disk is deleted when VM is deleted. **Detach.** If this value is used, the data disk is retained after VM is deleted. The default value is set to **Detach**." + }, + "diskEncryptionSet": { + "$ref": "#/definitions/DiskEncryptionSetParameters", + "description": "Specifies the customer managed disk encryption set resource id for the managed disk." + }, + "writeAcceleratorEnabled": { + "type": "boolean", + "description": "Specifies whether writeAccelerator should be enabled or disabled on the disk." + } + }, + "required": [ + "diskId" + ] + }, + "DataDisksToDetach": { + "type": "object", + "description": "Describes the data disk to be detached.", + "properties": { + "diskId": { + "type": "string", + "description": "ID of the managed data disk." + }, + "detachOption": { + "$ref": "#/definitions/DiskDetachOptionTypes", + "description": "Supported options available for Detach of a disk from a VM. Refer to DetachOption object reference for more details." + } + }, + "required": [ + "diskId" + ] + }, + "DedicatedHost": { + "type": "object", + "description": "Specifies information about the Dedicated host.", + "properties": { + "properties": { + "$ref": "#/definitions/DedicatedHostProperties", + "description": "Properties of the dedicated host.", + "x-ms-client-flatten": true + }, + "sku": { + "$ref": "#/definitions/Sku", + "description": "SKU of the dedicated host for Hardware Generation and VM family. Only name is required to be set. List Microsoft.Compute SKUs for a list of possible values." + } + }, + "required": [ + "sku" + ], + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "DedicatedHostAllocatableVM": { + "type": "object", + "description": "Represents the dedicated host unutilized capacity in terms of a specific VM size.", + "properties": { + "vmSize": { + "type": "string", + "description": "VM size in terms of which the unutilized capacity is represented." + }, + "count": { + "type": "number", + "format": "double", + "description": "Maximum number of VMs of size vmSize that can fit in the dedicated host's remaining capacity." + } + } + }, + "DedicatedHostAvailableCapacity": { + "type": "object", + "description": "Dedicated host unutilized capacity.", + "properties": { + "allocatableVMs": { + "type": "array", + "description": "The unutilized capacity of the dedicated host represented in terms of each VM size that is allowed to be deployed to the dedicated host.", + "items": { + "$ref": "#/definitions/DedicatedHostAllocatableVM" + }, + "x-ms-identifiers": [] + } + } + }, + "DedicatedHostGroup": { + "type": "object", + "description": "Specifies information about the dedicated host group that the dedicated hosts should be assigned to. Currently, a dedicated host can only be added to a dedicated host group at creation time. An existing dedicated host cannot be added to another dedicated host group.", + "properties": { + "properties": { + "$ref": "#/definitions/DedicatedHostGroupProperties", + "description": "Dedicated Host Group Properties.", + "x-ms-client-flatten": true + }, + "zones": { + "type": "array", + "description": "The availability zones.", + "items": { + "type": "string" + } + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "DedicatedHostGroupInstanceView": { + "type": "object", + "properties": { + "hosts": { + "type": "array", + "description": "List of instance view of the dedicated hosts under the dedicated host group.", + "items": { + "$ref": "#/definitions/DedicatedHostInstanceViewWithName" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "DedicatedHostGroupListResult": { + "type": "object", + "description": "The List Dedicated Host Group with resource group response.", + "properties": { + "value": { + "type": "array", + "description": "The list of dedicated host groups.", + "items": { + "$ref": "#/definitions/DedicatedHostGroup" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The URI to fetch the next page of Dedicated Host Groups. Call ListNext() with this URI to fetch the next page of Dedicated Host Groups." + } + }, + "required": [ + "value" + ] + }, + "DedicatedHostGroupProperties": { + "type": "object", + "description": "Dedicated Host Group Properties.", + "properties": { + "platformFaultDomainCount": { + "type": "integer", + "format": "int32", + "description": "Number of fault domains that the host group can span.", + "minimum": 1 + }, + "hosts": { + "type": "array", + "description": "A list of references to all dedicated hosts in the dedicated host group.", + "items": { + "$ref": "./common.json#/definitions/SubResourceReadOnly" + }, + "readOnly": true + }, + "instanceView": { + "$ref": "#/definitions/DedicatedHostGroupInstanceView", + "description": "The dedicated host group instance view, which has the list of instance view of the dedicated hosts under the dedicated host group.", + "readOnly": true + }, + "supportAutomaticPlacement": { + "type": "boolean", + "description": "Specifies whether virtual machines or virtual machine scale sets can be placed automatically on the dedicated host group. Automatic placement means resources are allocated on dedicated hosts, that are chosen by Azure, under the dedicated host group. The value is defaulted to 'false' when not provided. Minimum api-version: 2020-06-01." + }, + "additionalCapabilities": { + "$ref": "#/definitions/DedicatedHostGroupPropertiesAdditionalCapabilities", + "description": "Enables or disables a capability on the dedicated host group. Minimum api-version: 2022-03-01." + } + }, + "required": [ + "platformFaultDomainCount" + ] + }, + "DedicatedHostGroupPropertiesAdditionalCapabilities": { + "type": "object", + "description": "Enables or disables a capability on the dedicated host group. Minimum api-version: 2022-03-01.", + "properties": { + "ultraSSDEnabled": { + "type": "boolean", + "description": "The flag that enables or disables a capability to have UltraSSD Enabled Virtual Machines on Dedicated Hosts of the Dedicated Host Group. For the Virtual Machines to be UltraSSD Enabled, UltraSSDEnabled flag for the resource needs to be set true as well. The value is defaulted to 'false' when not provided. Please refer to https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd for more details on Ultra SSD feature. **Note:** The ultraSSDEnabled setting can only be enabled for Host Groups that are created as zonal. Minimum api-version: 2022-03-01." + } + } + }, + "DedicatedHostGroupUpdate": { + "type": "object", + "description": "Specifies information about the dedicated host group that the dedicated host should be assigned to. Only tags may be updated.", + "properties": { + "properties": { + "$ref": "#/definitions/DedicatedHostGroupProperties", + "description": "Dedicated Host Group Properties.", + "x-ms-client-flatten": true + }, + "zones": { + "type": "array", + "description": "Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone.", + "items": { + "type": "string" + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResource" + } + ] + }, + "DedicatedHostInstanceView": { + "type": "object", + "description": "The instance view of a dedicated host.", + "properties": { + "assetId": { + "type": "string", + "description": "Specifies the unique id of the dedicated physical machine on which the dedicated host resides.", + "readOnly": true + }, + "availableCapacity": { + "$ref": "#/definitions/DedicatedHostAvailableCapacity", + "description": "Unutilized capacity of the dedicated host." + }, + "statuses": { + "type": "array", + "description": "The resource status information.", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "x-ms-identifiers": [] + } + } + }, + "DedicatedHostInstanceViewWithName": { + "type": "object", + "description": "The instance view of a dedicated host that includes the name of the dedicated host. It is used for the response to the instance view of a dedicated host group.", + "properties": { + "name": { + "type": "string", + "description": "The name of the dedicated host.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/DedicatedHostInstanceView" + } + ] + }, + "DedicatedHostLicenseTypes": { + "type": "string", + "description": "Specifies the software license type that will be applied to the VMs deployed on the dedicated host. Possible values are: **None,** **Windows_Server_Hybrid,** **Windows_Server_Perpetual.** The default value is: **None.**", + "enum": [ + "None", + "Windows_Server_Hybrid", + "Windows_Server_Perpetual" + ], + "x-ms-enum": { + "name": "DedicatedHostLicenseTypes", + "modelAsString": false + } + }, + "DedicatedHostListResult": { + "type": "object", + "description": "The list dedicated host operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of dedicated hosts.", + "items": { + "$ref": "#/definitions/DedicatedHost" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The URI to fetch the next page of dedicated hosts. Call ListNext() with this URI to fetch the next page of dedicated hosts." + } + }, + "required": [ + "value" + ] + }, + "DedicatedHostProperties": { + "type": "object", + "description": "Properties of the dedicated host.", + "properties": { + "platformFaultDomain": { + "type": "integer", + "format": "int32", + "description": "Fault domain of the dedicated host within a dedicated host group." + }, + "autoReplaceOnFailure": { + "type": "boolean", + "description": "Specifies whether the dedicated host should be replaced automatically in case of a failure. The value is defaulted to 'true' when not provided." + }, + "hostId": { + "type": "string", + "description": "A unique id generated and assigned to the dedicated host by the platform. Does not change throughout the lifetime of the host.", + "readOnly": true + }, + "virtualMachines": { + "type": "array", + "description": "A list of references to all virtual machines in the Dedicated Host.", + "items": { + "$ref": "./common.json#/definitions/SubResourceReadOnly" + }, + "readOnly": true + }, + "licenseType": { + "$ref": "#/definitions/DedicatedHostLicenseTypes", + "description": "Specifies the software license type that will be applied to the VMs deployed on the dedicated host. Possible values are: **None,** **Windows_Server_Hybrid,** **Windows_Server_Perpetual.** The default value is: **None.**" + }, + "provisioningTime": { + "type": "string", + "format": "date-time", + "description": "The date when the host was first provisioned.", + "readOnly": true + }, + "provisioningState": { + "type": "string", + "description": "The provisioning state, which only appears in the response.", + "readOnly": true + }, + "instanceView": { + "$ref": "#/definitions/DedicatedHostInstanceView", + "description": "The dedicated host instance view.", + "readOnly": true + }, + "timeCreated": { + "type": "string", + "format": "date-time", + "description": "Specifies the time at which the Dedicated Host resource was created. Minimum api-version: 2021-11-01.", + "readOnly": true + } + } + }, + "DedicatedHostSizeListResult": { + "type": "object", + "description": "The List Dedicated Host sizes operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of dedicated host sizes.", + "items": { + "type": "string" + } + }, + "nextLink": { + "type": "string", + "description": "The link to the next page of items." + } + } + }, + "DedicatedHostUpdate": { + "type": "object", + "description": "Specifies information about the dedicated host. Only tags, autoReplaceOnFailure and licenseType may be updated.", + "properties": { + "properties": { + "$ref": "#/definitions/DedicatedHostProperties", + "description": "Properties of the dedicated host.", + "x-ms-client-flatten": true + }, + "sku": { + "$ref": "#/definitions/Sku", + "description": "[List all available dedicated host sizes for resizing] (https://docs.microsoft.com/rest/api/compute/dedicated-hosts/listavailablesizes). Resizing can be only used to scale up DedicatedHost. Only name is required to be set." + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResource" + } + ] + }, + "DefaultVirtualMachineScaleSetInfo": { + "type": "object", + "description": "Indicates the target Virtual Machine ScaleSet properties upon triggering a seamless migration without downtime of the VMs via the ConvertToVirtualMachineScaleSet API.", + "properties": { + "constrainedMaximumCapacity": { + "type": "boolean", + "description": "Indicates if the the maximum capacity of the default migrated Virtual Machine Scale Set after its migration will be constrained to a limited number of VMs.", + "readOnly": true + }, + "defaultVirtualMachineScaleSet": { + "$ref": "./common.json#/definitions/SubResource", + "description": "The default Virtual Machine ScaleSet Uri that the Availability Set will be moved to upon triggering a seamless migration via the ConvertToVirtualMachineScaleSet API.", + "readOnly": true + } + } + }, + "DeleteOptions": { + "type": "string", + "description": "Specify what happens to the network interface when the VM is deleted", + "enum": [ + "Delete", + "Detach" + ], + "x-ms-enum": { + "name": "DeleteOptions", + "modelAsString": true, + "values": [ + { + "name": "Delete", + "value": "Delete" + }, + { + "name": "Detach", + "value": "Detach" + } + ] + } + }, + "DiagnosticsProfile": { + "type": "object", + "description": "Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.", + "properties": { + "bootDiagnostics": { + "$ref": "#/definitions/BootDiagnostics", + "description": "Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. **NOTE**: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor." + } + } + }, + "DiffDiskOptions": { + "type": "string", + "description": "Specifies the ephemeral disk option for operating system disk.", + "enum": [ + "Local" + ], + "x-ms-enum": { + "name": "DiffDiskOptions", + "modelAsString": true, + "values": [ + { + "name": "Local", + "value": "Local" + } + ] + } + }, + "DiffDiskPlacement": { + "type": "string", + "description": "Specifies the ephemeral disk placement for operating system disk. This property can be used by user in the request to choose the location i.e, cache disk, resource disk or nvme disk space for Ephemeral OS disk provisioning. For more information on Ephemeral OS disk size requirements, please refer Ephemeral OS disk size requirements for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/ephemeral-os-disks#size-requirements and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/ephemeral-os-disks#size-requirements. Minimum api-version for NvmeDisk: 2024-03-01.", + "enum": [ + "CacheDisk", + "ResourceDisk", + "NvmeDisk" + ], + "x-ms-enum": { + "name": "DiffDiskPlacement", + "modelAsString": true, + "values": [ + { + "name": "CacheDisk", + "value": "CacheDisk" + }, + { + "name": "ResourceDisk", + "value": "ResourceDisk" + }, + { + "name": "NvmeDisk", + "value": "NvmeDisk" + } + ] + } + }, + "DiffDiskSettings": { + "type": "object", + "description": "Describes the parameters of ephemeral disk settings that can be specified for operating system disk. **Note:** The ephemeral disk settings can only be specified for managed disk.", + "properties": { + "option": { + "$ref": "#/definitions/DiffDiskOptions", + "description": "Specifies the ephemeral disk settings for operating system disk." + }, + "placement": { + "$ref": "#/definitions/DiffDiskPlacement", + "description": "Specifies the ephemeral disk placement for operating system disk. Possible values are: **CacheDisk,** **ResourceDisk,** **NvmeDisk.** The defaulting behavior is: **CacheDisk** if one is configured for the VM size otherwise **ResourceDisk** or **NvmeDisk** is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk. Minimum api-version for NvmeDisk: 2024-03-01." + } + } + }, + "DisallowedConfiguration": { + "type": "object", + "description": "Specifies the disallowed configuration for a virtual machine image.", + "properties": { + "vmDiskType": { + "$ref": "#/definitions/VmDiskTypes", + "description": "VM disk types which are disallowed." + } + } + }, + "DiskControllerTypes": { + "type": "string", + "description": "Specifies the disk controller type configured for the VM and VirtualMachineScaleSet. This property is only supported for virtual machines whose operating system disk and VM sku supports Generation 2 (https://docs.microsoft.com/en-us/azure/virtual-machines/generation-2), please check the HyperVGenerations capability returned as part of VM sku capabilities in the response of Microsoft.Compute SKUs api for the region contains V2 (https://docs.microsoft.com/rest/api/compute/resourceskus/list). For more information about Disk Controller Types supported please refer to https://aka.ms/azure-diskcontrollertypes.", + "enum": [ + "SCSI", + "NVMe" + ], + "x-ms-enum": { + "name": "DiskControllerTypes", + "modelAsString": true, + "values": [ + { + "name": "SCSI", + "value": "SCSI" + }, + { + "name": "NVMe", + "value": "NVMe" + } + ] + } + }, + "DiskCreateOptionTypes": { + "type": "string", + "description": "Specifies how the virtual machine disk should be created. Possible values are **Attach:** This value is used when you are using a specialized disk to create the virtual machine. **FromImage:** This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described. **Empty:** This value is used when creating an empty data disk. **Copy:** This value is used to create a data disk from a snapshot or another disk. **Restore:** This value is used to create a data disk from a disk restore point.", + "enum": [ + "FromImage", + "Empty", + "Attach", + "Copy", + "Restore" + ], + "x-ms-enum": { + "name": "DiskCreateOptionTypes", + "modelAsString": true, + "values": [ + { + "name": "FromImage", + "value": "FromImage" + }, + { + "name": "Empty", + "value": "Empty" + }, + { + "name": "Attach", + "value": "Attach" + }, + { + "name": "Copy", + "value": "Copy" + }, + { + "name": "Restore", + "value": "Restore" + } + ] + } + }, + "DiskDeleteOptionTypes": { + "type": "string", + "description": "Specifies the behavior of the managed disk when the VM gets deleted, for example whether the managed disk is deleted or detached. Supported values are: **Delete.** If this value is used, the managed disk is deleted when VM gets deleted. **Detach.** If this value is used, the managed disk is retained after VM gets deleted. Minimum api-version: 2021-03-01.", + "enum": [ + "Delete", + "Detach" + ], + "x-ms-enum": { + "name": "DiskDeleteOptionTypes", + "modelAsString": true, + "values": [ + { + "name": "Delete", + "value": "Delete" + }, + { + "name": "Detach", + "value": "Detach" + } + ] + } + }, + "DiskDetachOptionTypes": { + "type": "string", + "description": "Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values are: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. **This feature is still in preview**. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.", + "enum": [ + "ForceDetach" + ], + "x-ms-enum": { + "name": "DiskDetachOptionTypes", + "modelAsString": true, + "values": [ + { + "name": "ForceDetach", + "value": "ForceDetach" + } + ] + } + }, + "DiskEncryptionSetParameters": { + "type": "object", + "description": "Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. **Note:** The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.", + "allOf": [ + { + "$ref": "./common.json#/definitions/SubResource" + } + ] + }, + "DiskEncryptionSettings": { + "type": "object", + "description": "Describes a Encryption Settings for a Disk", + "properties": { + "diskEncryptionKey": { + "$ref": "#/definitions/KeyVaultSecretReference", + "description": "Specifies the location of the disk encryption key, which is a Key Vault Secret." + }, + "keyEncryptionKey": { + "$ref": "#/definitions/KeyVaultKeyReference", + "description": "Specifies the location of the key encryption key in Key Vault." + }, + "enabled": { + "type": "boolean", + "description": "Specifies whether disk encryption should be enabled on the virtual machine." + } + } + }, + "DiskInstanceView": { + "type": "object", + "description": "The instance view of the disk.", + "properties": { + "name": { + "type": "string", + "description": "The disk name." + }, + "encryptionSettings": { + "type": "array", + "description": "Specifies the encryption settings for the OS Disk.

Minimum api-version: 2015-06-15", + "items": { + "$ref": "#/definitions/DiskEncryptionSettings" + }, + "x-ms-identifiers": [ + "diskEncryptionKey/sourceVault/id" + ] + }, + "statuses": { + "type": "array", + "description": "The resource status information.", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "x-ms-identifiers": [] + } + } + }, + "DiskRestorePointAttributes": { + "type": "object", + "description": "Disk Restore Point details.", + "properties": { + "encryption": { + "$ref": "#/definitions/RestorePointEncryption", + "description": "Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point." + }, + "sourceDiskRestorePoint": { + "$ref": "#/definitions/ApiEntityReference", + "description": "Resource Id of the source disk restore point." + } + }, + "allOf": [ + { + "$ref": "./common.json#/definitions/SubResourceReadOnly" + } + ] + }, + "DiskRestorePointInstanceView": { + "type": "object", + "description": "The instance view of a disk restore point.", + "properties": { + "id": { + "type": "string", + "description": "Disk restore point Id." + }, + "replicationStatus": { + "$ref": "#/definitions/DiskRestorePointReplicationStatus", + "description": "The disk restore point replication status information." + } + } + }, + "DiskRestorePointReplicationStatus": { + "type": "object", + "description": "The instance view of a disk restore point.", + "properties": { + "status": { + "$ref": "#/definitions/InstanceViewStatus", + "description": "The resource status information." + }, + "completionPercent": { + "type": "integer", + "format": "int32", + "description": "Replication completion percentage." + } + } + }, + "DomainNameLabelScopeTypes": { + "type": "string", + "description": "The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created", + "enum": [ + "TenantReuse", + "SubscriptionReuse", + "ResourceGroupReuse", + "NoReuse" + ], + "x-ms-enum": { + "name": "DomainNameLabelScopeTypes", + "modelAsString": true, + "values": [ + { + "name": "TenantReuse", + "value": "TenantReuse" + }, + { + "name": "SubscriptionReuse", + "value": "SubscriptionReuse" + }, + { + "name": "ResourceGroupReuse", + "value": "ResourceGroupReuse" + }, + { + "name": "NoReuse", + "value": "NoReuse" + } + ] + } + }, + "EncryptionIdentity": { + "type": "object", + "description": "Specifies the Managed Identity used by ADE to get access token for keyvault operations.", + "properties": { + "userAssignedIdentityResourceId": { + "type": "string", + "description": "Specifies ARM Resource ID of one of the user identities associated with the VM." + } + } + }, + "EventGridAndResourceGraph": { + "type": "object", + "description": "Specifies eventGridAndResourceGraph related Scheduled Event related configurations.", + "properties": { + "enable": { + "type": "boolean", + "description": "Specifies if event grid and resource graph is enabled for Scheduled event related configurations." + } + } + }, + "ExecutionState": { + "type": "string", + "description": "Script execution status.", + "enum": [ + "Unknown", + "Pending", + "Running", + "Failed", + "Succeeded", + "TimedOut", + "Canceled" + ], + "x-ms-enum": { + "name": "ExecutionState", + "modelAsString": true, + "values": [ + { + "name": "Unknown", + "value": "Unknown" + }, + { + "name": "Pending", + "value": "Pending" + }, + { + "name": "Running", + "value": "Running" + }, + { + "name": "Failed", + "value": "Failed" + }, + { + "name": "Succeeded", + "value": "Succeeded" + }, + { + "name": "TimedOut", + "value": "TimedOut" + }, + { + "name": "Canceled", + "value": "Canceled" + } + ] + } + }, + "ExpandTypeForListVMs": { + "type": "string", + "enum": [ + "instanceView" + ], + "x-ms-enum": { + "name": "ExpandTypeForListVMs", + "modelAsString": true, + "values": [ + { + "name": "instanceView", + "value": "instanceView" + } + ] + } + }, + "ExpandTypesForGetCapacityReservationGroups": { + "type": "string", + "enum": [ + "virtualMachineScaleSetVMs/$ref", + "virtualMachines/$ref" + ], + "x-ms-enum": { + "name": "ExpandTypesForGetCapacityReservationGroups", + "modelAsString": true, + "values": [ + { + "name": "virtualMachineScaleSetVMs/$ref", + "value": "virtualMachineScaleSetVMs/$ref" + }, + { + "name": "virtualMachines/$ref", + "value": "virtualMachines/$ref" + } + ] + } + }, + "ExpandTypesForGetVMScaleSets": { + "type": "string", + "enum": [ + "userData" + ], + "x-ms-enum": { + "name": "ExpandTypesForGetVMScaleSets", + "modelAsString": true, + "values": [ + { + "name": "userData", + "value": "userData" + } + ] + } + }, + "ExpandTypesForListVMs": { + "type": "string", + "enum": [ + "instanceView" + ], + "x-ms-enum": { + "name": "ExpandTypesForListVMs", + "modelAsString": true, + "values": [ + { + "name": "instanceView", + "value": "instanceView" + } + ] + } + }, + "HardwareProfile": { + "type": "object", + "description": "Specifies the hardware settings for the virtual machine.", + "properties": { + "vmSize": { + "$ref": "#/definitions/VirtualMachineSizeTypes", + "description": "Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: [List all available virtual machine sizes in an availability set](https://docs.microsoft.com/rest/api/compute/availabilitysets/listavailablesizes), [List all available virtual machine sizes in a region]( https://docs.microsoft.com/rest/api/compute/resourceskus/list), [List all available virtual machine sizes for resizing](https://docs.microsoft.com/rest/api/compute/virtualmachines/listavailablesizes). For more information about virtual machine sizes, see [Sizes for virtual machines](https://docs.microsoft.com/azure/virtual-machines/sizes). The available VM sizes depend on region and availability set." + }, + "vmSizeProperties": { + "$ref": "#/definitions/VMSizeProperties", + "description": "Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in [VM Customization](https://aka.ms/vmcustomization) for more details." + } + } + }, + "HostEndpointSettings": { + "type": "object", + "description": "Specifies particular host endpoint settings.", + "properties": { + "mode": { + "$ref": "#/definitions/Modes", + "description": "Specifies the execution mode. In Audit mode, the system acts as if it is enforcing the access control policy, including emitting access denial entries in the logs but it does not actually deny any requests to host endpoints. In Enforce mode, the system will enforce the access control and it is the recommended mode of operation." + }, + "inVMAccessControlProfileReferenceId": { + "type": "string", + "description": "Specifies the InVMAccessControlProfileVersion resource id in the format of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/inVMAccessControlProfiles/{profile}/versions/{version}" + } + } + }, + "HyperVGeneration": { + "type": "string", + "description": "The hypervisor generation of the Virtual Machine [V1, V2]", + "enum": [ + "V1", + "V2" + ], + "x-ms-enum": { + "name": "HyperVGeneration", + "modelAsString": true, + "values": [ + { + "name": "V1", + "value": "V1" + }, + { + "name": "V2", + "value": "V2" + } + ] + } + }, + "HyperVGenerationType": { + "type": "string", + "description": "Specifies the HyperVGeneration Type associated with a resource", + "enum": [ + "V1", + "V2" + ], + "x-ms-enum": { + "name": "HyperVGenerationType", + "modelAsString": true, + "values": [ + { + "name": "V1", + "value": "V1" + }, + { + "name": "V2", + "value": "V2" + } + ] + } + }, + "HyperVGenerationTypes": { + "type": "string", + "description": "Specifies the HyperVGeneration Type", + "enum": [ + "V1", + "V2" + ], + "x-ms-enum": { + "name": "HyperVGenerationTypes", + "modelAsString": true, + "values": [ + { + "name": "V1", + "value": "V1" + }, + { + "name": "V2", + "value": "V2" + } + ] + } + }, + "IPVersion": { + "type": "string", + "description": "Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.", + "enum": [ + "IPv4", + "IPv6" + ], + "x-ms-enum": { + "name": "IPVersion", + "modelAsString": true, + "values": [ + { + "name": "IPv4", + "value": "IPv4" + }, + { + "name": "IPv6", + "value": "IPv6" + } + ] + } + }, + "IPVersions": { + "type": "string", + "description": "Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.", + "enum": [ + "IPv4", + "IPv6" + ], + "x-ms-enum": { + "name": "IPVersions", + "modelAsString": true, + "values": [ + { + "name": "IPv4", + "value": "IPv4" + }, + { + "name": "IPv6", + "value": "IPv6" + } + ] + } + }, + "Image": { + "type": "object", + "description": "The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.", + "properties": { + "properties": { + "$ref": "#/definitions/ImageProperties", + "description": "Describes the properties of an Image.", + "x-ms-client-flatten": true + }, + "extendedLocation": { + "$ref": "./common.json#/definitions/ExtendedLocation", + "description": "The extended location of the Image." + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "ImageDataDisk": { + "type": "object", + "description": "Describes a data disk.", + "properties": { + "lun": { + "type": "integer", + "format": "int32", + "description": "Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM." + } + }, + "required": [ + "lun" + ], + "allOf": [ + { + "$ref": "#/definitions/ImageDisk" + } + ] + }, + "ImageDeprecationStatus": { + "type": "object", + "description": "Describes image deprecation status properties on the image.", + "properties": { + "imageState": { + "$ref": "#/definitions/ImageState", + "description": "Describes the state of the image." + }, + "scheduledDeprecationTime": { + "type": "string", + "format": "date-time", + "description": "The time, in future, at which this image will be marked as deprecated. This scheduled time is chosen by the Publisher." + }, + "alternativeOption": { + "$ref": "#/definitions/AlternativeOption", + "description": "Describes the alternative option specified by the Publisher for this image when this image is deprecated." + } + } + }, + "ImageDisk": { + "type": "object", + "description": "Describes a image disk.", + "properties": { + "snapshot": { + "$ref": "./common.json#/definitions/SubResource", + "description": "The snapshot." + }, + "managedDisk": { + "$ref": "./common.json#/definitions/SubResource", + "description": "The managedDisk." + }, + "blobUri": { + "type": "string", + "description": "The Virtual Hard Disk." + }, + "caching": { + "$ref": "#/definitions/CachingTypes", + "description": "Specifies the caching requirements. Possible values are: **None,** **ReadOnly,** **ReadWrite.** The default values are: **None for Standard storage. ReadOnly for Premium storage.**" + }, + "diskSizeGB": { + "type": "integer", + "format": "int32", + "description": "Specifies the size of empty data disks in gigabytes. This element can be used to overwrite the name of the disk in a virtual machine image. This value cannot be larger than 1023 GB." + }, + "storageAccountType": { + "$ref": "#/definitions/StorageAccountTypes", + "description": "Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk." + }, + "diskEncryptionSet": { + "$ref": "#/definitions/DiskEncryptionSetParameters", + "description": "Specifies the customer managed disk encryption set resource id for the managed image disk." + } + } + }, + "ImageListResult": { + "type": "object", + "description": "The List Image operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of Images", + "items": { + "$ref": "#/definitions/Image" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of Images. Call ListNext() with this to fetch the next page of Images." + } + }, + "required": [ + "value" + ] + }, + "ImageOSDisk": { + "type": "object", + "description": "Describes an Operating System disk.", + "properties": { + "osType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "This property allows you to specify the type of the OS that is included in the disk if creating a VM from a custom image. Possible values are: **Windows,** **Linux.**" + }, + "osState": { + "$ref": "#/definitions/OperatingSystemStateTypes", + "description": "The OS State. For managed images, use Generalized." + } + }, + "required": [ + "osType", + "osState" + ], + "allOf": [ + { + "$ref": "#/definitions/ImageDisk" + } + ] + }, + "ImageProperties": { + "type": "object", + "description": "Describes the properties of an Image.", + "properties": { + "sourceVirtualMachine": { + "$ref": "./common.json#/definitions/SubResource", + "description": "The source virtual machine from which Image is created." + }, + "storageProfile": { + "$ref": "#/definitions/ImageStorageProfile", + "description": "Specifies the storage settings for the virtual machine disks." + }, + "provisioningState": { + "type": "string", + "description": "The provisioning state.", + "readOnly": true + }, + "hyperVGeneration": { + "$ref": "#/definitions/HyperVGenerationTypes", + "description": "Specifies the HyperVGenerationType of the VirtualMachine created from the image. From API Version 2019-03-01 if the image source is a blob, then we need the user to specify the value, if the source is managed resource like disk or snapshot, we may require the user to specify the property if we cannot deduce it from the source managed resource." + } + } + }, + "ImageReference": { + "type": "object", + "description": "Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations. NOTE: Image reference publisher and offer can only be set when you create the scale set.", + "properties": { + "publisher": { + "type": "string", + "description": "The image publisher." + }, + "offer": { + "type": "string", + "description": "Specifies the offer of the platform image or marketplace image used to create the virtual machine." + }, + "sku": { + "type": "string", + "description": "The image SKU." + }, + "version": { + "type": "string", + "description": "Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input." + }, + "exactVersion": { + "type": "string", + "description": "Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.", + "readOnly": true + }, + "sharedGalleryImageId": { + "type": "string", + "description": "Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call." + }, + "communityGalleryImageId": { + "type": "string", + "description": "Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call." + } + }, + "allOf": [ + { + "$ref": "./common.json#/definitions/SubResource" + } + ] + }, + "ImageState": { + "type": "string", + "description": "Describes the state of the image.", + "enum": [ + "Active", + "ScheduledForDeprecation", + "Deprecated" + ], + "x-ms-enum": { + "name": "ImageState", + "modelAsString": true, + "values": [ + { + "name": "Active", + "value": "Active" + }, + { + "name": "ScheduledForDeprecation", + "value": "ScheduledForDeprecation" + }, + { + "name": "Deprecated", + "value": "Deprecated" + } + ] + } + }, + "ImageStorageProfile": { + "type": "object", + "description": "Describes a storage profile.", + "properties": { + "osDisk": { + "$ref": "#/definitions/ImageOSDisk", + "description": "Specifies information about the operating system disk used by the virtual machine.

For more information about disks, see [About disks and VHDs for Azure virtual machines](https://docs.microsoft.com/azure/virtual-machines/managed-disks-overview)." + }, + "dataDisks": { + "type": "array", + "description": "Specifies the parameters that are used to add a data disk to a virtual machine.

For more information about disks, see [About disks and VHDs for Azure virtual machines](https://docs.microsoft.com/azure/virtual-machines/managed-disks-overview).", + "items": { + "$ref": "#/definitions/ImageDataDisk" + }, + "x-ms-identifiers": [ + "lun" + ] + }, + "zoneResilient": { + "type": "boolean", + "description": "Specifies whether an image is zone resilient or not. Default is false. Zone resilient images can be created only in regions that provide Zone Redundant Storage (ZRS)." + } + } + }, + "ImageUpdate": { + "type": "object", + "description": "The source user image virtual hard disk. Only tags may be updated.", + "properties": { + "properties": { + "$ref": "#/definitions/ImageProperties", + "description": "Describes the properties of an Image.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResource" + } + ] + }, + "InstanceViewStatus": { + "type": "object", + "description": "Instance view status.", + "properties": { + "code": { + "type": "string", + "description": "The status code." + }, + "level": { + "$ref": "#/definitions/StatusLevelTypes", + "description": "The level code." + }, + "displayStatus": { + "type": "string", + "description": "The short localizable label for the status." + }, + "message": { + "type": "string", + "description": "The detailed status message, including for alerts and error messages." + }, + "time": { + "type": "string", + "format": "date-time", + "description": "The time of the status." + } + } + }, + "InstanceViewTypes": { + "type": "string", + "enum": [ + "instanceView", + "userData", + "resiliencyView" + ], + "x-ms-enum": { + "name": "InstanceViewTypes", + "modelAsString": false + } + }, + "IntervalInMins": { + "type": "string", + "description": "Interval value in minutes used to create LogAnalytics call rate logs.", + "enum": [ + "ThreeMins", + "FiveMins", + "ThirtyMins", + "SixtyMins" + ], + "x-ms-enum": { + "name": "IntervalInMins", + "modelAsString": false + } + }, + "KeyVaultKeyReference": { + "type": "object", + "description": "Describes a reference to Key Vault Key", + "properties": { + "keyUrl": { + "type": "string", + "description": "The URL referencing a key encryption key in Key Vault." + }, + "sourceVault": { + "$ref": "./common.json#/definitions/SubResource", + "description": "The relative URL of the Key Vault containing the key." + } + }, + "required": [ + "keyUrl", + "sourceVault" + ] + }, + "KeyVaultSecretReference": { + "type": "object", + "description": "Describes a reference to Key Vault Secret", + "properties": { + "secretUrl": { + "type": "string", + "description": "The URL referencing a secret in a Key Vault." + }, + "sourceVault": { + "$ref": "./common.json#/definitions/SubResource", + "description": "The relative URL of the Key Vault containing the secret." + } + }, + "required": [ + "secretUrl", + "sourceVault" + ] + }, + "LastPatchInstallationSummary": { + "type": "object", + "description": "Describes the properties of the last installed patch summary.", + "properties": { + "status": { + "$ref": "#/definitions/PatchOperationStatus", + "description": "The overall success or failure status of the operation. It remains \"InProgress\" until the operation completes. At that point it will become \"Unknown\", \"Failed\", \"Succeeded\", or \"CompletedWithWarnings.\"", + "readOnly": true + }, + "installationActivityId": { + "type": "string", + "description": "The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.", + "readOnly": true + }, + "maintenanceWindowExceeded": { + "type": "boolean", + "description": "Describes whether the operation ran out of time before it completed all its intended actions", + "readOnly": true + }, + "notSelectedPatchCount": { + "type": "integer", + "format": "int32", + "description": "The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.", + "readOnly": true + }, + "excludedPatchCount": { + "type": "integer", + "format": "int32", + "description": "The number of all available patches but excluded explicitly by a customer-specified exclusion list match.", + "readOnly": true + }, + "pendingPatchCount": { + "type": "integer", + "format": "int32", + "description": "The number of all available patches expected to be installed over the course of the patch installation operation.", + "readOnly": true + }, + "installedPatchCount": { + "type": "integer", + "format": "int32", + "description": "The count of patches that successfully installed.", + "readOnly": true + }, + "failedPatchCount": { + "type": "integer", + "format": "int32", + "description": "The count of patches that failed installation.", + "readOnly": true + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "The UTC timestamp when the operation began.", + "readOnly": true + }, + "lastModifiedTime": { + "type": "string", + "format": "date-time", + "description": "The UTC timestamp when the operation began.", + "readOnly": true + }, + "error": { + "$ref": "./common.json#/definitions/ApiError", + "description": "The errors that were encountered during execution of the operation. The details array contains the list of them.", + "readOnly": true + } + } + }, + "LinuxConfiguration": { + "type": "object", + "description": "Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see [Linux on Azure-Endorsed Distributions](https://docs.microsoft.com/azure/virtual-machines/linux/endorsed-distros).", + "properties": { + "disablePasswordAuthentication": { + "type": "boolean", + "description": "Specifies whether password authentication should be disabled." + }, + "ssh": { + "$ref": "#/definitions/SshConfiguration", + "description": "Specifies the ssh key configuration for a Linux OS." + }, + "provisionVMAgent": { + "type": "boolean", + "description": "Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later." + }, + "patchSettings": { + "$ref": "#/definitions/LinuxPatchSettings", + "description": "[Preview Feature] Specifies settings related to VM Guest Patching on Linux." + }, + "enableVMAgentPlatformUpdates": { + "type": "boolean", + "description": "Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false." + } + } + }, + "LinuxParameters": { + "type": "object", + "description": "Input for InstallPatches on a Linux VM, as directly received by the API", + "properties": { + "classificationsToInclude": { + "type": "array", + "description": "The update classifications to select when installing patches for Linux.", + "items": { + "$ref": "#/definitions/VMGuestPatchClassificationLinux" + } + }, + "packageNameMasksToInclude": { + "type": "array", + "description": "packages to include in the patch operation. Format: packageName_packageVersion", + "items": { + "type": "string" + } + }, + "packageNameMasksToExclude": { + "type": "array", + "description": "packages to exclude in the patch operation. Format: packageName_packageVersion", + "items": { + "type": "string" + } + }, + "maintenanceRunId": { + "type": "string", + "description": "This is used as a maintenance run identifier for Auto VM Guest Patching in Linux." + } + } + }, + "LinuxPatchAssessmentMode": { + "type": "string", + "description": "Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine.

Possible values are:

**ImageDefault** - You control the timing of patch assessments on a virtual machine.

**AutomaticByPlatform** - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.", + "enum": [ + "ImageDefault", + "AutomaticByPlatform" + ], + "x-ms-enum": { + "name": "LinuxPatchAssessmentMode", + "modelAsString": true, + "values": [ + { + "name": "ImageDefault", + "value": "ImageDefault" + }, + { + "name": "AutomaticByPlatform", + "value": "AutomaticByPlatform" + } + ] + } + }, + "LinuxPatchSettings": { + "type": "object", + "description": "Specifies settings related to VM Guest Patching on Linux.", + "properties": { + "patchMode": { + "$ref": "#/definitions/LinuxVMGuestPatchMode", + "description": "Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible.

Possible values are:

**ImageDefault** - The virtual machine's default patching configuration is used.

**AutomaticByPlatform** - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true" + }, + "assessmentMode": { + "$ref": "#/definitions/LinuxPatchAssessmentMode", + "description": "Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine.

Possible values are:

**ImageDefault** - You control the timing of patch assessments on a virtual machine.

**AutomaticByPlatform** - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true." + }, + "automaticByPlatformSettings": { + "$ref": "#/definitions/LinuxVMGuestPatchAutomaticByPlatformSettings", + "description": "Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux." + } + } + }, + "LinuxVMGuestPatchAutomaticByPlatformRebootSetting": { + "type": "string", + "description": "Specifies the reboot setting for all AutomaticByPlatform patch installation operations.", + "enum": [ + "Unknown", + "IfRequired", + "Never", + "Always" + ], + "x-ms-enum": { + "name": "LinuxVMGuestPatchAutomaticByPlatformRebootSetting", + "modelAsString": true, + "values": [ + { + "name": "Unknown", + "value": "Unknown" + }, + { + "name": "IfRequired", + "value": "IfRequired" + }, + { + "name": "Never", + "value": "Never" + }, + { + "name": "Always", + "value": "Always" + } + ] + } + }, + "LinuxVMGuestPatchAutomaticByPlatformSettings": { + "type": "object", + "description": "Specifies additional settings to be applied when patch mode AutomaticByPlatform is selected in Linux patch settings.", + "properties": { + "rebootSetting": { + "$ref": "#/definitions/LinuxVMGuestPatchAutomaticByPlatformRebootSetting", + "description": "Specifies the reboot setting for all AutomaticByPlatform patch installation operations." + }, + "bypassPlatformSafetyChecksOnUserSchedule": { + "type": "boolean", + "description": "Enables customer to schedule patching without accidental upgrades" + } + } + }, + "LinuxVMGuestPatchMode": { + "type": "string", + "description": "Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible.

Possible values are:

**ImageDefault** - The virtual machine's default patching configuration is used.

**AutomaticByPlatform** - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true", + "enum": [ + "ImageDefault", + "AutomaticByPlatform" + ], + "x-ms-enum": { + "name": "LinuxVMGuestPatchMode", + "modelAsString": true, + "values": [ + { + "name": "ImageDefault", + "value": "ImageDefault" + }, + { + "name": "AutomaticByPlatform", + "value": "AutomaticByPlatform" + } + ] + } + }, + "ListUsagesResult": { + "type": "object", + "description": "The List Usages operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of compute resource usages.", + "items": { + "$ref": "#/definitions/Usage" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The URI to fetch the next page of compute resource usage information. Call ListNext() with this to fetch the next page of compute resource usage information." + } + }, + "required": [ + "value" + ] + }, + "LogAnalyticsInputBase": { + "type": "object", + "description": "Api input base class for LogAnalytics Api.", + "properties": { + "blobContainerSasUri": { + "type": "string", + "description": "SAS Uri of the logging blob container to which LogAnalytics Api writes output logs to." + }, + "fromTime": { + "type": "string", + "format": "date-time", + "description": "From time of the query" + }, + "toTime": { + "type": "string", + "format": "date-time", + "description": "To time of the query" + }, + "groupByThrottlePolicy": { + "type": "boolean", + "description": "Group query result by Throttle Policy applied." + }, + "groupByOperationName": { + "type": "boolean", + "description": "Group query result by Operation Name." + }, + "groupByResourceName": { + "type": "boolean", + "description": "Group query result by Resource Name." + }, + "groupByClientApplicationId": { + "type": "boolean", + "description": "Group query result by Client Application ID." + }, + "groupByUserAgent": { + "type": "boolean", + "description": "Group query result by User Agent." + } + }, + "required": [ + "blobContainerSasUri", + "fromTime", + "toTime" + ] + }, + "LogAnalyticsOperationResult": { + "type": "object", + "description": "LogAnalytics operation status response", + "properties": { + "properties": { + "$ref": "#/definitions/LogAnalyticsOutput", + "description": "LogAnalyticsOutput", + "readOnly": true + } + } + }, + "LogAnalyticsOutput": { + "type": "object", + "description": "LogAnalytics output properties", + "properties": { + "output": { + "type": "string", + "description": "Output file Uri path to blob container.", + "readOnly": true + } + } + }, + "MaintenanceOperationResultCodeTypes": { + "type": "string", + "description": "The Last Maintenance Operation Result Code.", + "enum": [ + "None", + "RetryLater", + "MaintenanceAborted", + "MaintenanceCompleted" + ], + "x-ms-enum": { + "name": "MaintenanceOperationResultCodeTypes", + "modelAsString": false + } + }, + "MaintenanceRedeployStatus": { + "type": "object", + "description": "Maintenance Operation Status.", + "properties": { + "isCustomerInitiatedMaintenanceAllowed": { + "type": "boolean", + "description": "True, if customer is allowed to perform Maintenance." + }, + "preMaintenanceWindowStartTime": { + "type": "string", + "format": "date-time", + "description": "Start Time for the Pre Maintenance Window." + }, + "preMaintenanceWindowEndTime": { + "type": "string", + "format": "date-time", + "description": "End Time for the Pre Maintenance Window." + }, + "maintenanceWindowStartTime": { + "type": "string", + "format": "date-time", + "description": "Start Time for the Maintenance Window." + }, + "maintenanceWindowEndTime": { + "type": "string", + "format": "date-time", + "description": "End Time for the Maintenance Window." + }, + "lastOperationResultCode": { + "$ref": "#/definitions/MaintenanceOperationResultCodeTypes", + "description": "The Last Maintenance Operation Result Code." + }, + "lastOperationMessage": { + "type": "string", + "description": "Message returned for the last Maintenance Operation." + } + } + }, + "ManagedDiskParameters": { + "type": "object", + "description": "The parameters of a managed disk.", + "properties": { + "storageAccountType": { + "$ref": "#/definitions/StorageAccountTypes", + "description": "Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk." + }, + "diskEncryptionSet": { + "$ref": "#/definitions/DiskEncryptionSetParameters", + "description": "Specifies the customer managed disk encryption set resource id for the managed disk." + }, + "securityProfile": { + "$ref": "#/definitions/VMDiskSecurityProfile", + "description": "Specifies the security profile for the managed disk." + } + }, + "allOf": [ + { + "$ref": "./common.json#/definitions/SubResource" + } + ] + }, + "MigrateToVirtualMachineScaleSetInput": { + "type": "object", + "description": "Describes the Virtual Machine Scale Set to migrate from Availability Set.", + "properties": { + "virtualMachineScaleSetFlexible": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies information about the Virtual Machine Scale Set that the Availability Set should be migrated to. Minimum api‐version: 2024‐11‐01." + } + }, + "required": [ + "virtualMachineScaleSetFlexible" + ] + }, + "MigrateVMToVirtualMachineScaleSetInput": { + "type": "object", + "description": "The input of virtual machine migration from Availability Set to Flexible Virtual Machine Scale Set.", + "properties": { + "targetZone": { + "type": "string", + "description": "The target zone of VM migration to Flexible Virtual Machine Scale Set." + }, + "targetFaultDomain": { + "type": "integer", + "format": "int32", + "description": "The target compute fault domain of VM migration to Flexible Virtual Machine Scale Set." + }, + "targetVMSize": { + "type": "string", + "description": "The target Virtual Machine size of VM migration to Flexible Virtual Machine Scale Set." + } + } + }, + "Mode": { + "type": "string", + "description": "Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.", + "enum": [ + "Audit", + "Enforce" + ], + "x-ms-enum": { + "name": "Mode", + "modelAsString": true, + "values": [ + { + "name": "Audit", + "value": "Audit" + }, + { + "name": "Enforce", + "value": "Enforce" + } + ] + } + }, + "Modes": { + "type": "string", + "description": "Specifies the execution mode. In Audit mode, the system acts as if it is enforcing the access control policy, including emitting access denial entries in the logs but it does not actually deny any requests to host endpoints. In Enforce mode, the system will enforce the access control and it is the recommended mode of operation.", + "enum": [ + "Audit", + "Enforce", + "Disabled" + ], + "x-ms-enum": { + "name": "Modes", + "modelAsString": true, + "values": [ + { + "name": "Audit", + "value": "Audit" + }, + { + "name": "Enforce", + "value": "Enforce" + }, + { + "name": "Disabled", + "value": "Disabled" + } + ] + } + }, + "NetworkApiVersion": { + "type": "string", + "description": "specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations", + "enum": [ + "2020-11-01", + "2022-11-01" + ], + "x-ms-enum": { + "name": "NetworkApiVersion", + "modelAsString": true, + "values": [ + { + "name": "2020-11-01", + "value": "2020-11-01" + }, + { + "name": "2022-11-01", + "value": "2022-11-01" + } + ] + } + }, + "NetworkInterfaceAuxiliaryMode": { + "type": "string", + "description": "Specifies whether the Auxiliary mode is enabled for the Network Interface resource.", + "enum": [ + "None", + "AcceleratedConnections", + "Floating" + ], + "x-ms-enum": { + "name": "NetworkInterfaceAuxiliaryMode", + "modelAsString": true, + "values": [ + { + "name": "None", + "value": "None" + }, + { + "name": "AcceleratedConnections", + "value": "AcceleratedConnections" + }, + { + "name": "Floating", + "value": "Floating" + } + ] + } + }, + "NetworkInterfaceAuxiliarySku": { + "type": "string", + "description": "Specifies whether the Auxiliary sku is enabled for the Network Interface resource.", + "enum": [ + "None", + "A1", + "A2", + "A4", + "A8" + ], + "x-ms-enum": { + "name": "NetworkInterfaceAuxiliarySku", + "modelAsString": true, + "values": [ + { + "name": "None", + "value": "None" + }, + { + "name": "A1", + "value": "A1" + }, + { + "name": "A2", + "value": "A2" + }, + { + "name": "A4", + "value": "A4" + }, + { + "name": "A8", + "value": "A8" + } + ] + } + }, + "NetworkInterfaceReference": { + "type": "object", + "description": "Describes a network interface reference.", + "properties": { + "properties": { + "$ref": "#/definitions/NetworkInterfaceReferenceProperties", + "description": "Describes a network interface reference properties.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./common.json#/definitions/SubResource" + } + ] + }, + "NetworkInterfaceReferenceProperties": { + "type": "object", + "description": "Describes a network interface reference properties.", + "properties": { + "primary": { + "type": "boolean", + "description": "Specifies the primary network interface in case the virtual machine has more than 1 network interface." + }, + "deleteOption": { + "$ref": "#/definitions/DeleteOptions", + "description": "Specify what happens to the network interface when the VM is deleted" + } + } + }, + "NetworkProfile": { + "type": "object", + "description": "Specifies the network interfaces or the networking configuration of the virtual machine.", + "properties": { + "networkInterfaces": { + "type": "array", + "description": "Specifies the list of resource Ids for the network interfaces associated with the virtual machine.", + "items": { + "$ref": "#/definitions/NetworkInterfaceReference" + } + }, + "networkApiVersion": { + "$ref": "#/definitions/NetworkApiVersion", + "description": "specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations" + }, + "networkInterfaceConfigurations": { + "type": "array", + "description": "Specifies the networking configurations that will be used to create the virtual machine networking resources.", + "items": { + "$ref": "#/definitions/VirtualMachineNetworkInterfaceConfiguration" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "OSDisk": { + "type": "object", + "description": "Specifies information about the operating system disk used by the virtual machine. For more information about disks, see [About disks and VHDs for Azure virtual machines](https://docs.microsoft.com/azure/virtual-machines/managed-disks-overview).", + "properties": { + "osType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: **Windows,** **Linux.**" + }, + "encryptionSettings": { + "$ref": "#/definitions/DiskEncryptionSettings", + "description": "Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15." + }, + "name": { + "type": "string", + "description": "The disk name." + }, + "vhd": { + "$ref": "#/definitions/VirtualHardDisk", + "description": "The virtual hard disk." + }, + "image": { + "$ref": "#/definitions/VirtualHardDisk", + "description": "The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist." + }, + "caching": { + "$ref": "#/definitions/CachingTypes", + "description": "Specifies the caching requirements. Possible values are: **None,** **ReadOnly,** **ReadWrite.** The defaulting behavior is: **None for Standard storage. ReadOnly for Premium storage.**" + }, + "writeAcceleratorEnabled": { + "type": "boolean", + "description": "Specifies whether writeAccelerator should be enabled or disabled on the disk." + }, + "diffDiskSettings": { + "$ref": "#/definitions/DiffDiskSettings", + "description": "Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine." + }, + "createOption": { + "$ref": "#/definitions/DiskCreateOptionTypes", + "description": "Specifies how the virtual machine disk should be created. Possible values are **Attach:** This value is used when you are using a specialized disk to create the virtual machine. **FromImage:** This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described." + }, + "diskSizeGB": { + "type": "integer", + "format": "int32", + "description": "Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023." + }, + "managedDisk": { + "$ref": "#/definitions/ManagedDiskParameters", + "description": "The managed disk parameters." + }, + "deleteOption": { + "$ref": "#/definitions/DiskDeleteOptionTypes", + "description": "Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: **Delete.** If this value is used, the OS disk is deleted when VM is deleted. **Detach.** If this value is used, the os disk is retained after VM is deleted. The default value is set to **Detach**. For an ephemeral OS Disk, the default value is set to **Delete**. The user cannot change the delete option for an ephemeral OS Disk." + } + }, + "required": [ + "createOption" + ] + }, + "OSDiskImage": { + "type": "object", + "description": "Contains the os disk image information.", + "properties": { + "operatingSystem": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "The operating system of the osDiskImage." + } + }, + "required": [ + "operatingSystem" + ] + }, + "OSImageNotificationProfile": { + "type": "object", + "properties": { + "notBeforeTimeout": { + "type": "string", + "description": "Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)" + }, + "enable": { + "type": "boolean", + "description": "Specifies whether the OS Image Scheduled event is enabled or disabled." + } + } + }, + "OSProfile": { + "type": "object", + "description": "Specifies the operating system settings for the virtual machine. Some of the settings cannot be changed once VM is provisioned.", + "properties": { + "computerName": { + "type": "string", + "description": "Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. **Max-length (Windows):** 15 characters. **Max-length (Linux):** 64 characters. For naming conventions and restrictions see [Azure infrastructure services implementation guidelines](https://docs.microsoft.com/azure/azure-resource-manager/management/resource-name-rules)." + }, + "adminUsername": { + "type": "string", + "description": "Specifies the name of the administrator account.

This property cannot be updated after the VM is created.

**Windows-only restriction:** Cannot end in \".\"

**Disallowed values:** \"administrator\", \"admin\", \"user\", \"user1\", \"test\", \"user2\", \"test1\", \"user3\", \"admin1\", \"1\", \"123\", \"a\", \"actuser\", \"adm\", \"admin2\", \"aspnet\", \"backup\", \"console\", \"david\", \"guest\", \"john\", \"owner\", \"root\", \"server\", \"sql\", \"support\", \"support_388945a0\", \"sys\", \"test2\", \"test3\", \"user4\", \"user5\".

**Minimum-length (Linux):** 1 character

**Max-length (Linux):** 64 characters

**Max-length (Windows):** 20 characters." + }, + "adminPassword": { + "type": "string", + "format": "password", + "description": "Specifies the password of the administrator account.

**Minimum-length (Windows):** 8 characters

**Minimum-length (Linux):** 6 characters

**Max-length (Windows):** 123 characters

**Max-length (Linux):** 72 characters

**Complexity requirements:** 3 out of 4 conditions below need to be fulfilled
Has lower characters
Has upper characters
Has a digit
Has a special character (Regex match [\\W_])

**Disallowed values:** \"abc@123\", \"P@$$w0rd\", \"P@ssw0rd\", \"P@ssword123\", \"Pa$$word\", \"pass@word1\", \"Password!\", \"Password1\", \"Password22\", \"iloveyou!\"

For resetting the password, see [How to reset the Remote Desktop service or its login password in a Windows VM](https://docs.microsoft.com/troubleshoot/azure/virtual-machines/reset-rdp)

For resetting root password, see [Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension](https://docs.microsoft.com/troubleshoot/azure/virtual-machines/troubleshoot-ssh-connection)", + "x-ms-secret": true + }, + "customData": { + "type": "string", + "description": "Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. **Note: Do not pass any secrets or passwords in customData property.** This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see [Custom Data on Azure VMs](https://azure.microsoft.com/blog/custom-data-and-cloud-init-on-windows-azure/). For using cloud-init for your Linux VM, see [Using cloud-init to customize a Linux VM during creation](https://docs.microsoft.com/azure/virtual-machines/linux/using-cloud-init)." + }, + "windowsConfiguration": { + "$ref": "#/definitions/WindowsConfiguration", + "description": "Specifies Windows operating system settings on the virtual machine." + }, + "linuxConfiguration": { + "$ref": "#/definitions/LinuxConfiguration", + "description": "Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see [Linux on Azure-Endorsed Distributions](https://docs.microsoft.com/azure/virtual-machines/linux/endorsed-distros)." + }, + "secrets": { + "type": "array", + "description": "Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the [Azure Key Vault virtual machine extension for Linux](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-linux) or the [Azure Key Vault virtual machine extension for Windows](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-windows).", + "items": { + "$ref": "#/definitions/VaultSecretGroup" + }, + "x-ms-identifiers": [ + "sourceVault/id" + ] + }, + "allowExtensionOperations": { + "type": "boolean", + "description": "Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine." + }, + "requireGuestProvisionSignal": { + "type": "boolean", + "description": "Optional property which must either be set to True or omitted." + } + } + }, + "OSProfileProvisioningData": { + "type": "object", + "description": "Additional parameters for Reimaging Non-Ephemeral Virtual Machine.", + "properties": { + "adminPassword": { + "type": "string", + "format": "password", + "description": "Specifies the password of the administrator account.

**Minimum-length (Windows):** 8 characters

**Minimum-length (Linux):** 6 characters

**Max-length (Windows):** 123 characters

**Max-length (Linux):** 72 characters

**Complexity requirements:** 3 out of 4 conditions below need to be fulfilled
Has lower characters
Has upper characters
Has a digit
Has a special character (Regex match [\\W_])

**Disallowed values:** \"abc@123\", \"P@$$w0rd\", \"P@ssw0rd\", \"P@ssword123\", \"Pa$$word\", \"pass@word1\", \"Password!\", \"Password1\", \"Password22\", \"iloveyou!\"

For resetting the password, see [How to reset the Remote Desktop service or its login password in a Windows VM](https://docs.microsoft.com/troubleshoot/azure/virtual-machines/reset-rdp)

For resetting root password, see [Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension](https://docs.microsoft.com/troubleshoot/azure/virtual-machines/troubleshoot-ssh-connection)", + "x-ms-secret": true + }, + "customData": { + "type": "string", + "description": "Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. **Note: Do not pass any secrets or passwords in customData property.** This property cannot be updated after the VM is created. The property customData is passed to the VM to be saved as a file, for more information see [Custom Data on Azure VMs](https://azure.microsoft.com/blog/custom-data-and-cloud-init-on-windows-azure/). If using cloud-init for your Linux VM, see [Using cloud-init to customize a Linux VM during creation](https://docs.microsoft.com/azure/virtual-machines/linux/using-cloud-init)." + } + } + }, + "OperatingSystemStateTypes": { + "type": "string", + "description": "The OS State. For managed images, use Generalized.", + "enum": [ + "Generalized", + "Specialized" + ], + "x-ms-enum": { + "name": "OperatingSystemStateTypes", + "modelAsString": false, + "values": [ + { + "name": "Generalized", + "value": "Generalized", + "description": "Generalized image. Needs to be provisioned during deployment time." + }, + { + "name": "Specialized", + "value": "Specialized", + "description": "Specialized image. Contains already provisioned OS Disk." + } + ] + } + }, + "OperatingSystemType": { + "type": "string", + "description": "Gets the Operating System type.", + "enum": [ + "Windows", + "Linux" + ], + "x-ms-enum": { + "name": "OperatingSystemType", + "modelAsString": true, + "values": [ + { + "name": "Windows", + "value": "Windows" + }, + { + "name": "Linux", + "value": "Linux" + } + ] + } + }, + "OperatingSystemTypes": { + "type": "string", + "description": "This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: **Windows,** **Linux.**", + "enum": [ + "Windows", + "Linux" + ], + "x-ms-enum": { + "name": "OperatingSystemTypes", + "modelAsString": false + } + }, + "OrchestrationMode": { + "type": "string", + "description": "Specifies the orchestration mode for the virtual machine scale set.", + "enum": [ + "Uniform", + "Flexible" + ], + "x-ms-enum": { + "name": "OrchestrationMode", + "modelAsString": true, + "values": [ + { + "name": "Uniform", + "value": "Uniform" + }, + { + "name": "Flexible", + "value": "Flexible" + } + ] + } + }, + "OrchestrationServiceNames": { + "type": "string", + "description": "The name of the service.", + "enum": [ + "AutomaticRepairs" + ], + "x-ms-enum": { + "name": "OrchestrationServiceNames", + "modelAsString": true, + "values": [ + { + "name": "AutomaticRepairs", + "value": "AutomaticRepairs" + } + ] + } + }, + "OrchestrationServiceState": { + "type": "string", + "description": "The current state of the service.", + "enum": [ + "NotRunning", + "Running", + "Suspended" + ], + "x-ms-enum": { + "name": "OrchestrationServiceState", + "modelAsString": true, + "values": [ + { + "name": "NotRunning", + "value": "NotRunning" + }, + { + "name": "Running", + "value": "Running" + }, + { + "name": "Suspended", + "value": "Suspended" + } + ] + } + }, + "OrchestrationServiceStateAction": { + "type": "string", + "description": "The action to be performed.", + "enum": [ + "Resume", + "Suspend" + ], + "x-ms-enum": { + "name": "OrchestrationServiceStateAction", + "modelAsString": true, + "values": [ + { + "name": "Resume", + "value": "Resume" + }, + { + "name": "Suspend", + "value": "Suspend" + } + ] + } + }, + "OrchestrationServiceStateInput": { + "type": "object", + "description": "The input for OrchestrationServiceState", + "properties": { + "serviceName": { + "$ref": "#/definitions/OrchestrationServiceNames", + "description": "The name of the service." + }, + "action": { + "$ref": "#/definitions/OrchestrationServiceStateAction", + "description": "The action to be performed." + } + }, + "required": [ + "serviceName", + "action" + ] + }, + "OrchestrationServiceSummary": { + "type": "object", + "description": "Summary for an orchestration service of a virtual machine scale set.", + "properties": { + "serviceName": { + "$ref": "#/definitions/OrchestrationServiceNames", + "description": "The name of the service.", + "readOnly": true + }, + "serviceState": { + "$ref": "#/definitions/OrchestrationServiceState", + "description": "The current state of the service.", + "readOnly": true + } + } + }, + "PassNames": { + "type": "string", + "enum": [ + "OobeSystem" + ], + "x-ms-enum": { + "modelAsString": false + }, + "x-nullable": false + }, + "PatchAssessmentState": { + "type": "string", + "description": "Describes the availability of a given patch.", + "enum": [ + "Unknown", + "Available" + ], + "x-ms-enum": { + "name": "PatchAssessmentState", + "modelAsString": true, + "values": [ + { + "name": "Unknown", + "value": "Unknown" + }, + { + "name": "Available", + "value": "Available" + } + ] + } + }, + "PatchInstallationDetail": { + "type": "object", + "description": "Information about a specific patch that was encountered during an installation action.", + "properties": { + "patchId": { + "type": "string", + "description": "A unique identifier for the patch.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "The friendly name of the patch.", + "readOnly": true + }, + "version": { + "type": "string", + "description": "The version string of the package. It may conform to Semantic Versioning. Only applies to Linux.", + "readOnly": true + }, + "kbId": { + "type": "string", + "description": "The KBID of the patch. Only applies to Windows patches.", + "readOnly": true + }, + "classifications": { + "type": "array", + "description": "The classification(s) of the patch as provided by the patch publisher.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "installationState": { + "$ref": "#/definitions/PatchInstallationState", + "description": "The state of the patch after the installation operation completed.", + "readOnly": true + } + } + }, + "PatchInstallationState": { + "type": "string", + "description": "The state of the patch after the installation operation completed.", + "enum": [ + "Unknown", + "Installed", + "Failed", + "Excluded", + "NotSelected", + "Pending" + ], + "x-ms-enum": { + "name": "PatchInstallationState", + "modelAsString": true, + "values": [ + { + "name": "Unknown", + "value": "Unknown" + }, + { + "name": "Installed", + "value": "Installed" + }, + { + "name": "Failed", + "value": "Failed" + }, + { + "name": "Excluded", + "value": "Excluded" + }, + { + "name": "NotSelected", + "value": "NotSelected" + }, + { + "name": "Pending", + "value": "Pending" + } + ] + } + }, + "PatchOperationStatus": { + "type": "string", + "description": "The overall success or failure status of the operation. It remains \"InProgress\" until the operation completes. At that point it will become \"Unknown\", \"Failed\", \"Succeeded\", or \"CompletedWithWarnings.\"", + "enum": [ + "Unknown", + "InProgress", + "Failed", + "Succeeded", + "CompletedWithWarnings" + ], + "x-ms-enum": { + "name": "PatchOperationStatus", + "modelAsString": true, + "values": [ + { + "name": "Unknown", + "value": "Unknown" + }, + { + "name": "InProgress", + "value": "InProgress" + }, + { + "name": "Failed", + "value": "Failed" + }, + { + "name": "Succeeded", + "value": "Succeeded" + }, + { + "name": "CompletedWithWarnings", + "value": "CompletedWithWarnings" + } + ] + } + }, + "PatchSettings": { + "type": "object", + "description": "Specifies settings related to VM Guest Patching on Windows.", + "properties": { + "patchMode": { + "$ref": "#/definitions/WindowsVMGuestPatchMode", + "description": "Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible.

Possible values are:

**Manual** - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false

**AutomaticByOS** - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true.

**AutomaticByPlatform** - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true" + }, + "enableHotpatching": { + "type": "boolean", + "description": "Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'." + }, + "assessmentMode": { + "$ref": "#/definitions/WindowsPatchAssessmentMode", + "description": "Specifies the mode of VM Guest patch assessment for the IaaS virtual machine.

Possible values are:

**ImageDefault** - You control the timing of patch assessments on a virtual machine.

**AutomaticByPlatform** - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true." + }, + "automaticByPlatformSettings": { + "$ref": "#/definitions/WindowsVMGuestPatchAutomaticByPlatformSettings", + "description": "Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows." + } + } + }, + "Placement": { + "type": "object", + "description": "Describes the user-defined constraints for virtual machine hardware placement.", + "properties": { + "zonePlacementPolicy": { + "$ref": "#/definitions/ZonePlacementPolicyType", + "description": "Specifies the policy for virtual machine's placement in availability zone. Possible values are: **Any** - An availability zone will be automatically picked by system as part of virtual machine creation." + }, + "includeZones": { + "type": "array", + "description": "This property supplements the 'zonePlacementPolicy' property. If 'zonePlacementPolicy' is set to 'Any', availability zone selected by the system must be present in the list of availability zones passed with 'includeZones'. If 'includeZones' is not provided, all availability zones in region will be considered for selection.", + "items": { + "type": "string" + } + }, + "excludeZones": { + "type": "array", + "description": "This property supplements the 'zonePlacementPolicy' property. If 'zonePlacementPolicy' is set to 'Any', availability zone selected by the system must not be present in the list of availability zones passed with 'excludeZones'. If 'excludeZones' is not provided, all availability zones in region will be considered for selection.", + "items": { + "type": "string" + } + } + } + }, + "Plan": { + "type": "object", + "description": "Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click **Want to deploy programmatically, Get Started ->**. Enter any required information and then click **Save**.", + "properties": { + "name": { + "type": "string", + "description": "The plan ID." + }, + "publisher": { + "type": "string", + "description": "The publisher ID." + }, + "product": { + "type": "string", + "description": "Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element." + }, + "promotionCode": { + "type": "string", + "description": "The promotion code." + } + } + }, + "PriorityMixPolicy": { + "type": "object", + "description": "Specifies the target splits for Spot and Regular priority VMs within a scale set with flexible orchestration mode. With this property the customer is able to specify the base number of regular priority VMs created as the VMSS flex instance scales out and the split between Spot and Regular priority VMs after this base target has been reached.", + "properties": { + "baseRegularPriorityCount": { + "type": "integer", + "format": "int32", + "description": "The base number of regular priority VMs that will be created in this scale set as it scales out." + }, + "regularPriorityPercentageAboveBase": { + "type": "integer", + "format": "int32", + "description": "The percentage of VM instances, after the base regular priority count has been reached, that are expected to use regular priority.", + "maximum": 100 + } + } + }, + "ProtocolTypes": { + "type": "string", + "description": "Specifies the protocol of WinRM listener. Possible values are: **http,** **https.**", + "enum": [ + "Http", + "Https" + ], + "x-ms-enum": { + "name": "ProtocolTypes", + "modelAsString": false + } + }, + "ProximityPlacementGroup": { + "type": "object", + "description": "Specifies information about the proximity placement group.", + "properties": { + "properties": { + "$ref": "#/definitions/ProximityPlacementGroupProperties", + "description": "Describes the properties of a Proximity Placement Group.", + "x-ms-client-flatten": true + }, + "zones": { + "type": "array", + "description": "The availability zones.", + "items": { + "type": "string" + } + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "ProximityPlacementGroupListResult": { + "type": "object", + "description": "The List Proximity Placement Group operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of proximity placement groups.", + "items": { + "$ref": "#/definitions/ProximityPlacementGroup" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The URI to fetch the next page of proximity placement groups." + } + }, + "required": [ + "value" + ] + }, + "ProximityPlacementGroupProperties": { + "type": "object", + "description": "Describes the properties of a Proximity Placement Group.", + "properties": { + "proximityPlacementGroupType": { + "$ref": "#/definitions/ProximityPlacementGroupType", + "description": "Specifies the type of the proximity placement group. Possible values are: **Standard** : Co-locate resources within an Azure region or Availability Zone. **Ultra** : For future use." + }, + "virtualMachines": { + "type": "array", + "description": "A list of references to all virtual machines in the proximity placement group.", + "items": { + "$ref": "#/definitions/SubResourceWithColocationStatus" + }, + "readOnly": true + }, + "virtualMachineScaleSets": { + "type": "array", + "description": "A list of references to all virtual machine scale sets in the proximity placement group.", + "items": { + "$ref": "#/definitions/SubResourceWithColocationStatus" + }, + "readOnly": true + }, + "availabilitySets": { + "type": "array", + "description": "A list of references to all availability sets in the proximity placement group.", + "items": { + "$ref": "#/definitions/SubResourceWithColocationStatus" + }, + "readOnly": true + }, + "colocationStatus": { + "$ref": "#/definitions/InstanceViewStatus", + "description": "Describes colocation status of the Proximity Placement Group." + }, + "intent": { + "$ref": "#/definitions/ProximityPlacementGroupPropertiesIntent", + "description": "Specifies the user intent of the proximity placement group." + } + } + }, + "ProximityPlacementGroupPropertiesIntent": { + "type": "object", + "description": "Specifies the user intent of the proximity placement group.", + "properties": { + "vmSizes": { + "type": "array", + "description": "Specifies possible sizes of virtual machines that can be created in the proximity placement group.", + "items": { + "type": "string" + } + } + } + }, + "ProximityPlacementGroupType": { + "type": "string", + "description": "Specifies the type of the proximity placement group. Possible values are: **Standard** : Co-locate resources within an Azure region or Availability Zone. **Ultra** : For future use.", + "enum": [ + "Standard", + "Ultra" + ], + "x-ms-enum": { + "name": "ProximityPlacementGroupType", + "modelAsString": true, + "values": [ + { + "name": "Standard", + "value": "Standard" + }, + { + "name": "Ultra", + "value": "Ultra" + } + ] + } + }, + "ProximityPlacementGroupUpdate": { + "type": "object", + "description": "Specifies information about the proximity placement group.", + "allOf": [ + { + "$ref": "#/definitions/UpdateResource" + } + ] + }, + "ProxyAgentSettings": { + "type": "object", + "description": "Specifies ProxyAgent settings for the virtual machine or virtual machine scale set. Minimum api-version: 2023-09-01.", + "properties": { + "enabled": { + "type": "boolean", + "description": "Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set." + }, + "mode": { + "$ref": "#/definitions/Mode", + "description": "Specifies the mode that ProxyAgent will execute on. Warning: this property has been deprecated, please specify 'mode' under particular hostendpoint setting." + }, + "keyIncarnationId": { + "type": "integer", + "format": "int32", + "description": "Increase the value of this property allows users to reset the key used for securing communication channel between guest and host." + }, + "wireServer": { + "$ref": "#/definitions/HostEndpointSettings", + "description": "Specifies the Wire Server endpoint settings while creating the virtual machine or virtual machine scale set. Minimum api-version: 2024-03-01." + }, + "imds": { + "$ref": "#/definitions/HostEndpointSettings", + "description": "Specifies the IMDS endpoint settings while creating the virtual machine or virtual machine scale set. Minimum api-version: 2024-03-01." + } + } + }, + "PublicIPAddressSku": { + "type": "object", + "description": "Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.", + "properties": { + "name": { + "$ref": "#/definitions/PublicIPAddressSkuName", + "description": "Specify public IP sku name" + }, + "tier": { + "$ref": "#/definitions/PublicIPAddressSkuTier", + "description": "Specify public IP sku tier" + } + } + }, + "PublicIPAddressSkuName": { + "type": "string", + "description": "Specify public IP sku name", + "enum": [ + "Basic", + "Standard" + ], + "x-ms-enum": { + "name": "PublicIPAddressSkuName", + "modelAsString": true, + "values": [ + { + "name": "Basic", + "value": "Basic" + }, + { + "name": "Standard", + "value": "Standard" + } + ] + } + }, + "PublicIPAddressSkuTier": { + "type": "string", + "description": "Specify public IP sku tier", + "enum": [ + "Regional", + "Global" + ], + "x-ms-enum": { + "name": "PublicIPAddressSkuTier", + "modelAsString": true, + "values": [ + { + "name": "Regional", + "value": "Regional" + }, + { + "name": "Global", + "value": "Global" + } + ] + } + }, + "PublicIPAllocationMethod": { + "type": "string", + "description": "Specify the public IP allocation type", + "enum": [ + "Dynamic", + "Static" + ], + "x-ms-enum": { + "name": "PublicIPAllocationMethod", + "modelAsString": true, + "values": [ + { + "name": "Dynamic", + "value": "Dynamic" + }, + { + "name": "Static", + "value": "Static" + } + ] + } + }, + "PurchasePlan": { + "type": "object", + "description": "Used for establishing the purchase context of any 3rd Party artifact through MarketPlace.", + "properties": { + "publisher": { + "type": "string", + "description": "The publisher ID." + }, + "name": { + "type": "string", + "description": "The plan ID." + }, + "product": { + "type": "string", + "description": "Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element." + } + }, + "required": [ + "publisher", + "name", + "product" + ] + }, + "RebalanceBehavior": { + "type": "string", + "description": "Type of rebalance behavior that will be used for recreating virtual machines in the scale set across availability zones. Default and only supported value for now is CreateBeforeDelete.", + "enum": [ + "CreateBeforeDelete" + ], + "x-ms-enum": { + "name": "RebalanceBehavior", + "modelAsString": true, + "values": [ + { + "name": "CreateBeforeDelete", + "value": "CreateBeforeDelete" + } + ] + } + }, + "RebalanceStrategy": { + "type": "string", + "description": "Type of rebalance strategy that will be used for rebalancing virtual machines in the scale set across availability zones. Default and only supported value for now is Recreate.", + "enum": [ + "Recreate" + ], + "x-ms-enum": { + "name": "RebalanceStrategy", + "modelAsString": true, + "values": [ + { + "name": "Recreate", + "value": "Recreate" + } + ] + } + }, + "RecoveryWalkResponse": { + "type": "object", + "description": "Response after calling a manual recovery walk", + "properties": { + "walkPerformed": { + "type": "boolean", + "description": "Whether the recovery walk was performed", + "readOnly": true + }, + "nextPlatformUpdateDomain": { + "type": "integer", + "format": "int32", + "description": "The next update domain that needs to be walked. Null means walk spanning all update domains has been completed", + "readOnly": true + } + } + }, + "RepairAction": { + "type": "string", + "description": "Type of repair action (replace, restart, reimage) that will be used for repairing unhealthy virtual machines in the scale set. Default value is replace.", + "enum": [ + "Replace", + "Restart", + "Reimage" + ], + "x-ms-enum": { + "name": "RepairAction", + "modelAsString": true, + "values": [ + { + "name": "Replace", + "value": "Replace" + }, + { + "name": "Restart", + "value": "Restart" + }, + { + "name": "Reimage", + "value": "Reimage" + } + ] + } + }, + "RequestRateByIntervalInput": { + "type": "object", + "description": "Api request input for LogAnalytics getRequestRateByInterval Api.", + "properties": { + "intervalLength": { + "$ref": "#/definitions/IntervalInMins", + "description": "Interval value in minutes used to create LogAnalytics call rate logs." + } + }, + "required": [ + "intervalLength" + ], + "allOf": [ + { + "$ref": "#/definitions/LogAnalyticsInputBase" + } + ] + }, + "ResiliencyPolicy": { + "type": "object", + "description": "Describes an resiliency policy - AutomaticZoneRebalancingPolicy, ResilientVMCreationPolicy and/or ResilientVMDeletionPolicy.", + "properties": { + "resilientVMCreationPolicy": { + "$ref": "#/definitions/ResilientVMCreationPolicy", + "description": "The configuration parameters used while performing resilient VM creation." + }, + "resilientVMDeletionPolicy": { + "$ref": "#/definitions/ResilientVMDeletionPolicy", + "description": "The configuration parameters used while performing resilient VM deletion." + }, + "automaticZoneRebalancingPolicy": { + "$ref": "#/definitions/AutomaticZoneRebalancingPolicy", + "description": "The configuration parameters used while performing automatic AZ balancing." + } + } + }, + "ResilientVMCreationPolicy": { + "type": "object", + "description": "The configuration parameters used while performing resilient VM creation.", + "properties": { + "enabled": { + "type": "boolean", + "description": "Specifies whether resilient VM creation should be enabled on the virtual machine scale set. The default value is false." + } + } + }, + "ResilientVMDeletionPolicy": { + "type": "object", + "description": "The configuration parameters used while performing resilient VM deletion.", + "properties": { + "enabled": { + "type": "boolean", + "description": "Specifies whether resilient VM deletion should be enabled on the virtual machine scale set. The default value is false." + } + } + }, + "ResilientVMDeletionStatus": { + "type": "string", + "description": "Specifies the resilient VM deletion status for the virtual machine.", + "enum": [ + "Enabled", + "Disabled", + "InProgress", + "Failed" + ], + "x-ms-enum": { + "name": "ResilientVMDeletionStatus", + "modelAsString": true, + "values": [ + { + "name": "Enabled", + "value": "Enabled" + }, + { + "name": "Disabled", + "value": "Disabled" + }, + { + "name": "InProgress", + "value": "InProgress" + }, + { + "name": "Failed", + "value": "Failed" + } + ] + } + }, + "ResourceIdOptionsForGetCapacityReservationGroups": { + "type": "string", + "enum": [ + "CreatedInSubscription", + "SharedWithSubscription", + "All" + ], + "x-ms-enum": { + "name": "ResourceIdOptionsForGetCapacityReservationGroups", + "modelAsString": true, + "values": [ + { + "name": "CreatedInSubscription", + "value": "CreatedInSubscription" + }, + { + "name": "SharedWithSubscription", + "value": "SharedWithSubscription" + }, + { + "name": "All", + "value": "All" + } + ] + } + }, + "ResourceIdentityType": { + "type": "string", + "description": "The type of identity used for the virtual machine scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine scale set.", + "enum": [ + "SystemAssigned", + "UserAssigned", + "SystemAssigned, UserAssigned", + "None" + ], + "x-ms-enum": { + "name": "ResourceIdentityType", + "modelAsString": false + } + }, + "ResourceSharingProfile": { + "type": "object", + "properties": { + "subscriptionIds": { + "type": "array", + "description": "Specifies an array of subscription resource IDs that capacity reservation group is shared with. **Note:** Minimum api-version: 2023-09-01. Please refer to https://aka.ms/computereservationsharing for more details.", + "items": { + "$ref": "./common.json#/definitions/SubResource" + } + } + } + }, + "ResourceWithOptionalLocation": { + "type": "object", + "description": "The Resource model definition with location property as optional.", + "properties": { + "location": { + "type": "string", + "description": "Resource location" + }, + "id": { + "type": "string", + "description": "Resource Id", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Resource name", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Resource type", + "readOnly": true + }, + "tags": { + "type": "object", + "description": "Resource tags", + "additionalProperties": { + "type": "string" + } + } + } + }, + "RestorePoint": { + "type": "object", + "description": "Restore Point details.", + "properties": { + "properties": { + "$ref": "#/definitions/RestorePointProperties", + "description": "The restore point properties.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/ProxyResource" + } + ] + }, + "RestorePointCollection": { + "type": "object", + "description": "Create or update Restore Point collection parameters.", + "properties": { + "properties": { + "$ref": "#/definitions/RestorePointCollectionProperties", + "description": "The restore point collection properties.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "RestorePointCollectionExpandOptions": { + "type": "string", + "enum": [ + "restorePoints" + ], + "x-ms-enum": { + "name": "RestorePointCollectionExpandOptions", + "modelAsString": true, + "values": [ + { + "name": "restorePoints", + "value": "restorePoints" + } + ] + } + }, + "RestorePointCollectionListResult": { + "type": "object", + "description": "The List restore point collection operation response.", + "properties": { + "value": { + "type": "array", + "description": "Gets the list of restore point collections.", + "items": { + "$ref": "#/definitions/RestorePointCollection" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of RestorePointCollections. Call ListNext() with this to fetch the next page of RestorePointCollections." + } + }, + "required": [ + "value" + ] + }, + "RestorePointCollectionProperties": { + "type": "object", + "description": "The restore point collection properties.", + "properties": { + "source": { + "$ref": "#/definitions/RestorePointCollectionSourceProperties", + "description": "The properties of the source resource that this restore point collection is created from." + }, + "provisioningState": { + "type": "string", + "description": "The provisioning state of the restore point collection.", + "readOnly": true + }, + "restorePointCollectionId": { + "type": "string", + "description": "The unique id of the restore point collection.", + "readOnly": true + }, + "restorePoints": { + "type": "array", + "description": "A list containing all restore points created under this restore point collection.", + "items": { + "$ref": "#/definitions/RestorePoint" + }, + "readOnly": true + } + } + }, + "RestorePointCollectionSourceProperties": { + "type": "object", + "description": "The properties of the source resource that this restore point collection is created from.", + "properties": { + "location": { + "type": "string", + "description": "Location of the source resource used to create this restore point collection.", + "readOnly": true + }, + "id": { + "type": "string", + "description": "Resource Id of the source resource used to create this restore point collection" + } + } + }, + "RestorePointCollectionUpdate": { + "type": "object", + "description": "Update Restore Point collection parameters.", + "properties": { + "properties": { + "$ref": "#/definitions/RestorePointCollectionProperties", + "description": "The restore point collection properties.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResource" + } + ] + }, + "RestorePointEncryption": { + "type": "object", + "description": "Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point.", + "properties": { + "diskEncryptionSet": { + "$ref": "#/definitions/DiskEncryptionSetParameters", + "description": "Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. **Note:** The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details." + }, + "type": { + "$ref": "#/definitions/RestorePointEncryptionType", + "description": "The type of key used to encrypt the data of the disk restore point." + } + } + }, + "RestorePointEncryptionType": { + "type": "string", + "description": "The type of key used to encrypt the data of the disk restore point.", + "enum": [ + "EncryptionAtRestWithPlatformKey", + "EncryptionAtRestWithCustomerKey", + "EncryptionAtRestWithPlatformAndCustomerKeys" + ], + "x-ms-enum": { + "name": "RestorePointEncryptionType", + "modelAsString": true, + "values": [ + { + "name": "EncryptionAtRestWithPlatformKey", + "value": "EncryptionAtRestWithPlatformKey", + "description": "Disk Restore Point is encrypted at rest with Platform managed key." + }, + { + "name": "EncryptionAtRestWithCustomerKey", + "value": "EncryptionAtRestWithCustomerKey", + "description": "Disk Restore Point is encrypted at rest with Customer managed key that can be changed and revoked by a customer." + }, + { + "name": "EncryptionAtRestWithPlatformAndCustomerKeys", + "value": "EncryptionAtRestWithPlatformAndCustomerKeys", + "description": "Disk Restore Point is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed." + } + ] + } + }, + "RestorePointExpandOptions": { + "type": "string", + "enum": [ + "instanceView" + ], + "x-ms-enum": { + "name": "RestorePointExpandOptions", + "modelAsString": true, + "values": [ + { + "name": "instanceView", + "value": "instanceView" + } + ] + } + }, + "RestorePointInstanceView": { + "type": "object", + "description": "The instance view of a restore point.", + "properties": { + "diskRestorePoints": { + "type": "array", + "description": "The disk restore points information.", + "items": { + "$ref": "#/definitions/DiskRestorePointInstanceView" + } + }, + "statuses": { + "type": "array", + "description": "The resource status information.", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "x-ms-identifiers": [] + } + } + }, + "RestorePointProperties": { + "type": "object", + "description": "The restore point properties.", + "properties": { + "excludeDisks": { + "type": "array", + "description": "List of disk resource ids that the customer wishes to exclude from the restore point. If no disks are specified, all disks will be included.", + "items": { + "$ref": "#/definitions/ApiEntityReference" + } + }, + "sourceMetadata": { + "$ref": "#/definitions/RestorePointSourceMetadata", + "description": "Gets the details of the VM captured at the time of the restore point creation." + }, + "provisioningState": { + "type": "string", + "description": "Gets the provisioning state of the restore point.", + "readOnly": true + }, + "consistencyMode": { + "$ref": "#/definitions/ConsistencyModeTypes", + "description": "ConsistencyMode of the RestorePoint. Can be specified in the input while creating a restore point. For now, only CrashConsistent is accepted as a valid input. Please refer to https://aka.ms/RestorePoints for more details." + }, + "timeCreated": { + "type": "string", + "format": "date-time", + "description": "Gets the creation time of the restore point." + }, + "sourceRestorePoint": { + "$ref": "#/definitions/ApiEntityReference", + "description": "Resource Id of the source restore point from which a copy needs to be created." + }, + "instanceView": { + "$ref": "#/definitions/RestorePointInstanceView", + "description": "The restore point instance view.", + "readOnly": true + } + } + }, + "RestorePointSourceMetadata": { + "type": "object", + "description": "Describes the properties of the Virtual Machine for which the restore point was created. The properties provided are a subset and the snapshot of the overall Virtual Machine properties captured at the time of the restore point creation.", + "properties": { + "hardwareProfile": { + "$ref": "#/definitions/HardwareProfile", + "description": "Gets the hardware profile.", + "readOnly": true + }, + "storageProfile": { + "$ref": "#/definitions/RestorePointSourceVMStorageProfile", + "description": "Gets the storage profile." + }, + "osProfile": { + "$ref": "#/definitions/OSProfile", + "description": "Gets the OS profile.", + "readOnly": true + }, + "diagnosticsProfile": { + "$ref": "#/definitions/DiagnosticsProfile", + "description": "Gets the diagnostics profile.", + "readOnly": true + }, + "licenseType": { + "type": "string", + "description": "Gets the license type, which is for bring your own license scenario.", + "readOnly": true + }, + "vmId": { + "type": "string", + "description": "Gets the virtual machine unique id.", + "readOnly": true + }, + "securityProfile": { + "$ref": "#/definitions/SecurityProfile", + "description": "Gets the security profile.", + "readOnly": true + }, + "location": { + "type": "string", + "description": "Location of the VM from which the restore point was created.", + "readOnly": true + }, + "userData": { + "type": "string", + "description": "UserData associated with the source VM for which restore point is captured, which is a base-64 encoded value.", + "readOnly": true + }, + "hyperVGeneration": { + "$ref": "#/definitions/HyperVGenerationTypes", + "description": "HyperVGeneration of the source VM for which restore point is captured.", + "readOnly": true + } + } + }, + "RestorePointSourceVMDataDisk": { + "type": "object", + "description": "Describes a data disk.", + "properties": { + "lun": { + "type": "integer", + "format": "int32", + "description": "Gets the logical unit number.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Gets the disk name.", + "readOnly": true + }, + "caching": { + "$ref": "#/definitions/CachingTypes", + "description": "Gets the caching type.", + "readOnly": true + }, + "diskSizeGB": { + "type": "integer", + "format": "int32", + "description": "Gets the initial disk size in GB for blank data disks, and the new desired size for existing OS and Data disks.", + "readOnly": true + }, + "managedDisk": { + "$ref": "#/definitions/ManagedDiskParameters", + "description": "Contains the managed disk details." + }, + "diskRestorePoint": { + "$ref": "#/definitions/DiskRestorePointAttributes", + "description": "Contains Disk Restore Point properties." + }, + "writeAcceleratorEnabled": { + "type": "boolean", + "description": "Shows true if the disk is write-accelerator enabled.", + "readOnly": true + } + } + }, + "RestorePointSourceVMOSDisk": { + "type": "object", + "description": "Describes an Operating System disk.", + "properties": { + "osType": { + "$ref": "#/definitions/OperatingSystemType", + "description": "Gets the Operating System type.", + "readOnly": true + }, + "encryptionSettings": { + "$ref": "#/definitions/DiskEncryptionSettings", + "description": "Gets the disk encryption settings.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Gets the disk name.", + "readOnly": true + }, + "caching": { + "$ref": "#/definitions/CachingTypes", + "description": "Gets the caching type.", + "readOnly": true + }, + "diskSizeGB": { + "type": "integer", + "format": "int32", + "description": "Gets the disk size in GB.", + "readOnly": true + }, + "managedDisk": { + "$ref": "#/definitions/ManagedDiskParameters", + "description": "Gets the managed disk details" + }, + "diskRestorePoint": { + "$ref": "#/definitions/DiskRestorePointAttributes", + "description": "Contains Disk Restore Point properties." + }, + "writeAcceleratorEnabled": { + "type": "boolean", + "description": "Shows true if the disk is write-accelerator enabled.", + "readOnly": true + } + } + }, + "RestorePointSourceVMStorageProfile": { + "type": "object", + "description": "Describes the storage profile.", + "properties": { + "osDisk": { + "$ref": "#/definitions/RestorePointSourceVMOSDisk", + "description": "Gets the OS disk of the VM captured at the time of the restore point creation." + }, + "dataDisks": { + "type": "array", + "description": "Gets the data disks of the VM captured at the time of the restore point creation.", + "items": { + "$ref": "#/definitions/RestorePointSourceVMDataDisk" + }, + "x-ms-identifiers": [ + "lun" + ] + }, + "diskControllerType": { + "$ref": "#/definitions/DiskControllerTypes", + "description": "Gets the disk controller type of the VM captured at the time of the restore point creation.", + "readOnly": true + } + } + }, + "RetrieveBootDiagnosticsDataResult": { + "type": "object", + "description": "The SAS URIs of the console screenshot and serial log blobs.", + "properties": { + "consoleScreenshotBlobUri": { + "type": "string", + "description": "The console screenshot blob URI", + "readOnly": true + }, + "serialConsoleLogBlobUri": { + "type": "string", + "description": "The serial console log blob URI.", + "readOnly": true + } + } + }, + "RollbackStatusInfo": { + "type": "object", + "description": "Information about rollback on failed VM instances after a OS Upgrade operation.", + "properties": { + "successfullyRolledbackInstanceCount": { + "type": "integer", + "format": "int32", + "description": "The number of instances which have been successfully rolled back.", + "readOnly": true + }, + "failedRolledbackInstanceCount": { + "type": "integer", + "format": "int32", + "description": "The number of instances which failed to rollback.", + "readOnly": true + }, + "rollbackError": { + "$ref": "./common.json#/definitions/ApiError", + "description": "Error details if OS rollback failed.", + "readOnly": true + } + } + }, + "RollingUpgradeActionType": { + "type": "string", + "description": "The last action performed on the rolling upgrade.", + "enum": [ + "Start", + "Cancel" + ], + "x-ms-enum": { + "name": "RollingUpgradeActionType", + "modelAsString": false + } + }, + "RollingUpgradePolicy": { + "type": "object", + "description": "The configuration parameters used while performing a rolling upgrade.", + "properties": { + "maxBatchInstancePercent": { + "type": "integer", + "format": "int32", + "description": "The maximum percent of total virtual machine instances that will be upgraded simultaneously by the rolling upgrade in one batch. As this is a maximum, unhealthy instances in previous or future batches can cause the percentage of instances in a batch to decrease to ensure higher reliability. The default value for this parameter is 20%.", + "minimum": 5, + "maximum": 100 + }, + "maxUnhealthyInstancePercent": { + "type": "integer", + "format": "int32", + "description": "The maximum percentage of the total virtual machine instances in the scale set that can be simultaneously unhealthy, either as a result of being upgraded, or by being found in an unhealthy state by the virtual machine health checks before the rolling upgrade aborts. This constraint will be checked prior to starting any batch. The default value for this parameter is 20%.", + "minimum": 5, + "maximum": 100 + }, + "maxUnhealthyUpgradedInstancePercent": { + "type": "integer", + "format": "int32", + "description": "The maximum percentage of upgraded virtual machine instances that can be found to be in an unhealthy state. This check will happen after each batch is upgraded. If this percentage is ever exceeded, the rolling update aborts. The default value for this parameter is 20%.", + "maximum": 100 + }, + "pauseTimeBetweenBatches": { + "type": "string", + "description": "The wait time between completing the update for all virtual machines in one batch and starting the next batch. The time duration should be specified in ISO 8601 format. The default value is 0 seconds (PT0S)." + }, + "enableCrossZoneUpgrade": { + "type": "boolean", + "description": "Allow VMSS to ignore AZ boundaries when constructing upgrade batches. Take into consideration the Update Domain and maxBatchInstancePercent to determine the batch size." + }, + "prioritizeUnhealthyInstances": { + "type": "boolean", + "description": "Upgrade all unhealthy instances in a scale set before any healthy instances." + }, + "rollbackFailedInstancesOnPolicyBreach": { + "type": "boolean", + "description": "Rollback failed instances to previous model if the Rolling Upgrade policy is violated." + }, + "maxSurge": { + "type": "boolean", + "description": "Create new virtual machines to upgrade the scale set, rather than updating the existing virtual machines. Existing virtual machines will be deleted once the new virtual machines are created for each batch." + } + } + }, + "RollingUpgradeProgressInfo": { + "type": "object", + "description": "Information about the number of virtual machine instances in each upgrade state.", + "properties": { + "successfulInstanceCount": { + "type": "integer", + "format": "int32", + "description": "The number of instances that have been successfully upgraded.", + "readOnly": true + }, + "failedInstanceCount": { + "type": "integer", + "format": "int32", + "description": "The number of instances that have failed to be upgraded successfully.", + "readOnly": true + }, + "inProgressInstanceCount": { + "type": "integer", + "format": "int32", + "description": "The number of instances that are currently being upgraded.", + "readOnly": true + }, + "pendingInstanceCount": { + "type": "integer", + "format": "int32", + "description": "The number of instances that have not yet begun to be upgraded.", + "readOnly": true + } + } + }, + "RollingUpgradeRunningStatus": { + "type": "object", + "description": "Information about the current running state of the overall upgrade.", + "properties": { + "code": { + "$ref": "#/definitions/RollingUpgradeStatusCode", + "description": "Code indicating the current status of the upgrade.", + "readOnly": true + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "Start time of the upgrade.", + "readOnly": true + }, + "lastAction": { + "$ref": "#/definitions/RollingUpgradeActionType", + "description": "The last action performed on the rolling upgrade.", + "readOnly": true + }, + "lastActionTime": { + "type": "string", + "format": "date-time", + "description": "Last action time of the upgrade.", + "readOnly": true + } + } + }, + "RollingUpgradeStatusCode": { + "type": "string", + "description": "Code indicating the current status of the upgrade.", + "enum": [ + "RollingForward", + "Cancelled", + "Completed", + "Faulted" + ], + "x-ms-enum": { + "name": "RollingUpgradeStatusCode", + "modelAsString": false + } + }, + "RollingUpgradeStatusInfo": { + "type": "object", + "description": "The status of the latest virtual machine scale set rolling upgrade.", + "properties": { + "properties": { + "$ref": "#/definitions/RollingUpgradeStatusInfoProperties", + "description": "The status of the latest virtual machine scale set rolling upgrade.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "RollingUpgradeStatusInfoProperties": { + "type": "object", + "description": "The status of the latest virtual machine scale set rolling upgrade.", + "properties": { + "policy": { + "$ref": "#/definitions/RollingUpgradePolicy", + "description": "The rolling upgrade policies applied for this upgrade.", + "readOnly": true + }, + "runningStatus": { + "$ref": "#/definitions/RollingUpgradeRunningStatus", + "description": "Information about the current running state of the overall upgrade.", + "readOnly": true + }, + "progress": { + "$ref": "#/definitions/RollingUpgradeProgressInfo", + "description": "Information about the number of virtual machine instances in each upgrade state.", + "readOnly": true + }, + "error": { + "$ref": "./common.json#/definitions/ApiError", + "description": "Error details for this upgrade, if there are any.", + "readOnly": true + } + } + }, + "RunCommandDocument": { + "type": "object", + "description": "Describes the properties of a Run Command.", + "properties": { + "script": { + "type": "array", + "description": "The script to be executed.", + "items": { + "type": "string" + } + }, + "parameters": { + "type": "array", + "description": "The parameters used by the script.", + "items": { + "$ref": "#/definitions/RunCommandParameterDefinition" + }, + "x-ms-identifiers": [ + "name", + "type" + ] + } + }, + "required": [ + "script" + ], + "allOf": [ + { + "$ref": "#/definitions/RunCommandDocumentBase" + } + ] + }, + "RunCommandDocumentBase": { + "type": "object", + "description": "Describes the properties of a Run Command metadata.", + "properties": { + "$schema": { + "type": "string", + "description": "The VM run command schema.", + "x-ms-client-name": "schema" + }, + "id": { + "type": "string", + "description": "The VM run command id." + }, + "osType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "The Operating System type." + }, + "label": { + "type": "string", + "description": "The VM run command label." + }, + "description": { + "type": "string", + "description": "The VM run command description." + } + }, + "required": [ + "$schema", + "id", + "osType", + "label", + "description" + ] + }, + "RunCommandInput": { + "type": "object", + "description": "Capture Virtual Machine parameters.", + "properties": { + "commandId": { + "type": "string", + "description": "The run command id." + }, + "script": { + "type": "array", + "description": "Optional. The script to be executed. When this value is given, the given script will override the default script of the command.", + "items": { + "type": "string" + } + }, + "parameters": { + "type": "array", + "description": "The run command parameters.", + "items": { + "$ref": "#/definitions/RunCommandInputParameter" + }, + "x-ms-identifiers": [ + "name" + ] + } + }, + "required": [ + "commandId" + ] + }, + "RunCommandInputParameter": { + "type": "object", + "description": "Describes the properties of a run command parameter.", + "properties": { + "name": { + "type": "string", + "description": "The run command parameter name." + }, + "value": { + "type": "string", + "description": "The run command parameter value." + } + }, + "required": [ + "name", + "value" + ] + }, + "RunCommandListResult": { + "type": "object", + "description": "The List Virtual Machine operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of virtual machine run commands.", + "items": { + "$ref": "#/definitions/RunCommandDocumentBase" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of run commands. Call ListNext() with this to fetch the next page of run commands." + } + }, + "required": [ + "value" + ] + }, + "RunCommandManagedIdentity": { + "type": "object", + "description": "Contains clientId or objectId (use only one, not both) of a user-assigned managed identity that has access to storage blob used in Run Command. Use an empty RunCommandManagedIdentity object in case of system-assigned identity. Make sure the Azure storage blob exists in case of scriptUri, and managed identity has been given access to blob's container with 'Storage Blob Data Reader' role assignment with scriptUri blob and 'Storage Blob Data Contributor' for Append blobs(outputBlobUri, errorBlobUri). In case of user assigned identity, make sure you add it under VM's identity. For more info on managed identity and Run Command, refer https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged.", + "properties": { + "clientId": { + "type": "string", + "description": "Client Id (GUID value) of the user-assigned managed identity. ObjectId should not be used if this is provided." + }, + "objectId": { + "type": "string", + "description": "Object Id (GUID value) of the user-assigned managed identity. ClientId should not be used if this is provided." + } + } + }, + "RunCommandParameterDefinition": { + "type": "object", + "description": "Describes the properties of a run command parameter.", + "properties": { + "name": { + "type": "string", + "description": "The run command parameter name." + }, + "type": { + "type": "string", + "description": "The run command parameter type." + }, + "defaultValue": { + "type": "string", + "description": "The run command parameter default value." + }, + "required": { + "type": "boolean", + "description": "The run command parameter required." + } + }, + "required": [ + "name", + "type" + ] + }, + "RunCommandResult": { + "type": "object", + "properties": { + "value": { + "type": "array", + "description": "Run command operation response.", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "x-ms-identifiers": [] + } + } + }, + "ScaleInPolicy": { + "type": "object", + "description": "Describes a scale-in policy for a virtual machine scale set.", + "properties": { + "rules": { + "type": "array", + "description": "The rules to be followed when scaling-in a virtual machine scale set.

Possible values are:

**Default** When a virtual machine scale set is scaled in, the scale set will first be balanced across zones if it is a zonal scale set. Then, it will be balanced across Fault Domains as far as possible. Within each Fault Domain, the virtual machines chosen for removal will be the newest ones that are not protected from scale-in.

**OldestVM** When a virtual machine scale set is being scaled-in, the oldest virtual machines that are not protected from scale-in will be chosen for removal. For zonal virtual machine scale sets, the scale set will first be balanced across zones. Within each zone, the oldest virtual machines that are not protected will be chosen for removal.

**NewestVM** When a virtual machine scale set is being scaled-in, the newest virtual machines that are not protected from scale-in will be chosen for removal. For zonal virtual machine scale sets, the scale set will first be balanced across zones. Within each zone, the newest virtual machines that are not protected will be chosen for removal.

", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetScaleInRules" + } + }, + "forceDeletion": { + "type": "boolean", + "description": "This property allows you to specify if virtual machines chosen for removal have to be force deleted when a virtual machine scale set is being scaled-in.(Feature in Preview)" + }, + "prioritizeUnhealthyVMs": { + "type": "boolean", + "description": "This property allows you to prioritize the deletion of unhealthy and inactive VMs when a virtual machine scale set is being scaled-in.(Feature in Preview)" + } + } + }, + "ScheduledEventsAdditionalPublishingTargets": { + "type": "object", + "properties": { + "eventGridAndResourceGraph": { + "$ref": "#/definitions/EventGridAndResourceGraph", + "description": "The configuration parameters used while creating eventGridAndResourceGraph Scheduled Event setting." + } + } + }, + "ScheduledEventsPolicy": { + "type": "object", + "description": "Specifies Redeploy, Reboot and ScheduledEventsAdditionalPublishingTargets Scheduled Event related configurations.", + "properties": { + "userInitiatedRedeploy": { + "$ref": "#/definitions/UserInitiatedRedeploy", + "description": "The configuration parameters used while creating userInitiatedRedeploy scheduled event setting creation." + }, + "userInitiatedReboot": { + "$ref": "#/definitions/UserInitiatedReboot", + "description": "The configuration parameters used while creating userInitiatedReboot scheduled event setting creation." + }, + "scheduledEventsAdditionalPublishingTargets": { + "$ref": "#/definitions/ScheduledEventsAdditionalPublishingTargets", + "description": "The configuration parameters used while publishing scheduledEventsAdditionalPublishingTargets." + } + } + }, + "ScheduledEventsProfile": { + "type": "object", + "properties": { + "terminateNotificationProfile": { + "$ref": "#/definitions/TerminateNotificationProfile", + "description": "Specifies Terminate Scheduled Event related configurations." + }, + "osImageNotificationProfile": { + "$ref": "#/definitions/OSImageNotificationProfile", + "description": "Specifies OS Image Scheduled Event related configurations." + } + } + }, + "SecurityEncryptionTypes": { + "type": "string", + "description": "Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. **Note:** It can be set for only Confidential VMs.", + "enum": [ + "VMGuestStateOnly", + "DiskWithVMGuestState", + "NonPersistedTPM" + ], + "x-ms-enum": { + "name": "SecurityEncryptionTypes", + "modelAsString": true, + "values": [ + { + "name": "VMGuestStateOnly", + "value": "VMGuestStateOnly" + }, + { + "name": "DiskWithVMGuestState", + "value": "DiskWithVMGuestState" + }, + { + "name": "NonPersistedTPM", + "value": "NonPersistedTPM" + } + ] + } + }, + "SecurityPostureReference": { + "type": "object", + "description": "Specifies the security posture to be used in the scale set. Minimum api-version: 2023-03-01", + "properties": { + "id": { + "type": "string", + "description": "The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|latest" + }, + "excludeExtensions": { + "type": "array", + "description": "The list of virtual machine extension names to exclude when applying the security posture.", + "items": { + "type": "string" + } + }, + "isOverridable": { + "type": "boolean", + "description": "Whether the security posture can be overridden by the user." + } + }, + "required": [ + "id" + ] + }, + "SecurityPostureReferenceUpdate": { + "type": "object", + "description": "Specifies the security posture to be used in the scale set. Minimum api-version: 2023-03-01", + "properties": { + "id": { + "type": "string", + "description": "The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|latest" + }, + "excludeExtensions": { + "type": "array", + "description": "The list of virtual machine extension names to exclude when applying the security posture.", + "items": { + "type": "string" + } + }, + "isOverridable": { + "type": "boolean", + "description": "Whether the security posture can be overridden by the user." + } + } + }, + "SecurityProfile": { + "type": "object", + "description": "Specifies the Security profile settings for the virtual machine or virtual machine scale set.", + "properties": { + "uefiSettings": { + "$ref": "#/definitions/UefiSettings", + "description": "Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01." + }, + "encryptionAtHost": { + "type": "boolean", + "description": "This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource." + }, + "securityType": { + "$ref": "#/definitions/SecurityTypes", + "description": "Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set." + }, + "encryptionIdentity": { + "$ref": "#/definitions/EncryptionIdentity", + "description": "Specifies the Managed Identity used by ADE to get access token for keyvault operations." + }, + "proxyAgentSettings": { + "$ref": "#/definitions/ProxyAgentSettings", + "description": "Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01." + } + } + }, + "SecurityTypes": { + "type": "string", + "description": "Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.", + "enum": [ + "TrustedLaunch", + "ConfidentialVM" + ], + "x-ms-enum": { + "name": "SecurityTypes", + "modelAsString": true, + "values": [ + { + "name": "TrustedLaunch", + "value": "TrustedLaunch" + }, + { + "name": "ConfidentialVM", + "value": "ConfidentialVM" + } + ] + } + }, + "ServiceArtifactReference": { + "type": "object", + "description": "Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01", + "properties": { + "id": { + "type": "string", + "description": "The service artifact reference id in the form of /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/serviceArtifacts/{serviceArtifactName}/vmArtifactsProfiles/{vmArtifactsProfilesName}" + } + } + }, + "SettingNames": { + "type": "string", + "description": "Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.", + "enum": [ + "AutoLogon", + "FirstLogonCommands" + ], + "x-ms-enum": { + "name": "SettingNames", + "modelAsString": false + } + }, + "Sku": { + "type": "object", + "description": "Describes a virtual machine scale set sku. NOTE: If the new VM SKU is not supported on the hardware the scale set is currently on, you need to deallocate the VMs in the scale set before you modify the SKU name.", + "properties": { + "name": { + "type": "string", + "description": "The sku name." + }, + "tier": { + "type": "string", + "description": "Specifies the tier of virtual machines in a scale set.

Possible Values:

**Standard**

**Basic**" + }, + "capacity": { + "type": "integer", + "format": "int64", + "description": "Specifies the number of virtual machines in the scale set." + } + } + }, + "SkuProfile": { + "type": "object", + "description": "Specifies the sku profile for the virtual machine scale set. With this property the customer is able to specify a list of VM sizes and an allocation strategy.", + "properties": { + "vmSizes": { + "type": "array", + "description": "Specifies the VM sizes for the virtual machine scale set.", + "items": { + "$ref": "#/definitions/SkuProfileVMSize" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "allocationStrategy": { + "$ref": "#/definitions/AllocationStrategy", + "description": "Specifies the allocation strategy for the virtual machine scale set based on which the VMs will be allocated." + } + } + }, + "SkuProfileVMSize": { + "type": "object", + "description": "Specifies the VM Size.", + "properties": { + "name": { + "type": "string", + "description": "Specifies the name of the VM Size." + }, + "rank": { + "type": "integer", + "format": "int32", + "description": "Specifies the rank (a.k.a priority) associated with the VM Size." + } + } + }, + "SpotRestorePolicy": { + "type": "object", + "description": "Specifies the Spot-Try-Restore properties for the virtual machine scale set. With this property customer can enable or disable automatic restore of the evicted Spot VMSS VM instances opportunistically based on capacity availability and pricing constraint.", + "properties": { + "enabled": { + "type": "boolean", + "description": "Enables the Spot-Try-Restore feature where evicted VMSS SPOT instances will be tried to be restored opportunistically based on capacity availability and pricing constraints" + }, + "restoreTimeout": { + "type": "string", + "description": "Timeout value expressed as an ISO 8601 time duration after which the platform will not try to restore the VMSS SPOT instances" + } + } + }, + "SshConfiguration": { + "type": "object", + "description": "SSH configuration for Linux based VMs running on Azure", + "properties": { + "publicKeys": { + "type": "array", + "description": "The list of SSH public keys used to authenticate with linux based VMs.", + "items": { + "$ref": "#/definitions/SshPublicKey" + }, + "x-ms-identifiers": [ + "path" + ] + } + } + }, + "SshEncryptionTypes": { + "type": "string", + "description": "The encryption type of the SSH keys to be generated. See SshEncryptionTypes for possible set of values. If not provided, will default to RSA", + "enum": [ + "RSA", + "Ed25519" + ], + "x-ms-enum": { + "name": "SshEncryptionTypes", + "modelAsString": true, + "values": [ + { + "name": "RSA", + "value": "RSA" + }, + { + "name": "Ed25519", + "value": "Ed25519" + } + ] + } + }, + "SshGenerateKeyPairInputParameters": { + "type": "object", + "description": "Parameters for GenerateSshKeyPair.", + "properties": { + "encryptionType": { + "$ref": "#/definitions/SshEncryptionTypes", + "description": "The encryption type of the SSH keys to be generated. See SshEncryptionTypes for possible set of values. If not provided, will default to RSA" + } + } + }, + "SshPublicKey": { + "type": "object", + "description": "Contains information about SSH certificate public key and the path on the Linux VM where the public key is placed.", + "properties": { + "path": { + "type": "string", + "description": "Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys" + }, + "keyData": { + "type": "string", + "description": "SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed)." + } + } + }, + "SshPublicKeyGenerateKeyPairResult": { + "type": "object", + "description": "Response from generation of an SSH key pair.", + "properties": { + "privateKey": { + "type": "string", + "description": "Private key portion of the key pair used to authenticate to a virtual machine through ssh. The private key is returned in RFC3447 format and should be treated as a secret." + }, + "publicKey": { + "type": "string", + "description": "Public key portion of the key pair used to authenticate to a virtual machine through ssh. The public key is in ssh-rsa format." + }, + "id": { + "type": "string", + "description": "The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/sshPublicKeys/{SshPublicKeyName}" + } + }, + "required": [ + "privateKey", + "publicKey", + "id" + ] + }, + "SshPublicKeyResource": { + "type": "object", + "description": "Specifies information about the SSH public key.", + "properties": { + "properties": { + "$ref": "#/definitions/SshPublicKeyResourceProperties", + "description": "Properties of the SSH public key.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "SshPublicKeyResourceProperties": { + "type": "object", + "description": "Properties of the SSH public key.", + "properties": { + "publicKey": { + "type": "string", + "description": "SSH public key used to authenticate to a virtual machine through ssh. If this property is not initially provided when the resource is created, the publicKey property will be populated when generateKeyPair is called. If the public key is provided upon resource creation, the provided public key needs to be at least 2048-bit and in ssh-rsa format." + } + } + }, + "SshPublicKeyUpdateResource": { + "type": "object", + "description": "Specifies information about the SSH public key.", + "properties": { + "properties": { + "$ref": "#/definitions/SshPublicKeyResourceProperties", + "description": "Properties of the SSH public key.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResource" + } + ] + }, + "SshPublicKeysGroupListResult": { + "type": "object", + "description": "The list SSH public keys operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of SSH public keys.", + "items": { + "$ref": "#/definitions/SshPublicKeyResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The URI to fetch the next page of SSH public keys. Call ListNext() with this URI to fetch the next page of SSH public keys." + } + }, + "required": [ + "value" + ] + }, + "StatusLevelTypes": { + "type": "string", + "description": "The level code.", + "enum": [ + "Info", + "Warning", + "Error" + ], + "x-ms-enum": { + "name": "StatusLevelTypes", + "modelAsString": false + } + }, + "StorageAccountTypes": { + "type": "string", + "description": "Specifies the storage account type for the managed disk. Managed OS disk storage account type can only be set when you create the scale set. NOTE: UltraSSD_LRS can only be used with data disks. It cannot be used with OS Disk. Standard_LRS uses Standard HDD. StandardSSD_LRS uses Standard SSD. Premium_LRS uses Premium SSD. UltraSSD_LRS uses Ultra disk. Premium_ZRS uses Premium SSD zone redundant storage. StandardSSD_ZRS uses Standard SSD zone redundant storage. For more information regarding disks supported for Windows Virtual Machines, refer to https://docs.microsoft.com/azure/virtual-machines/windows/disks-types and, for Linux Virtual Machines, refer to https://docs.microsoft.com/azure/virtual-machines/linux/disks-types", + "enum": [ + "Standard_LRS", + "Premium_LRS", + "StandardSSD_LRS", + "UltraSSD_LRS", + "Premium_ZRS", + "StandardSSD_ZRS", + "PremiumV2_LRS" + ], + "x-ms-enum": { + "name": "StorageAccountTypes", + "modelAsString": true, + "values": [ + { + "name": "Standard_LRS", + "value": "Standard_LRS" + }, + { + "name": "Premium_LRS", + "value": "Premium_LRS" + }, + { + "name": "StandardSSD_LRS", + "value": "StandardSSD_LRS" + }, + { + "name": "UltraSSD_LRS", + "value": "UltraSSD_LRS" + }, + { + "name": "Premium_ZRS", + "value": "Premium_ZRS" + }, + { + "name": "StandardSSD_ZRS", + "value": "StandardSSD_ZRS" + }, + { + "name": "PremiumV2_LRS", + "value": "PremiumV2_LRS" + } + ] + } + }, + "StorageProfile": { + "type": "object", + "description": "Specifies the storage settings for the virtual machine disks.", + "properties": { + "imageReference": { + "$ref": "#/definitions/ImageReference", + "description": "Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations." + }, + "osDisk": { + "$ref": "#/definitions/OSDisk", + "description": "Specifies information about the operating system disk used by the virtual machine. For more information about disks, see [About disks and VHDs for Azure virtual machines](https://docs.microsoft.com/azure/virtual-machines/managed-disks-overview)." + }, + "dataDisks": { + "type": "array", + "description": "Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see [About disks and VHDs for Azure virtual machines](https://docs.microsoft.com/azure/virtual-machines/managed-disks-overview).", + "items": { + "$ref": "#/definitions/DataDisk" + }, + "x-ms-identifiers": [ + "lun" + ] + }, + "diskControllerType": { + "$ref": "#/definitions/DiskControllerTypes", + "description": "Specifies the disk controller type configured for the VM. **Note:** This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01." + }, + "alignRegionalDisksToVMZone": { + "type": "boolean", + "description": "Specifies whether the regional disks should be aligned/moved to the VM zone. This is applicable only for VMs with placement property set. Please note that this change is irreversible. Minimum api-version: 2024-11-01." + } + } + }, + "SubResourceWithColocationStatus": { + "type": "object", + "properties": { + "colocationStatus": { + "$ref": "#/definitions/InstanceViewStatus", + "description": "Describes colocation status of a resource in the Proximity Placement Group." + } + }, + "allOf": [ + { + "$ref": "./common.json#/definitions/SubResource" + } + ] + }, + "TerminateNotificationProfile": { + "type": "object", + "properties": { + "notBeforeTimeout": { + "type": "string", + "description": "Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)" + }, + "enable": { + "type": "boolean", + "description": "Specifies whether the Terminate Scheduled event is enabled or disabled." + } + } + }, + "ThrottledRequestsInput": { + "type": "object", + "description": "Api request input for LogAnalytics getThrottledRequests Api.", + "allOf": [ + { + "$ref": "#/definitions/LogAnalyticsInputBase" + } + ] + }, + "TypeSpec.Http.OkResponse": { + "type": "object", + "description": "The request has succeeded." + }, + "UefiSettings": { + "type": "object", + "description": "Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.", + "properties": { + "secureBootEnabled": { + "type": "boolean", + "description": "Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01." + }, + "vTpmEnabled": { + "type": "boolean", + "description": "Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01." + } + } + }, + "UpdateResource": { + "type": "object", + "description": "The Update Resource model definition.", + "properties": { + "tags": { + "type": "object", + "description": "Resource tags", + "additionalProperties": { + "type": "string" + } + } + } + }, + "UpgradeMode": { + "type": "string", + "description": "Specifies the mode of an upgrade to virtual machines in the scale set.

Possible values are:

**Manual** - You control the application of updates to virtual machines in the scale set. You do this by using the manualUpgrade action.

**Automatic** - All virtual machines in the scale set are automatically updated at the same time.", + "enum": [ + "Automatic", + "Manual", + "Rolling" + ], + "x-ms-enum": { + "name": "UpgradeMode", + "modelAsString": false + } + }, + "UpgradeOperationHistoricalStatusInfo": { + "type": "object", + "description": "Virtual Machine Scale Set OS Upgrade History operation response.", + "properties": { + "properties": { + "$ref": "#/definitions/UpgradeOperationHistoricalStatusInfoProperties", + "description": "Information about the properties of the upgrade operation.", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Resource type", + "readOnly": true + }, + "location": { + "type": "string", + "description": "Resource location", + "readOnly": true + } + } + }, + "UpgradeOperationHistoricalStatusInfoProperties": { + "type": "object", + "description": "Describes each OS upgrade on the Virtual Machine Scale Set.", + "properties": { + "runningStatus": { + "$ref": "#/definitions/UpgradeOperationHistoryStatus", + "description": "Information about the overall status of the upgrade operation.", + "readOnly": true + }, + "progress": { + "$ref": "#/definitions/RollingUpgradeProgressInfo", + "description": "Counts of the VMs in each state.", + "readOnly": true + }, + "error": { + "$ref": "./common.json#/definitions/ApiError", + "description": "Error Details for this upgrade if there are any.", + "readOnly": true + }, + "startedBy": { + "$ref": "#/definitions/UpgradeOperationInvoker", + "description": "Invoker of the Upgrade Operation", + "readOnly": true + }, + "targetImageReference": { + "$ref": "#/definitions/ImageReference", + "description": "Image Reference details", + "readOnly": true + }, + "rollbackInfo": { + "$ref": "#/definitions/RollbackStatusInfo", + "description": "Information about OS rollback if performed", + "readOnly": true + } + } + }, + "UpgradeOperationHistoryStatus": { + "type": "object", + "description": "Information about the current running state of the overall upgrade.", + "properties": { + "code": { + "$ref": "#/definitions/UpgradeState", + "description": "Code indicating the current status of the upgrade.", + "readOnly": true + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "Start time of the upgrade.", + "readOnly": true + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "End time of the upgrade.", + "readOnly": true + } + } + }, + "UpgradeOperationInvoker": { + "type": "string", + "description": "Invoker of the Upgrade Operation", + "enum": [ + "Unknown", + "User", + "Platform" + ], + "x-ms-enum": { + "name": "UpgradeOperationInvoker", + "modelAsString": false + } + }, + "UpgradePolicy": { + "type": "object", + "description": "Describes an upgrade policy - automatic, manual, or rolling.", + "properties": { + "mode": { + "$ref": "#/definitions/UpgradeMode", + "description": "Specifies the mode of an upgrade to virtual machines in the scale set.

Possible values are:

**Manual** - You control the application of updates to virtual machines in the scale set. You do this by using the manualUpgrade action.

**Automatic** - All virtual machines in the scale set are automatically updated at the same time." + }, + "rollingUpgradePolicy": { + "$ref": "#/definitions/RollingUpgradePolicy", + "description": "The configuration parameters used while performing a rolling upgrade." + }, + "automaticOSUpgradePolicy": { + "$ref": "#/definitions/AutomaticOSUpgradePolicy", + "description": "Configuration parameters used for performing automatic OS Upgrade." + } + } + }, + "UpgradeState": { + "type": "string", + "description": "Code indicating the current status of the upgrade.", + "enum": [ + "RollingForward", + "Cancelled", + "Completed", + "Faulted" + ], + "x-ms-enum": { + "name": "UpgradeState", + "modelAsString": false + } + }, + "Usage": { + "type": "object", + "description": "Describes Compute Resource Usage.", + "properties": { + "unit": { + "type": "string", + "description": "An enum describing the unit of usage measurement.", + "enum": [ + "Count" + ], + "x-ms-enum": { + "modelAsString": false + } + }, + "currentValue": { + "type": "integer", + "format": "int32", + "description": "The current usage of the resource." + }, + "limit": { + "type": "integer", + "format": "int64", + "description": "The maximum permitted usage of the resource." + }, + "name": { + "$ref": "#/definitions/UsageName", + "description": "The name of the type of usage." + } + }, + "required": [ + "unit", + "currentValue", + "limit", + "name" + ] + }, + "UsageName": { + "type": "object", + "description": "The Usage Names.", + "properties": { + "value": { + "type": "string", + "description": "The name of the resource." + }, + "localizedValue": { + "type": "string", + "description": "The localized name of the resource." + } + } + }, + "UserAssignedIdentitiesValue": { + "type": "object", + "properties": { + "principalId": { + "type": "string", + "description": "The principal id of user assigned identity.", + "readOnly": true + }, + "clientId": { + "type": "string", + "description": "The client id of user assigned identity.", + "readOnly": true + } + } + }, + "UserInitiatedReboot": { + "type": "object", + "description": "Specifies Reboot related Scheduled Event related configurations.", + "properties": { + "automaticallyApprove": { + "type": "boolean", + "description": "Specifies Reboot Scheduled Event related configurations." + } + } + }, + "UserInitiatedRedeploy": { + "type": "object", + "description": "Specifies Redeploy related Scheduled Event related configurations.", + "properties": { + "automaticallyApprove": { + "type": "boolean", + "description": "Specifies Redeploy Scheduled Event related configurations." + } + } + }, + "VMDiskSecurityProfile": { + "type": "object", + "description": "Specifies the security profile settings for the managed disk. **Note:** It can only be set for Confidential VMs.", + "properties": { + "securityEncryptionType": { + "$ref": "#/definitions/SecurityEncryptionTypes", + "description": "Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. **Note:** It can be set for only Confidential VMs." + }, + "diskEncryptionSet": { + "$ref": "#/definitions/DiskEncryptionSetParameters", + "description": "Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob." + } + } + }, + "VMGalleryApplication": { + "type": "object", + "description": "Specifies the required information to reference a compute gallery application version", + "properties": { + "tags": { + "type": "string", + "description": "Optional, Specifies a passthrough value for more generic context." + }, + "order": { + "type": "integer", + "format": "int32", + "description": "Optional, Specifies the order in which the packages have to be installed" + }, + "packageReferenceId": { + "type": "string", + "description": "Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}" + }, + "configurationReference": { + "type": "string", + "description": "Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided" + }, + "treatFailureAsDeploymentFailure": { + "type": "boolean", + "description": "Optional, If true, any failure for any operation in the VmApplication will fail the deployment" + }, + "enableAutomaticUpgrade": { + "type": "boolean", + "description": "If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS" + } + }, + "required": [ + "packageReferenceId" + ] + }, + "VMGuestPatchClassificationLinux": { + "type": "string", + "enum": [ + "Critical", + "Security", + "Other" + ], + "x-ms-enum": { + "name": "VMGuestPatchClassificationLinux", + "modelAsString": true, + "values": [ + { + "name": "Critical", + "value": "Critical" + }, + { + "name": "Security", + "value": "Security" + }, + { + "name": "Other", + "value": "Other" + } + ] + } + }, + "VMGuestPatchClassificationWindows": { + "type": "string", + "enum": [ + "Critical", + "Security", + "UpdateRollUp", + "FeaturePack", + "ServicePack", + "Definition", + "Tools", + "Updates" + ], + "x-ms-enum": { + "name": "VMGuestPatchClassificationWindows", + "modelAsString": true, + "values": [ + { + "name": "Critical", + "value": "Critical" + }, + { + "name": "Security", + "value": "Security" + }, + { + "name": "UpdateRollUp", + "value": "UpdateRollUp" + }, + { + "name": "FeaturePack", + "value": "FeaturePack" + }, + { + "name": "ServicePack", + "value": "ServicePack" + }, + { + "name": "Definition", + "value": "Definition" + }, + { + "name": "Tools", + "value": "Tools" + }, + { + "name": "Updates", + "value": "Updates" + } + ] + } + }, + "VMGuestPatchRebootBehavior": { + "type": "string", + "description": "Describes the reboot requirements of the patch.", + "enum": [ + "Unknown", + "NeverReboots", + "AlwaysRequiresReboot", + "CanRequestReboot" + ], + "x-ms-enum": { + "name": "VMGuestPatchRebootBehavior", + "modelAsString": true, + "values": [ + { + "name": "Unknown", + "value": "Unknown" + }, + { + "name": "NeverReboots", + "value": "NeverReboots" + }, + { + "name": "AlwaysRequiresReboot", + "value": "AlwaysRequiresReboot" + }, + { + "name": "CanRequestReboot", + "value": "CanRequestReboot" + } + ] + } + }, + "VMGuestPatchRebootSetting": { + "type": "string", + "description": "Defines when it is acceptable to reboot a VM during a software update operation.", + "enum": [ + "IfRequired", + "Never", + "Always" + ], + "x-ms-enum": { + "name": "VMGuestPatchRebootSetting", + "modelAsString": true, + "values": [ + { + "name": "IfRequired", + "value": "IfRequired" + }, + { + "name": "Never", + "value": "Never" + }, + { + "name": "Always", + "value": "Always" + } + ] + } + }, + "VMGuestPatchRebootStatus": { + "type": "string", + "description": "The reboot state of the VM following completion of the operation.", + "enum": [ + "Unknown", + "NotNeeded", + "Required", + "Started", + "Failed", + "Completed" + ], + "x-ms-enum": { + "name": "VMGuestPatchRebootStatus", + "modelAsString": true, + "values": [ + { + "name": "Unknown", + "value": "Unknown" + }, + { + "name": "NotNeeded", + "value": "NotNeeded" + }, + { + "name": "Required", + "value": "Required" + }, + { + "name": "Started", + "value": "Started" + }, + { + "name": "Failed", + "value": "Failed" + }, + { + "name": "Completed", + "value": "Completed" + } + ] + } + }, + "VMScaleSetConvertToSinglePlacementGroupInput": { + "type": "object", + "properties": { + "activePlacementGroupId": { + "type": "string", + "description": "Id of the placement group in which you want future virtual machine instances to be placed. To query placement group Id, please use Virtual Machine Scale Set VMs - Get API. If not provided, the platform will choose one with maximum number of virtual machine instances." + } + } + }, + "VMSizeProperties": { + "type": "object", + "description": "Specifies VM Size Property settings on the virtual machine.", + "properties": { + "vCPUsAvailable": { + "type": "integer", + "format": "int32", + "description": "Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of [List all available virtual machine sizes in a region](https://docs.microsoft.com/en-us/rest/api/compute/resource-skus/list)." + }, + "vCPUsPerCore": { + "type": "integer", + "format": "int32", + "description": "Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of [List all available virtual machine sizes in a region](https://docs.microsoft.com/en-us/rest/api/compute/resource-skus/list). **Setting this property to 1 also means that hyper-threading is disabled.**" + } + } + }, + "VaultCertificate": { + "type": "object", + "description": "Describes a single certificate reference in a Key Vault, and where the certificate should reside on the VM.", + "properties": { + "certificateUrl": { + "type": "string", + "description": "This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see [Add a key or secret to the key vault](https://docs.microsoft.com/azure/key-vault/key-vault-get-started/#add). In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8:

{
\"data\":\"\",
\"dataType\":\"pfx\",
\"password\":\"\"
}
To install certificates on a virtual machine it is recommended to use the [Azure Key Vault virtual machine extension for Linux](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-linux) or the [Azure Key Vault virtual machine extension for Windows](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-windows)." + }, + "certificateStore": { + "type": "string", + "description": "For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted." + } + } + }, + "VaultSecretGroup": { + "type": "object", + "description": "Describes a set of certificates which are all in the same Key Vault.", + "properties": { + "sourceVault": { + "$ref": "./common.json#/definitions/SubResource", + "description": "The relative URL of the Key Vault containing all of the certificates in VaultCertificates." + }, + "vaultCertificates": { + "type": "array", + "description": "The list of key vault references in SourceVault which contain certificates.", + "items": { + "$ref": "#/definitions/VaultCertificate" + }, + "x-ms-identifiers": [ + "certificateUrl" + ] + } + } + }, + "VirtualHardDisk": { + "type": "object", + "description": "Describes the uri of a disk.", + "properties": { + "uri": { + "type": "string", + "description": "Specifies the virtual hard disk's uri." + } + } + }, + "VirtualMachine": { + "type": "object", + "description": "Describes a Virtual Machine.", + "properties": { + "properties": { + "$ref": "#/definitions/VirtualMachineProperties", + "description": "Describes the properties of a Virtual Machine.", + "x-ms-client-flatten": true + }, + "plan": { + "$ref": "#/definitions/Plan", + "description": "Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click **Want to deploy programmatically, Get Started ->**. Enter any required information and then click **Save**." + }, + "resources": { + "type": "array", + "description": "The virtual machine child extension resources.", + "items": { + "$ref": "#/definitions/VirtualMachineExtension" + }, + "readOnly": true + }, + "identity": { + "$ref": "#/definitions/VirtualMachineIdentity", + "description": "The identity of the virtual machine, if configured." + }, + "zones": { + "type": "array", + "description": "The availability zones.", + "items": { + "type": "string" + } + }, + "extendedLocation": { + "$ref": "./common.json#/definitions/ExtendedLocation", + "description": "The extended location of the Virtual Machine." + }, + "managedBy": { + "type": "string", + "description": "ManagedBy is set to Virtual Machine Scale Set(VMSS) flex ARM resourceID, if the VM is part of the VMSS. This property is used by platform for internal resource group delete optimization.", + "readOnly": true + }, + "etag": { + "type": "string", + "description": "Etag is property returned in Create/Update/Get response of the VM, so that customer can supply it in the header to ensure optimistic updates.", + "readOnly": true + }, + "placement": { + "$ref": "#/definitions/Placement", + "description": "Placement section specifies the user-defined constraints for virtual machine hardware placement. This property cannot be changed once VM is provisioned. Minimum api-version: 2024-11-01." + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "VirtualMachineAgentInstanceView": { + "type": "object", + "description": "The instance view of the VM Agent running on the virtual machine.", + "properties": { + "vmAgentVersion": { + "type": "string", + "description": "The VM Agent full version." + }, + "extensionHandlers": { + "type": "array", + "description": "The virtual machine extension handler instance view.", + "items": { + "$ref": "#/definitions/VirtualMachineExtensionHandlerInstanceView" + }, + "x-ms-identifiers": [] + }, + "statuses": { + "type": "array", + "description": "The resource status information.", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "x-ms-identifiers": [] + } + } + }, + "VirtualMachineAssessPatchesResult": { + "type": "object", + "description": "Describes the properties of an AssessPatches result.", + "properties": { + "status": { + "$ref": "#/definitions/PatchOperationStatus", + "description": "The overall success or failure status of the operation. It remains \"InProgress\" until the operation completes. At that point it will become \"Unknown\", \"Failed\", \"Succeeded\", or \"CompletedWithWarnings.\"", + "readOnly": true + }, + "assessmentActivityId": { + "type": "string", + "description": "The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.", + "readOnly": true + }, + "rebootPending": { + "type": "boolean", + "description": "The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.", + "readOnly": true + }, + "criticalAndSecurityPatchCount": { + "type": "integer", + "format": "int32", + "description": "The number of critical or security patches that have been detected as available and not yet installed.", + "readOnly": true + }, + "otherPatchCount": { + "type": "integer", + "format": "int32", + "description": "The number of all available patches excluding critical and security.", + "readOnly": true + }, + "startDateTime": { + "type": "string", + "format": "date-time", + "description": "The UTC timestamp when the operation began.", + "readOnly": true + }, + "availablePatches": { + "type": "array", + "description": "The list of patches that have been detected as available for installation.", + "items": { + "$ref": "#/definitions/VirtualMachineSoftwarePatchProperties" + }, + "readOnly": true, + "x-ms-identifiers": [ + "patchId" + ] + }, + "error": { + "$ref": "./common.json#/definitions/ApiError", + "description": "The errors that were encountered during execution of the operation. The details array contains the list of them.", + "readOnly": true + } + } + }, + "VirtualMachineCaptureParameters": { + "type": "object", + "description": "Capture Virtual Machine parameters.", + "properties": { + "vhdPrefix": { + "type": "string", + "description": "The captured virtual hard disk's name prefix." + }, + "destinationContainerName": { + "type": "string", + "description": "The destination container name." + }, + "overwriteVhds": { + "type": "boolean", + "description": "Specifies whether to overwrite the destination virtual hard disk, in case of conflict." + } + }, + "required": [ + "vhdPrefix", + "destinationContainerName", + "overwriteVhds" + ] + }, + "VirtualMachineCaptureResult": { + "type": "object", + "description": "Output of virtual machine capture operation.", + "properties": { + "$schema": { + "type": "string", + "description": "the schema of the captured virtual machine", + "readOnly": true, + "x-ms-client-name": "schema" + }, + "contentVersion": { + "type": "string", + "description": "the version of the content", + "readOnly": true + }, + "parameters": { + "description": "parameters of the captured virtual machine", + "readOnly": true + }, + "resources": { + "type": "array", + "description": "a list of resource items of the captured virtual machine", + "items": {}, + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "./common.json#/definitions/SubResource" + } + ] + }, + "VirtualMachineEvictionPolicyTypes": { + "type": "string", + "description": "Specifies the eviction policy for the Azure Spot VM/VMSS", + "enum": [ + "Deallocate", + "Delete" + ], + "x-ms-enum": { + "name": "VirtualMachineEvictionPolicyTypes", + "modelAsString": true, + "values": [ + { + "name": "Deallocate", + "value": "Deallocate" + }, + { + "name": "Delete", + "value": "Delete" + } + ] + } + }, + "VirtualMachineExtension": { + "type": "object", + "description": "Describes a Virtual Machine Extension.", + "properties": { + "properties": { + "$ref": "#/definitions/VirtualMachineExtensionProperties", + "description": "Describes the properties of a Virtual Machine Extension.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "VirtualMachineExtensionHandlerInstanceView": { + "type": "object", + "description": "The instance view of a virtual machine extension handler.", + "properties": { + "type": { + "type": "string", + "description": "Specifies the type of the extension; an example is \"CustomScriptExtension\"." + }, + "typeHandlerVersion": { + "type": "string", + "description": "Specifies the version of the script handler." + }, + "status": { + "$ref": "#/definitions/InstanceViewStatus", + "description": "The extension handler status." + } + } + }, + "VirtualMachineExtensionImage": { + "type": "object", + "description": "Describes a Virtual Machine Extension Image.", + "properties": { + "properties": { + "$ref": "#/definitions/VirtualMachineExtensionImageProperties", + "description": "Describes the properties of a Virtual Machine Extension Image.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "VirtualMachineExtensionImageProperties": { + "type": "object", + "description": "Describes the properties of a Virtual Machine Extension Image.", + "properties": { + "operatingSystem": { + "type": "string", + "description": "The operating system this extension supports." + }, + "computeRole": { + "type": "string", + "description": "The type of role (IaaS or PaaS) this extension supports." + }, + "handlerSchema": { + "type": "string", + "description": "The schema defined by publisher, where extension consumers should provide settings in a matching schema." + }, + "vmScaleSetEnabled": { + "type": "boolean", + "description": "Whether the extension can be used on xRP VMScaleSets. By default existing extensions are usable on scalesets, but there might be cases where a publisher wants to explicitly indicate the extension is only enabled for CRP VMs but not VMSS." + }, + "supportsMultipleExtensions": { + "type": "boolean", + "description": "Whether the handler can support multiple extensions." + } + }, + "required": [ + "operatingSystem", + "computeRole", + "handlerSchema" + ] + }, + "VirtualMachineExtensionInstanceView": { + "type": "object", + "description": "The instance view of a virtual machine extension.", + "properties": { + "name": { + "type": "string", + "description": "The virtual machine extension name." + }, + "type": { + "type": "string", + "description": "Specifies the type of the extension; an example is \"CustomScriptExtension\"." + }, + "typeHandlerVersion": { + "type": "string", + "description": "Specifies the version of the script handler." + }, + "substatuses": { + "type": "array", + "description": "The resource status information.", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "x-ms-identifiers": [] + }, + "statuses": { + "type": "array", + "description": "The resource status information.", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "x-ms-identifiers": [] + } + } + }, + "VirtualMachineExtensionProperties": { + "type": "object", + "description": "Describes the properties of a Virtual Machine Extension.", + "properties": { + "forceUpdateTag": { + "type": "string", + "description": "How the extension handler should be forced to update even if the extension configuration has not changed." + }, + "publisher": { + "type": "string", + "description": "The name of the extension handler publisher." + }, + "type": { + "type": "string", + "description": "Specifies the type of the extension; an example is \"CustomScriptExtension\"." + }, + "typeHandlerVersion": { + "type": "string", + "description": "Specifies the version of the script handler." + }, + "autoUpgradeMinorVersion": { + "type": "boolean", + "description": "Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true." + }, + "enableAutomaticUpgrade": { + "type": "boolean", + "description": "Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available." + }, + "settings": { + "description": "Json formatted public settings for the extension." + }, + "protectedSettings": { + "description": "The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all." + }, + "provisioningState": { + "type": "string", + "description": "The provisioning state, which only appears in the response.", + "readOnly": true + }, + "instanceView": { + "$ref": "#/definitions/VirtualMachineExtensionInstanceView", + "description": "The virtual machine extension instance view." + }, + "suppressFailures": { + "type": "boolean", + "description": "Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false." + }, + "protectedSettingsFromKeyVault": { + "$ref": "#/definitions/KeyVaultSecretReference", + "description": "The extensions protected settings that are passed by reference, and consumed from key vault" + }, + "provisionAfterExtensions": { + "type": "array", + "description": "Collection of extension names after which this extension needs to be provisioned.", + "items": { + "type": "string" + } + } + } + }, + "VirtualMachineExtensionUpdate": { + "type": "object", + "description": "Describes a Virtual Machine Extension.", + "properties": { + "properties": { + "$ref": "#/definitions/VirtualMachineExtensionUpdateProperties", + "description": "Describes the properties of a Virtual Machine Extension.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResource" + } + ] + }, + "VirtualMachineExtensionUpdateProperties": { + "type": "object", + "description": "Describes the properties of a Virtual Machine Extension.", + "properties": { + "forceUpdateTag": { + "type": "string", + "description": "How the extension handler should be forced to update even if the extension configuration has not changed." + }, + "publisher": { + "type": "string", + "description": "The name of the extension handler publisher." + }, + "type": { + "type": "string", + "description": "Specifies the type of the extension; an example is \"CustomScriptExtension\"." + }, + "typeHandlerVersion": { + "type": "string", + "description": "Specifies the version of the script handler." + }, + "autoUpgradeMinorVersion": { + "type": "boolean", + "description": "Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true." + }, + "enableAutomaticUpgrade": { + "type": "boolean", + "description": "Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available." + }, + "settings": { + "description": "Json formatted public settings for the extension." + }, + "protectedSettings": { + "description": "The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all." + }, + "suppressFailures": { + "type": "boolean", + "description": "Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false." + }, + "protectedSettingsFromKeyVault": { + "$ref": "#/definitions/KeyVaultSecretReference", + "description": "The extensions protected settings that are passed by reference, and consumed from key vault" + } + } + }, + "VirtualMachineExtensionsListResult": { + "type": "object", + "description": "The List Extension operation response", + "properties": { + "value": { + "type": "array", + "description": "The list of extensions", + "items": { + "$ref": "#/definitions/VirtualMachineExtension" + } + } + } + }, + "VirtualMachineHealthStatus": { + "type": "object", + "description": "The health status of the VM.", + "properties": { + "status": { + "$ref": "#/definitions/InstanceViewStatus", + "description": "The health status information for the VM.", + "readOnly": true + } + } + }, + "VirtualMachineIdentity": { + "type": "object", + "description": "Identity for the virtual machine.", + "properties": { + "principalId": { + "type": "string", + "description": "The principal id of virtual machine identity. This property will only be provided for a system assigned identity.", + "readOnly": true + }, + "tenantId": { + "type": "string", + "description": "The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.", + "readOnly": true + }, + "type": { + "$ref": "#/definitions/ResourceIdentityType", + "description": "The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine." + }, + "userAssignedIdentities": { + "type": "object", + "description": "The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.", + "additionalProperties": { + "$ref": "#/definitions/UserAssignedIdentitiesValue" + } + } + } + }, + "VirtualMachineImage": { + "type": "object", + "description": "Describes a Virtual Machine Image.", + "properties": { + "properties": { + "$ref": "#/definitions/VirtualMachineImageProperties", + "description": "Describes the properties of a Virtual Machine Image.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/VirtualMachineImageResource" + } + ] + }, + "VirtualMachineImageFeature": { + "type": "object", + "description": "Specifies additional capabilities supported by the image", + "properties": { + "name": { + "type": "string", + "description": "The name of the feature." + }, + "value": { + "type": "string", + "description": "The corresponding value for the feature." + } + } + }, + "VirtualMachineImageProperties": { + "type": "object", + "description": "Describes the properties of a Virtual Machine Image.", + "properties": { + "plan": { + "$ref": "#/definitions/PurchasePlan", + "description": "Used for establishing the purchase context of any 3rd Party artifact through MarketPlace." + }, + "osDiskImage": { + "$ref": "#/definitions/OSDiskImage", + "description": "Contains the os disk image information." + }, + "dataDiskImages": { + "type": "array", + "description": "The list of data disk images information.", + "items": { + "$ref": "#/definitions/DataDiskImage" + }, + "x-ms-identifiers": [ + "lun" + ] + }, + "automaticOSUpgradeProperties": { + "$ref": "#/definitions/AutomaticOSUpgradeProperties", + "description": "Describes automatic OS upgrade properties on the image." + }, + "hyperVGeneration": { + "$ref": "#/definitions/HyperVGenerationTypes", + "description": "Specifies the HyperVGeneration Type" + }, + "disallowed": { + "$ref": "#/definitions/DisallowedConfiguration", + "description": "Specifies disallowed configuration for the VirtualMachine created from the image" + }, + "features": { + "type": "array", + "items": { + "$ref": "#/definitions/VirtualMachineImageFeature" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "architecture": { + "$ref": "#/definitions/ArchitectureTypes", + "description": "Specifies the Architecture Type" + }, + "imageDeprecationStatus": { + "$ref": "#/definitions/ImageDeprecationStatus", + "description": "Describes image deprecation status properties on the image." + } + } + }, + "VirtualMachineImageResource": { + "type": "object", + "description": "Virtual machine image resource information.", + "properties": { + "name": { + "type": "string", + "description": "The name of the resource." + }, + "location": { + "type": "string", + "description": "The supported Azure location of the resource." + }, + "tags": { + "type": "object", + "description": "Specifies the tags that are assigned to the virtual machine. For more information about using tags, see [Using tags to organize your Azure resources](https://docs.microsoft.com/azure/azure-resource-manager/resource-group-using-tags.md).", + "additionalProperties": { + "type": "string" + } + }, + "extendedLocation": { + "$ref": "./common.json#/definitions/ExtendedLocation", + "description": "The extended location of the Virtual Machine." + } + }, + "required": [ + "name", + "location" + ], + "allOf": [ + { + "$ref": "./common.json#/definitions/SubResource" + } + ] + }, + "VirtualMachineInstallPatchesParameters": { + "type": "object", + "description": "Input for InstallPatches as directly received by the API", + "properties": { + "maximumDuration": { + "type": "string", + "format": "duration", + "description": "Specifies the maximum amount of time that the operation will run. It must be an ISO 8601-compliant duration string such as PT4H (4 hours)" + }, + "rebootSetting": { + "$ref": "#/definitions/VMGuestPatchRebootSetting", + "description": "Defines when it is acceptable to reboot a VM during a software update operation." + }, + "windowsParameters": { + "$ref": "#/definitions/WindowsParameters", + "description": "Input for InstallPatches on a Windows VM, as directly received by the API" + }, + "linuxParameters": { + "$ref": "#/definitions/LinuxParameters", + "description": "Input for InstallPatches on a Linux VM, as directly received by the API" + } + }, + "required": [ + "rebootSetting" + ] + }, + "VirtualMachineInstallPatchesResult": { + "type": "object", + "description": "The result summary of an installation operation.", + "properties": { + "status": { + "$ref": "#/definitions/PatchOperationStatus", + "description": "The overall success or failure status of the operation. It remains \"InProgress\" until the operation completes. At that point it will become \"Failed\", \"Succeeded\", \"Unknown\" or \"CompletedWithWarnings.\"", + "readOnly": true + }, + "installationActivityId": { + "type": "string", + "description": "The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.", + "readOnly": true + }, + "rebootStatus": { + "$ref": "#/definitions/VMGuestPatchRebootStatus", + "description": "The reboot state of the VM following completion of the operation.", + "readOnly": true + }, + "maintenanceWindowExceeded": { + "type": "boolean", + "description": "Whether the operation ran out of time before it completed all its intended actions.", + "readOnly": true + }, + "excludedPatchCount": { + "type": "integer", + "format": "int32", + "description": "The number of patches that were not installed due to the user blocking their installation.", + "readOnly": true + }, + "notSelectedPatchCount": { + "type": "integer", + "format": "int32", + "description": "The number of patches that were detected as available for install, but did not meet the operation's criteria.", + "readOnly": true + }, + "pendingPatchCount": { + "type": "integer", + "format": "int32", + "description": "The number of patches that were identified as meeting the installation criteria, but were not able to be installed. Typically this happens when maintenanceWindowExceeded == true.", + "readOnly": true + }, + "installedPatchCount": { + "type": "integer", + "format": "int32", + "description": "The number of patches successfully installed.", + "readOnly": true + }, + "failedPatchCount": { + "type": "integer", + "format": "int32", + "description": "The number of patches that could not be installed due to some issue. See errors for details.", + "readOnly": true + }, + "patches": { + "type": "array", + "description": "The patches that were installed during the operation.", + "items": { + "$ref": "#/definitions/PatchInstallationDetail" + }, + "readOnly": true, + "x-ms-identifiers": [ + "patchId" + ] + }, + "startDateTime": { + "type": "string", + "format": "date-time", + "description": "The UTC timestamp when the operation began.", + "readOnly": true + }, + "error": { + "$ref": "./common.json#/definitions/ApiError", + "description": "The errors that were encountered during execution of the operation. The details array contains the list of them.", + "readOnly": true + } + } + }, + "VirtualMachineInstanceView": { + "type": "object", + "description": "The instance view of a virtual machine.", + "properties": { + "platformUpdateDomain": { + "type": "integer", + "format": "int32", + "description": "Specifies the update domain of the virtual machine." + }, + "platformFaultDomain": { + "type": "integer", + "format": "int32", + "description": "Specifies the fault domain of the virtual machine." + }, + "computerName": { + "type": "string", + "description": "The computer name assigned to the virtual machine." + }, + "osName": { + "type": "string", + "description": "The Operating System running on the virtual machine." + }, + "osVersion": { + "type": "string", + "description": "The version of Operating System running on the virtual machine." + }, + "hyperVGeneration": { + "$ref": "#/definitions/HyperVGenerationType", + "description": "Specifies the HyperVGeneration Type associated with a resource" + }, + "rdpThumbPrint": { + "type": "string", + "description": "The Remote desktop certificate thumbprint." + }, + "vmAgent": { + "$ref": "#/definitions/VirtualMachineAgentInstanceView", + "description": "The VM Agent running on the virtual machine." + }, + "maintenanceRedeployStatus": { + "$ref": "#/definitions/MaintenanceRedeployStatus", + "description": "The Maintenance Operation status on the virtual machine." + }, + "disks": { + "type": "array", + "description": "The virtual machine disk information.", + "items": { + "$ref": "#/definitions/DiskInstanceView" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "extensions": { + "type": "array", + "description": "The extensions information.", + "items": { + "$ref": "#/definitions/VirtualMachineExtensionInstanceView" + }, + "x-ms-identifiers": [ + "name", + "type" + ] + }, + "vmHealth": { + "$ref": "#/definitions/VirtualMachineHealthStatus", + "description": "The health status for the VM.", + "readOnly": true + }, + "bootDiagnostics": { + "$ref": "#/definitions/BootDiagnosticsInstanceView", + "description": "Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor." + }, + "assignedHost": { + "type": "string", + "description": "Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.", + "readOnly": true + }, + "statuses": { + "type": "array", + "description": "The resource status information.", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "x-ms-identifiers": [] + }, + "patchStatus": { + "$ref": "#/definitions/VirtualMachinePatchStatus", + "description": "[Preview Feature] The status of virtual machine patch operations." + }, + "isVMInStandbyPool": { + "type": "boolean", + "description": "[Preview Feature] Specifies whether the VM is currently in or out of the Standby Pool.", + "readOnly": true + } + } + }, + "VirtualMachineIpTag": { + "type": "object", + "description": "Contains the IP tag associated with the public IP address.", + "properties": { + "ipTagType": { + "type": "string", + "description": "IP tag type. Example: FirstPartyUsage." + }, + "tag": { + "type": "string", + "description": "IP tag associated with the public IP. Example: SQL, Storage etc." + } + } + }, + "VirtualMachineListResult": { + "type": "object", + "description": "The List Virtual Machine operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of virtual machines.", + "items": { + "$ref": "#/definitions/VirtualMachine" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The URI to fetch the next page of VMs. Call ListNext() with this URI to fetch the next page of Virtual Machines." + } + }, + "required": [ + "value" + ] + }, + "VirtualMachineNetworkInterfaceConfiguration": { + "type": "object", + "description": "Describes a virtual machine network interface configurations.", + "properties": { + "name": { + "type": "string", + "description": "The network interface configuration name." + }, + "properties": { + "$ref": "#/definitions/VirtualMachineNetworkInterfaceConfigurationProperties", + "description": "Describes a virtual machine network profile's IP configuration.", + "x-ms-client-flatten": true + } + }, + "required": [ + "name" + ] + }, + "VirtualMachineNetworkInterfaceConfigurationProperties": { + "type": "object", + "description": "Describes a virtual machine network profile's IP configuration.", + "properties": { + "primary": { + "type": "boolean", + "description": "Specifies the primary network interface in case the virtual machine has more than 1 network interface." + }, + "deleteOption": { + "$ref": "#/definitions/DeleteOptions", + "description": "Specify what happens to the network interface when the VM is deleted" + }, + "enableAcceleratedNetworking": { + "type": "boolean", + "description": "Specifies whether the network interface is accelerated networking-enabled." + }, + "disableTcpStateTracking": { + "type": "boolean", + "description": "Specifies whether the network interface is disabled for tcp state tracking." + }, + "enableFpga": { + "type": "boolean", + "description": "Specifies whether the network interface is FPGA networking-enabled." + }, + "enableIPForwarding": { + "type": "boolean", + "description": "Whether IP forwarding enabled on this NIC." + }, + "networkSecurityGroup": { + "$ref": "./common.json#/definitions/SubResource", + "description": "The network security group." + }, + "dnsSettings": { + "$ref": "#/definitions/VirtualMachineNetworkInterfaceDnsSettingsConfiguration", + "description": "The dns settings to be applied on the network interfaces." + }, + "ipConfigurations": { + "type": "array", + "description": "Specifies the IP configurations of the network interface.", + "items": { + "$ref": "#/definitions/VirtualMachineNetworkInterfaceIPConfiguration" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "dscpConfiguration": { + "$ref": "./common.json#/definitions/SubResource" + }, + "auxiliaryMode": { + "$ref": "#/definitions/NetworkInterfaceAuxiliaryMode", + "description": "Specifies whether the Auxiliary mode is enabled for the Network Interface resource." + }, + "auxiliarySku": { + "$ref": "#/definitions/NetworkInterfaceAuxiliarySku", + "description": "Specifies whether the Auxiliary sku is enabled for the Network Interface resource." + } + }, + "required": [ + "ipConfigurations" + ] + }, + "VirtualMachineNetworkInterfaceDnsSettingsConfiguration": { + "type": "object", + "description": "Describes a virtual machines network configuration's DNS settings.", + "properties": { + "dnsServers": { + "type": "array", + "description": "List of DNS servers IP addresses", + "items": { + "type": "string" + } + } + } + }, + "VirtualMachineNetworkInterfaceIPConfiguration": { + "type": "object", + "description": "Describes a virtual machine network profile's IP configuration.", + "properties": { + "name": { + "type": "string", + "description": "The IP configuration name." + }, + "properties": { + "$ref": "#/definitions/VirtualMachineNetworkInterfaceIPConfigurationProperties", + "description": "Describes a virtual machine network interface IP configuration properties.", + "x-ms-client-flatten": true + } + }, + "required": [ + "name" + ] + }, + "VirtualMachineNetworkInterfaceIPConfigurationProperties": { + "type": "object", + "description": "Describes a virtual machine network interface IP configuration properties.", + "properties": { + "subnet": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies the identifier of the subnet." + }, + "primary": { + "type": "boolean", + "description": "Specifies the primary network interface in case the virtual machine has more than 1 network interface." + }, + "publicIPAddressConfiguration": { + "$ref": "#/definitions/VirtualMachinePublicIPAddressConfiguration", + "description": "The publicIPAddressConfiguration." + }, + "privateIPAddressVersion": { + "$ref": "#/definitions/IPVersions", + "description": "Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'." + }, + "applicationSecurityGroups": { + "type": "array", + "description": "Specifies an array of references to application security group.", + "items": { + "$ref": "./common.json#/definitions/SubResource" + } + }, + "applicationGatewayBackendAddressPools": { + "type": "array", + "description": "Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.", + "items": { + "$ref": "./common.json#/definitions/SubResource" + } + }, + "loadBalancerBackendAddressPools": { + "type": "array", + "description": "Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].", + "items": { + "$ref": "./common.json#/definitions/SubResource" + } + } + } + }, + "VirtualMachinePatchStatus": { + "type": "object", + "description": "The status of virtual machine patch operations.", + "properties": { + "availablePatchSummary": { + "$ref": "#/definitions/AvailablePatchSummary", + "description": "The available patch summary of the latest assessment operation for the virtual machine." + }, + "lastPatchInstallationSummary": { + "$ref": "#/definitions/LastPatchInstallationSummary", + "description": "The installation summary of the latest installation operation for the virtual machine." + }, + "configurationStatuses": { + "type": "array", + "description": "The enablement status of the specified patchMode", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "readOnly": true, + "x-ms-identifiers": [] + } + } + }, + "VirtualMachinePriorityTypes": { + "type": "string", + "description": "Specifies the priority for a standalone virtual machine or the virtual machines in the scale set. 'Low' enum will be deprecated in the future, please use 'Spot' as the enum to deploy Azure Spot VM/VMSS.", + "enum": [ + "Regular", + "Low", + "Spot" + ], + "x-ms-enum": { + "name": "VirtualMachinePriorityTypes", + "modelAsString": true, + "values": [ + { + "name": "Regular", + "value": "Regular" + }, + { + "name": "Low", + "value": "Low" + }, + { + "name": "Spot", + "value": "Spot" + } + ] + } + }, + "VirtualMachineProperties": { + "type": "object", + "description": "Describes the properties of a Virtual Machine.", + "properties": { + "hardwareProfile": { + "$ref": "#/definitions/HardwareProfile", + "description": "Specifies the hardware settings for the virtual machine." + }, + "scheduledEventsPolicy": { + "$ref": "#/definitions/ScheduledEventsPolicy", + "description": "Specifies Redeploy, Reboot and ScheduledEventsAdditionalPublishingTargets Scheduled Event related configurations for the virtual machine." + }, + "storageProfile": { + "$ref": "#/definitions/StorageProfile", + "description": "Specifies the storage settings for the virtual machine disks." + }, + "additionalCapabilities": { + "$ref": "#/definitions/AdditionalCapabilities", + "description": "Specifies additional capabilities enabled or disabled on the virtual machine." + }, + "osProfile": { + "$ref": "#/definitions/OSProfile", + "description": "Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned." + }, + "networkProfile": { + "$ref": "#/definitions/NetworkProfile", + "description": "Specifies the network interfaces of the virtual machine." + }, + "securityProfile": { + "$ref": "#/definitions/SecurityProfile", + "description": "Specifies the Security related profile settings for the virtual machine." + }, + "diagnosticsProfile": { + "$ref": "#/definitions/DiagnosticsProfile", + "description": "Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15." + }, + "availabilitySet": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see [Availability sets overview](https://docs.microsoft.com/azure/virtual-machines/availability-set-overview). For more information on Azure planned maintenance, see [Maintenance and updates for Virtual Machines in Azure](https://docs.microsoft.com/azure/virtual-machines/maintenance-and-updates). Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference." + }, + "virtualMachineScaleSet": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01." + }, + "proximityPlacementGroup": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01." + }, + "priority": { + "$ref": "#/definitions/VirtualMachinePriorityTypes", + "description": "Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01" + }, + "evictionPolicy": { + "$ref": "#/definitions/VirtualMachineEvictionPolicyTypes", + "description": "Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview." + }, + "billingProfile": { + "$ref": "#/definitions/BillingProfile", + "description": "Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01." + }, + "host": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01." + }, + "hostGroup": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies information about the dedicated host group that the virtual machine resides in. **Note:** User cannot specify both host and hostGroup properties. Minimum api-version: 2020-06-01." + }, + "provisioningState": { + "type": "string", + "description": "The provisioning state, which only appears in the response.", + "readOnly": true + }, + "instanceView": { + "$ref": "#/definitions/VirtualMachineInstanceView", + "description": "The virtual machine instance view.", + "readOnly": true + }, + "licenseType": { + "type": "string", + "description": "Specifies that the image or disk that is being used was licensed on-premises.

Possible values for Windows Server operating system are:

Windows_Client

Windows_Server

Possible values for Linux Server operating system are:

RHEL_BYOS (for RHEL)

SLES_BYOS (for SUSE)

For more information, see [Azure Hybrid Use Benefit for Windows Server](https://docs.microsoft.com/azure/virtual-machines/windows/hybrid-use-benefit-licensing)

[Azure Hybrid Use Benefit for Linux Server](https://docs.microsoft.com/azure/virtual-machines/linux/azure-hybrid-benefit-linux)

Minimum api-version: 2015-06-15" + }, + "vmId": { + "type": "string", + "description": "Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.", + "readOnly": true + }, + "extensionsTimeBudget": { + "type": "string", + "description": "Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01." + }, + "platformFaultDomain": { + "type": "integer", + "format": "int32", + "description": "Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains. This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set. The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' greater than 1. This property cannot be updated once the Virtual Machine is created. Fault domain assignment can be viewed in the Virtual Machine Instance View. Minimum api‐version: 2020‐12‐01." + }, + "scheduledEventsProfile": { + "$ref": "#/definitions/ScheduledEventsProfile", + "description": "Specifies Scheduled Event related configurations." + }, + "userData": { + "type": "string", + "description": "UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01." + }, + "capacityReservation": { + "$ref": "#/definitions/CapacityReservationProfile", + "description": "Specifies information about the capacity reservation that is used to allocate virtual machine. Minimum api-version: 2021-04-01." + }, + "applicationProfile": { + "$ref": "#/definitions/ApplicationProfile", + "description": "Specifies the gallery applications that should be made available to the VM/VMSS." + }, + "timeCreated": { + "type": "string", + "format": "date-time", + "description": "Specifies the time at which the Virtual Machine resource was created. Minimum api-version: 2021-11-01.", + "readOnly": true + } + } + }, + "VirtualMachinePublicIPAddressConfiguration": { + "type": "object", + "description": "Describes a virtual machines IP Configuration's PublicIPAddress configuration", + "properties": { + "name": { + "type": "string", + "description": "The publicIP address configuration name." + }, + "properties": { + "$ref": "#/definitions/VirtualMachinePublicIPAddressConfigurationProperties", + "description": "Describes a virtual machines IP Configuration's PublicIPAddress configuration", + "x-ms-client-flatten": true + }, + "sku": { + "$ref": "#/definitions/PublicIPAddressSku", + "description": "Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible." + } + }, + "required": [ + "name" + ] + }, + "VirtualMachinePublicIPAddressConfigurationProperties": { + "type": "object", + "description": "Describes a virtual machines IP Configuration's PublicIPAddress configuration", + "properties": { + "idleTimeoutInMinutes": { + "type": "integer", + "format": "int32", + "description": "The idle timeout of the public IP address." + }, + "deleteOption": { + "$ref": "#/definitions/DeleteOptions", + "description": "Specify what happens to the public IP address when the VM is deleted" + }, + "dnsSettings": { + "$ref": "#/definitions/VirtualMachinePublicIPAddressDnsSettingsConfiguration", + "description": "The dns settings to be applied on the publicIP addresses ." + }, + "ipTags": { + "type": "array", + "description": "The list of IP tags associated with the public IP address.", + "items": { + "$ref": "#/definitions/VirtualMachineIpTag" + }, + "x-ms-identifiers": [] + }, + "publicIPPrefix": { + "$ref": "./common.json#/definitions/SubResource", + "description": "The PublicIPPrefix from which to allocate publicIP addresses." + }, + "publicIPAddressVersion": { + "$ref": "#/definitions/IPVersions", + "description": "Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'." + }, + "publicIPAllocationMethod": { + "$ref": "#/definitions/PublicIPAllocationMethod", + "description": "Specify the public IP allocation type" + } + } + }, + "VirtualMachinePublicIPAddressDnsSettingsConfiguration": { + "type": "object", + "description": "Describes a virtual machines network configuration's DNS settings.", + "properties": { + "domainNameLabel": { + "type": "string", + "description": "The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID." + }, + "domainNameLabelScope": { + "$ref": "#/definitions/DomainNameLabelScopeTypes", + "description": "The Domain name label scope of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the hashed domain name label with policy according to the domain name label scope and vm network profile unique ID." + } + }, + "required": [ + "domainNameLabel" + ] + }, + "VirtualMachineReimageParameters": { + "type": "object", + "description": "Parameters for Reimaging Virtual Machine. NOTE: Virtual Machine OS disk will always be reimaged", + "properties": { + "tempDisk": { + "type": "boolean", + "description": "Specifies whether to reimage temp disk. Default value: false. Note: This temp disk reimage parameter is only supported for VM/VMSS with Ephemeral OS disk." + }, + "exactVersion": { + "type": "string", + "description": "Specifies in decimal number, the version the OS disk should be reimaged to. If exact version is not provided, the OS disk is reimaged to the existing version of OS Disk." + }, + "osProfile": { + "$ref": "#/definitions/OSProfileProvisioningData", + "description": "Specifies information required for reimaging the non-ephemeral OS disk." + } + } + }, + "VirtualMachineRunCommand": { + "type": "object", + "description": "Describes a Virtual Machine run command.", + "properties": { + "properties": { + "$ref": "#/definitions/VirtualMachineRunCommandProperties", + "description": "Describes the properties of a Virtual Machine run command.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "VirtualMachineRunCommandInstanceView": { + "type": "object", + "description": "The instance view of a virtual machine run command.", + "properties": { + "executionState": { + "$ref": "#/definitions/ExecutionState", + "description": "Script execution status." + }, + "executionMessage": { + "type": "string", + "description": "Communicate script configuration errors or execution messages." + }, + "exitCode": { + "type": "integer", + "format": "int32", + "description": "Exit code returned from script execution." + }, + "output": { + "type": "string", + "description": "Script output stream." + }, + "error": { + "type": "string", + "description": "Script error stream." + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "Script start time." + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "Script end time." + }, + "statuses": { + "type": "array", + "description": "The resource status information.", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "x-ms-identifiers": [] + } + } + }, + "VirtualMachineRunCommandProperties": { + "type": "object", + "description": "Describes the properties of a Virtual Machine run command.", + "properties": { + "source": { + "$ref": "#/definitions/VirtualMachineRunCommandScriptSource", + "description": "The source of the run command script." + }, + "parameters": { + "type": "array", + "description": "The parameters used by the script.", + "items": { + "$ref": "#/definitions/RunCommandInputParameter" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "protectedParameters": { + "type": "array", + "description": "The parameters used by the script.", + "items": { + "$ref": "#/definitions/RunCommandInputParameter" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "asyncExecution": { + "type": "boolean", + "description": "Optional. If set to true, provisioning will complete as soon as the script starts and will not wait for script to complete." + }, + "runAsUser": { + "type": "string", + "description": "Specifies the user account on the VM when executing the run command." + }, + "runAsPassword": { + "type": "string", + "description": "Specifies the user account password on the VM when executing the run command." + }, + "timeoutInSeconds": { + "type": "integer", + "format": "int32", + "description": "The timeout in seconds to execute the run command." + }, + "outputBlobUri": { + "type": "string", + "description": "Specifies the Azure storage blob where script output stream will be uploaded. Use a SAS URI with read, append, create, write access OR use managed identity to provide the VM access to the blob. Refer outputBlobManagedIdentity parameter." + }, + "errorBlobUri": { + "type": "string", + "description": "Specifies the Azure storage blob where script error stream will be uploaded. Use a SAS URI with read, append, create, write access OR use managed identity to provide the VM access to the blob. Refer errorBlobManagedIdentity parameter." + }, + "outputBlobManagedIdentity": { + "$ref": "#/definitions/RunCommandManagedIdentity", + "description": "User-assigned managed identity that has access to outputBlobUri storage blob. Use an empty object in case of system-assigned identity. Make sure managed identity has been given access to blob's container with 'Storage Blob Data Contributor' role assignment. In case of user-assigned identity, make sure you add it under VM's identity. For more info on managed identity and Run Command, refer https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged" + }, + "errorBlobManagedIdentity": { + "$ref": "#/definitions/RunCommandManagedIdentity", + "description": "User-assigned managed identity that has access to errorBlobUri storage blob. Use an empty object in case of system-assigned identity. Make sure managed identity has been given access to blob's container with 'Storage Blob Data Contributor' role assignment. In case of user-assigned identity, make sure you add it under VM's identity. For more info on managed identity and Run Command, refer https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged" + }, + "provisioningState": { + "type": "string", + "description": "The provisioning state, which only appears in the response. If treatFailureAsDeploymentFailure set to true, any failure in the script will fail the deployment and ProvisioningState will be marked as Failed. If treatFailureAsDeploymentFailure set to false, ProvisioningState would only reflect whether the run command was run or not by the extensions platform, it would not indicate whether script failed in case of script failures. See instance view of run command in case of script failures to see executionMessage, output, error: https://aka.ms/runcommandmanaged#get-execution-status-and-results", + "readOnly": true + }, + "instanceView": { + "$ref": "#/definitions/VirtualMachineRunCommandInstanceView", + "description": "The virtual machine run command instance view.", + "readOnly": true + }, + "treatFailureAsDeploymentFailure": { + "type": "boolean", + "description": "Optional. If set to true, any failure in the script will fail the deployment and ProvisioningState will be marked as Failed. If set to false, ProvisioningState would only reflect whether the run command was run or not by the extensions platform, it would not indicate whether script failed in case of script failures. See instance view of run command in case of script failures to see executionMessage, output, error: https://aka.ms/runcommandmanaged#get-execution-status-and-results" + } + } + }, + "VirtualMachineRunCommandScriptSource": { + "type": "object", + "description": "Describes the script sources for run command. Use only one of script, scriptUri, commandId.", + "properties": { + "script": { + "type": "string", + "description": "Specifies the script content to be executed on the VM." + }, + "scriptUri": { + "type": "string", + "description": "Specifies the script download location. It can be either SAS URI of an Azure storage blob with read access or public URI." + }, + "commandId": { + "type": "string", + "description": "Specifies a commandId of predefined built-in script." + }, + "scriptUriManagedIdentity": { + "$ref": "#/definitions/RunCommandManagedIdentity", + "description": "User-assigned managed identity that has access to scriptUri in case of Azure storage blob. Use an empty object in case of system-assigned identity. Make sure the Azure storage blob exists, and managed identity has been given access to blob's container with 'Storage Blob Data Reader' role assignment. In case of user-assigned identity, make sure you add it under VM's identity. For more info on managed identity and Run Command, refer https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged." + } + } + }, + "VirtualMachineRunCommandUpdate": { + "type": "object", + "description": "Describes a Virtual Machine run command.", + "properties": { + "properties": { + "$ref": "#/definitions/VirtualMachineRunCommandProperties", + "description": "Describes the properties of a Virtual Machine run command.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResource" + } + ] + }, + "VirtualMachineRunCommandsListResult": { + "type": "object", + "description": "The List run command operation response", + "properties": { + "value": { + "type": "array", + "description": "The list of run commands.", + "items": { + "$ref": "#/definitions/VirtualMachineRunCommand" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of run commands." + } + }, + "required": [ + "value" + ] + }, + "VirtualMachineScaleSet": { + "type": "object", + "description": "Describes a Virtual Machine Scale Set.", + "properties": { + "sku": { + "$ref": "#/definitions/Sku", + "description": "The virtual machine scale set sku." + }, + "plan": { + "$ref": "#/definitions/Plan", + "description": "Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click **Want to deploy programmatically, Get Started ->**. Enter any required information and then click **Save**." + }, + "properties": { + "$ref": "#/definitions/VirtualMachineScaleSetProperties", + "description": "Describes the properties of a Virtual Machine Scale Set.", + "x-ms-client-flatten": true + }, + "identity": { + "$ref": "#/definitions/VirtualMachineScaleSetIdentity", + "description": "The identity of the virtual machine scale set, if configured." + }, + "zones": { + "type": "array", + "description": "The availability zones.", + "items": { + "type": "string" + } + }, + "extendedLocation": { + "$ref": "./common.json#/definitions/ExtendedLocation", + "description": "The extended location of the Virtual Machine Scale Set." + }, + "etag": { + "type": "string", + "description": "Etag is property returned in Create/Update/Get response of the VMSS, so that customer can supply it in the header to ensure optimistic updates", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "VirtualMachineScaleSetDataDisk": { + "type": "object", + "description": "Describes a virtual machine scale set data disk.", + "properties": { + "name": { + "type": "string", + "description": "The disk name." + }, + "lun": { + "type": "integer", + "format": "int32", + "description": "Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM." + }, + "caching": { + "$ref": "#/definitions/CachingTypes", + "description": "Specifies the caching requirements. Possible values are: **None,** **ReadOnly,** **ReadWrite.** The default values are: **None for Standard storage. ReadOnly for Premium storage.**" + }, + "writeAcceleratorEnabled": { + "type": "boolean", + "description": "Specifies whether writeAccelerator should be enabled or disabled on the disk." + }, + "createOption": { + "$ref": "#/definitions/DiskCreateOptionTypes", + "description": "The create option." + }, + "diskSizeGB": { + "type": "integer", + "format": "int32", + "description": "Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023." + }, + "managedDisk": { + "$ref": "#/definitions/VirtualMachineScaleSetManagedDiskParameters", + "description": "The managed disk parameters." + }, + "diskIOPSReadWrite": { + "type": "integer", + "format": "int64", + "description": "Specifies the Read-Write IOPS for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB." + }, + "diskMBpsReadWrite": { + "type": "integer", + "format": "int64", + "description": "Specifies the bandwidth in MB per second for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB." + }, + "deleteOption": { + "$ref": "#/definitions/DiskDeleteOptionTypes", + "description": "Specifies whether data disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only).

Possible values:

**Delete** If this value is used, the data disk is deleted when the VMSS Flex VM is deleted.

**Detach** If this value is used, the data disk is retained after VMSS Flex VM is deleted.

The default value is set to **Delete**." + } + }, + "required": [ + "lun", + "createOption" + ] + }, + "VirtualMachineScaleSetExtension": { + "type": "object", + "description": "Describes a Virtual Machine Scale Set Extension.", + "properties": { + "properties": { + "$ref": "#/definitions/VirtualMachineScaleSetExtensionProperties", + "description": "Describes the properties of a Virtual Machine Scale Set Extension.", + "x-ms-client-flatten": true + }, + "type": { + "type": "string", + "description": "Resource type", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Resource name" + } + }, + "allOf": [ + { + "$ref": "./common.json#/definitions/SubResourceReadOnly" + } + ] + }, + "VirtualMachineScaleSetExtensionListResult": { + "type": "object", + "description": "The List VM scale set extension operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of VM scale set extensions.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetExtension" + }, + "x-ms-identifiers": [ + "name", + "id" + ] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of VM scale set extensions. Call ListNext() with this to fetch the next page of VM scale set extensions." + } + }, + "required": [ + "value" + ] + }, + "VirtualMachineScaleSetExtensionProfile": { + "type": "object", + "description": "Describes a virtual machine scale set extension profile.", + "properties": { + "extensions": { + "type": "array", + "description": "The virtual machine scale set child extension resources.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetExtension" + }, + "x-ms-identifiers": [ + "name", + "id" + ] + }, + "extensionsTimeBudget": { + "type": "string", + "description": "Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01." + } + } + }, + "VirtualMachineScaleSetExtensionProperties": { + "type": "object", + "description": "Describes the properties of a Virtual Machine Scale Set Extension.", + "properties": { + "forceUpdateTag": { + "type": "string", + "description": "If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed." + }, + "publisher": { + "type": "string", + "description": "The name of the extension handler publisher." + }, + "type": { + "type": "string", + "description": "Specifies the type of the extension; an example is \"CustomScriptExtension\"." + }, + "typeHandlerVersion": { + "type": "string", + "description": "Specifies the version of the script handler." + }, + "autoUpgradeMinorVersion": { + "type": "boolean", + "description": "Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true." + }, + "enableAutomaticUpgrade": { + "type": "boolean", + "description": "Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available." + }, + "settings": { + "description": "Json formatted public settings for the extension." + }, + "protectedSettings": { + "description": "The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all." + }, + "provisioningState": { + "type": "string", + "description": "The provisioning state, which only appears in the response.", + "readOnly": true + }, + "provisionAfterExtensions": { + "type": "array", + "description": "Collection of extension names after which this extension needs to be provisioned.", + "items": { + "type": "string" + } + }, + "suppressFailures": { + "type": "boolean", + "description": "Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false." + }, + "protectedSettingsFromKeyVault": { + "$ref": "#/definitions/KeyVaultSecretReference", + "description": "The extensions protected settings that are passed by reference, and consumed from key vault" + } + } + }, + "VirtualMachineScaleSetExtensionUpdate": { + "type": "object", + "description": "Describes a Virtual Machine Scale Set Extension.", + "properties": { + "name": { + "type": "string", + "description": "The name of the extension.", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Resource type", + "readOnly": true + }, + "properties": { + "$ref": "#/definitions/VirtualMachineScaleSetExtensionProperties", + "description": "Describes the properties of a Virtual Machine Scale Set Extension.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./common.json#/definitions/SubResourceReadOnly" + } + ] + }, + "VirtualMachineScaleSetHardwareProfile": { + "type": "object", + "description": "Specifies the hardware settings for the virtual machine scale set.", + "properties": { + "vmSizeProperties": { + "$ref": "#/definitions/VMSizeProperties", + "description": "Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-11-01. Please follow the instructions in [VM Customization](https://aka.ms/vmcustomization) for more details." + } + } + }, + "VirtualMachineScaleSetIPConfiguration": { + "type": "object", + "description": "Describes a virtual machine scale set network profile's IP configuration.", + "properties": { + "name": { + "type": "string", + "description": "The IP configuration name." + }, + "properties": { + "$ref": "#/definitions/VirtualMachineScaleSetIPConfigurationProperties", + "description": "Describes a virtual machine scale set network profile's IP configuration properties.", + "x-ms-client-flatten": true + } + }, + "required": [ + "name" + ] + }, + "VirtualMachineScaleSetIPConfigurationProperties": { + "type": "object", + "description": "Describes a virtual machine scale set network profile's IP configuration properties.", + "properties": { + "subnet": { + "$ref": "#/definitions/ApiEntityReference", + "description": "Specifies the identifier of the subnet." + }, + "primary": { + "type": "boolean", + "description": "Specifies the primary network interface in case the virtual machine has more than 1 network interface." + }, + "publicIPAddressConfiguration": { + "$ref": "#/definitions/VirtualMachineScaleSetPublicIPAddressConfiguration", + "description": "The publicIPAddressConfiguration." + }, + "privateIPAddressVersion": { + "$ref": "#/definitions/IPVersion", + "description": "Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'." + }, + "applicationGatewayBackendAddressPools": { + "type": "array", + "description": "Specifies an array of references to backend address pools of application gateways. A scale set can reference backend address pools of multiple application gateways. Multiple scale sets cannot use the same application gateway.", + "items": { + "$ref": "./common.json#/definitions/SubResource" + } + }, + "applicationSecurityGroups": { + "type": "array", + "description": "Specifies an array of references to application security group.", + "items": { + "$ref": "./common.json#/definitions/SubResource" + } + }, + "loadBalancerBackendAddressPools": { + "type": "array", + "description": "Specifies an array of references to backend address pools of load balancers. A scale set can reference backend address pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.", + "items": { + "$ref": "./common.json#/definitions/SubResource" + } + }, + "loadBalancerInboundNatPools": { + "type": "array", + "description": "Specifies an array of references to inbound Nat pools of the load balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.", + "items": { + "$ref": "./common.json#/definitions/SubResource" + } + } + } + }, + "VirtualMachineScaleSetIdentity": { + "type": "object", + "description": "Identity for the virtual machine scale set.", + "properties": { + "principalId": { + "type": "string", + "description": "The principal id of virtual machine scale set identity. This property will only be provided for a system assigned identity.", + "readOnly": true + }, + "tenantId": { + "type": "string", + "description": "The tenant id associated with the virtual machine scale set. This property will only be provided for a system assigned identity.", + "readOnly": true + }, + "type": { + "$ref": "#/definitions/ResourceIdentityType", + "description": "The type of identity used for the virtual machine scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine scale set." + }, + "userAssignedIdentities": { + "type": "object", + "description": "The list of user identities associated with the virtual machine scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.", + "additionalProperties": { + "$ref": "#/definitions/UserAssignedIdentitiesValue" + } + } + } + }, + "VirtualMachineScaleSetInstanceView": { + "type": "object", + "description": "The instance view of a virtual machine scale set.", + "properties": { + "virtualMachine": { + "$ref": "#/definitions/VirtualMachineScaleSetInstanceViewStatusesSummary", + "description": "The instance view status summary for the virtual machine scale set.", + "readOnly": true + }, + "extensions": { + "type": "array", + "description": "The extensions information.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetVMExtensionsSummary" + }, + "readOnly": true, + "x-ms-identifiers": [ + "name" + ] + }, + "statuses": { + "type": "array", + "description": "The resource status information.", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "x-ms-identifiers": [] + }, + "orchestrationServices": { + "type": "array", + "description": "The orchestration services information.", + "items": { + "$ref": "#/definitions/OrchestrationServiceSummary" + }, + "readOnly": true, + "x-ms-identifiers": [ + "serviceName" + ] + } + } + }, + "VirtualMachineScaleSetInstanceViewStatusesSummary": { + "type": "object", + "description": "Instance view statuses summary for virtual machines of a virtual machine scale set.", + "properties": { + "statusesSummary": { + "type": "array", + "description": "The extensions information.", + "items": { + "$ref": "#/definitions/VirtualMachineStatusCodeCount" + }, + "readOnly": true, + "x-ms-identifiers": [] + } + } + }, + "VirtualMachineScaleSetIpTag": { + "type": "object", + "description": "Contains the IP tag associated with the public IP address.", + "properties": { + "ipTagType": { + "type": "string", + "description": "IP tag type. Example: FirstPartyUsage." + }, + "tag": { + "type": "string", + "description": "IP tag associated with the public IP. Example: SQL, Storage etc." + } + } + }, + "VirtualMachineScaleSetListOSUpgradeHistory": { + "type": "object", + "description": "List of Virtual Machine Scale Set OS Upgrade History operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of OS upgrades performed on the virtual machine scale set.", + "items": { + "$ref": "#/definitions/UpgradeOperationHistoricalStatusInfo" + }, + "x-ms-identifiers": [ + "location", + "type" + ] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of OS Upgrade History. Call ListNext() with this to fetch the next page of history of upgrades." + } + }, + "required": [ + "value" + ] + }, + "VirtualMachineScaleSetListResult": { + "type": "object", + "description": "The List Virtual Machine operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of virtual machine scale sets.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSet" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of Virtual Machine Scale Sets. Call ListNext() with this to fetch the next page of VMSS." + } + }, + "required": [ + "value" + ] + }, + "VirtualMachineScaleSetListSkusResult": { + "type": "object", + "description": "The Virtual Machine Scale Set List Skus operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of skus available for the virtual machine scale set.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetSku" + }, + "x-ms-identifiers": [ + "resourceType", + "sku/name" + ] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of Virtual Machine Scale Set Skus. Call ListNext() with this to fetch the next page of VMSS Skus." + } + }, + "required": [ + "value" + ] + }, + "VirtualMachineScaleSetListWithLinkResult": { + "type": "object", + "description": "The List Virtual Machine operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of virtual machine scale sets.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSet" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of Virtual Machine Scale Sets. Call ListNext() with this to fetch the next page of Virtual Machine Scale Sets." + } + }, + "required": [ + "value" + ] + }, + "VirtualMachineScaleSetManagedDiskParameters": { + "type": "object", + "description": "Describes the parameters of a ScaleSet managed disk.", + "properties": { + "storageAccountType": { + "$ref": "#/definitions/StorageAccountTypes", + "description": "Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk." + }, + "diskEncryptionSet": { + "$ref": "#/definitions/DiskEncryptionSetParameters", + "description": "Specifies the customer managed disk encryption set resource id for the managed disk." + }, + "securityProfile": { + "$ref": "#/definitions/VMDiskSecurityProfile", + "description": "Specifies the security profile for the managed disk." + } + } + }, + "VirtualMachineScaleSetMigrationInfo": { + "type": "object", + "description": "Describes the Availability Set properties related to migration to Flexible Virtual Machine Scale Set.", + "properties": { + "defaultVirtualMachineScaleSetInfo": { + "$ref": "#/definitions/DefaultVirtualMachineScaleSetInfo", + "description": "Indicates the target Virtual Machine ScaleSet properties upon triggering a seamless migration without downtime of the VMs via the ConvertToVirtualMachineScaleSet API.", + "readOnly": true + }, + "migrateToVirtualMachineScaleSet": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies the Virtual Machine Scale Set that the Availability Set is migrated to.", + "readOnly": true + } + } + }, + "VirtualMachineScaleSetNetworkConfiguration": { + "type": "object", + "description": "Describes a virtual machine scale set network profile's network configurations.", + "properties": { + "name": { + "type": "string", + "description": "The network configuration name." + }, + "properties": { + "$ref": "#/definitions/VirtualMachineScaleSetNetworkConfigurationProperties", + "description": "Describes a virtual machine scale set network profile's IP configuration.", + "x-ms-client-flatten": true + } + }, + "required": [ + "name" + ] + }, + "VirtualMachineScaleSetNetworkConfigurationDnsSettings": { + "type": "object", + "description": "Describes a virtual machines scale sets network configuration's DNS settings.", + "properties": { + "dnsServers": { + "type": "array", + "description": "List of DNS servers IP addresses", + "items": { + "type": "string" + } + } + } + }, + "VirtualMachineScaleSetNetworkConfigurationProperties": { + "type": "object", + "description": "Describes a virtual machine scale set network profile's IP configuration.", + "properties": { + "primary": { + "type": "boolean", + "description": "Specifies the primary network interface in case the virtual machine has more than 1 network interface." + }, + "enableAcceleratedNetworking": { + "type": "boolean", + "description": "Specifies whether the network interface is accelerated networking-enabled." + }, + "disableTcpStateTracking": { + "type": "boolean", + "description": "Specifies whether the network interface is disabled for tcp state tracking." + }, + "enableFpga": { + "type": "boolean", + "description": "Specifies whether the network interface is FPGA networking-enabled." + }, + "networkSecurityGroup": { + "$ref": "./common.json#/definitions/SubResource", + "description": "The network security group." + }, + "dnsSettings": { + "$ref": "#/definitions/VirtualMachineScaleSetNetworkConfigurationDnsSettings", + "description": "The dns settings to be applied on the network interfaces." + }, + "ipConfigurations": { + "type": "array", + "description": "Specifies the IP configurations of the network interface.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetIPConfiguration" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "enableIPForwarding": { + "type": "boolean", + "description": "Whether IP forwarding enabled on this NIC." + }, + "deleteOption": { + "$ref": "#/definitions/DeleteOptions", + "description": "Specify what happens to the network interface when the VM is deleted" + }, + "auxiliaryMode": { + "$ref": "#/definitions/NetworkInterfaceAuxiliaryMode", + "description": "Specifies whether the Auxiliary mode is enabled for the Network Interface resource." + }, + "auxiliarySku": { + "$ref": "#/definitions/NetworkInterfaceAuxiliarySku", + "description": "Specifies whether the Auxiliary sku is enabled for the Network Interface resource." + } + }, + "required": [ + "ipConfigurations" + ] + }, + "VirtualMachineScaleSetNetworkProfile": { + "type": "object", + "description": "Describes a virtual machine scale set network profile.", + "properties": { + "healthProbe": { + "$ref": "#/definitions/ApiEntityReference", + "description": "A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'." + }, + "networkInterfaceConfigurations": { + "type": "array", + "description": "The list of network configurations.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetNetworkConfiguration" + }, + "x-ms-identifiers": [] + }, + "networkApiVersion": { + "$ref": "#/definitions/NetworkApiVersion", + "description": "specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'" + } + } + }, + "VirtualMachineScaleSetOSDisk": { + "type": "object", + "description": "Describes a virtual machine scale set operating system disk.", + "properties": { + "name": { + "type": "string", + "description": "The disk name." + }, + "caching": { + "$ref": "#/definitions/CachingTypes", + "description": "Specifies the caching requirements. Possible values are: **None,** **ReadOnly,** **ReadWrite.** The default values are: **None for Standard storage. ReadOnly for Premium storage.**" + }, + "writeAcceleratorEnabled": { + "type": "boolean", + "description": "Specifies whether writeAccelerator should be enabled or disabled on the disk." + }, + "createOption": { + "$ref": "#/definitions/DiskCreateOptionTypes", + "description": "Specifies how the virtual machines in the scale set should be created. The only allowed value is: **FromImage.** This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described." + }, + "diffDiskSettings": { + "$ref": "#/definitions/DiffDiskSettings", + "description": "Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set." + }, + "diskSizeGB": { + "type": "integer", + "format": "int32", + "description": "Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023." + }, + "osType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: **Windows,** **Linux.**" + }, + "image": { + "$ref": "#/definitions/VirtualHardDisk", + "description": "Specifies information about the unmanaged user image to base the scale set on." + }, + "vhdContainers": { + "type": "array", + "description": "Specifies the container urls that are used to store operating system disks for the scale set.", + "items": { + "type": "string" + } + }, + "managedDisk": { + "$ref": "#/definitions/VirtualMachineScaleSetManagedDiskParameters", + "description": "The managed disk parameters." + }, + "deleteOption": { + "$ref": "#/definitions/DiskDeleteOptionTypes", + "description": "Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only).

Possible values:

**Delete** If this value is used, the OS disk is deleted when VMSS Flex VM is deleted.

**Detach** If this value is used, the OS disk is retained after VMSS Flex VM is deleted.

The default value is set to **Delete**. For an Ephemeral OS Disk, the default value is set to **Delete**. User cannot change the delete option for Ephemeral OS Disk." + } + }, + "required": [ + "createOption" + ] + }, + "VirtualMachineScaleSetOSProfile": { + "type": "object", + "description": "Describes a virtual machine scale set OS profile.", + "properties": { + "computerNamePrefix": { + "type": "string", + "description": "Specifies the computer name prefix for all of the virtual machines in the scale set. Computer name prefixes must be 1 to 15 characters long." + }, + "adminUsername": { + "type": "string", + "description": "Specifies the name of the administrator account.

**Windows-only restriction:** Cannot end in \".\"

**Disallowed values:** \"administrator\", \"admin\", \"user\", \"user1\", \"test\", \"user2\", \"test1\", \"user3\", \"admin1\", \"1\", \"123\", \"a\", \"actuser\", \"adm\", \"admin2\", \"aspnet\", \"backup\", \"console\", \"david\", \"guest\", \"john\", \"owner\", \"root\", \"server\", \"sql\", \"support\", \"support_388945a0\", \"sys\", \"test2\", \"test3\", \"user4\", \"user5\".

**Minimum-length (Linux):** 1 character

**Max-length (Linux):** 64 characters

**Max-length (Windows):** 20 characters" + }, + "adminPassword": { + "type": "string", + "format": "password", + "description": "Specifies the password of the administrator account.

**Minimum-length (Windows):** 8 characters

**Minimum-length (Linux):** 6 characters

**Max-length (Windows):** 123 characters

**Max-length (Linux):** 72 characters

**Complexity requirements:** 3 out of 4 conditions below need to be fulfilled
Has lower characters
Has upper characters
Has a digit
Has a special character (Regex match [\\W_])

**Disallowed values:** \"abc@123\", \"P@$$w0rd\", \"P@ssw0rd\", \"P@ssword123\", \"Pa$$word\", \"pass@word1\", \"Password!\", \"Password1\", \"Password22\", \"iloveyou!\"

For resetting the password, see [How to reset the Remote Desktop service or its login password in a Windows VM](https://docs.microsoft.com/troubleshoot/azure/virtual-machines/reset-rdp)

For resetting root password, see [Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension](https://docs.microsoft.com/troubleshoot/azure/virtual-machines/troubleshoot-ssh-connection)", + "x-ms-secret": true + }, + "customData": { + "type": "string", + "description": "Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. For using cloud-init for your VM, see [Using cloud-init to customize a Linux VM during creation](https://docs.microsoft.com/azure/virtual-machines/linux/using-cloud-init)" + }, + "windowsConfiguration": { + "$ref": "#/definitions/WindowsConfiguration", + "description": "Specifies Windows operating system settings on the virtual machine." + }, + "linuxConfiguration": { + "$ref": "#/definitions/LinuxConfiguration", + "description": "Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see [Linux on Azure-Endorsed Distributions](https://docs.microsoft.com/azure/virtual-machines/linux/endorsed-distros)." + }, + "secrets": { + "type": "array", + "description": "Specifies set of certificates that should be installed onto the virtual machines in the scale set. To install certificates on a virtual machine it is recommended to use the [Azure Key Vault virtual machine extension for Linux](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-linux) or the [Azure Key Vault virtual machine extension for Windows](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-windows).", + "items": { + "$ref": "#/definitions/VaultSecretGroup" + }, + "x-ms-identifiers": [ + "sourceVault/id" + ] + }, + "allowExtensionOperations": { + "type": "boolean", + "description": "Specifies whether extension operations should be allowed on the virtual machine scale set. This may only be set to False when no extensions are present on the virtual machine scale set." + }, + "requireGuestProvisionSignal": { + "type": "boolean", + "description": "Optional property which must either be set to True or omitted." + } + } + }, + "VirtualMachineScaleSetProperties": { + "type": "object", + "description": "Describes the properties of a Virtual Machine Scale Set.", + "properties": { + "upgradePolicy": { + "$ref": "#/definitions/UpgradePolicy", + "description": "The upgrade policy." + }, + "scheduledEventsPolicy": { + "$ref": "#/definitions/ScheduledEventsPolicy", + "description": "The ScheduledEventsPolicy." + }, + "automaticRepairsPolicy": { + "$ref": "#/definitions/AutomaticRepairsPolicy", + "description": "Policy for automatic repairs." + }, + "virtualMachineProfile": { + "$ref": "#/definitions/VirtualMachineScaleSetVMProfile", + "description": "The virtual machine profile." + }, + "provisioningState": { + "type": "string", + "description": "The provisioning state, which only appears in the response.", + "readOnly": true + }, + "overprovision": { + "type": "boolean", + "description": "Specifies whether the Virtual Machine Scale Set should be overprovisioned." + }, + "doNotRunExtensionsOnOverprovisionedVMs": { + "type": "boolean", + "description": "When Overprovision is enabled, extensions are launched only on the requested number of VMs which are finally kept. This property will hence ensure that the extensions do not run on the extra overprovisioned VMs." + }, + "uniqueId": { + "type": "string", + "description": "Specifies the ID which uniquely identifies a Virtual Machine Scale Set.", + "readOnly": true + }, + "singlePlacementGroup": { + "type": "boolean", + "description": "When true this limits the scale set to a single placement group, of max size 100 virtual machines. NOTE: If singlePlacementGroup is true, it may be modified to false. However, if singlePlacementGroup is false, it may not be modified to true." + }, + "zoneBalance": { + "type": "boolean", + "description": "Whether to force strictly even Virtual Machine distribution cross x-zones in case there is zone outage. zoneBalance property can only be set if the zones property of the scale set contains more than one zone. If there are no zones or only one zone specified, then zoneBalance property should not be set." + }, + "platformFaultDomainCount": { + "type": "integer", + "format": "int32", + "description": "Fault Domain count for each placement group." + }, + "proximityPlacementGroup": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies information about the proximity placement group that the virtual machine scale set should be assigned to. Minimum api-version: 2018-04-01." + }, + "hostGroup": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies information about the dedicated host group that the virtual machine scale set resides in. Minimum api-version: 2020-06-01." + }, + "additionalCapabilities": { + "$ref": "#/definitions/AdditionalCapabilities", + "description": "Specifies additional capabilities enabled or disabled on the Virtual Machines in the Virtual Machine Scale Set. For instance: whether the Virtual Machines have the capability to support attaching managed data disks with UltraSSD_LRS storage account type." + }, + "scaleInPolicy": { + "$ref": "#/definitions/ScaleInPolicy", + "description": "Specifies the policies applied when scaling in Virtual Machines in the Virtual Machine Scale Set." + }, + "orchestrationMode": { + "$ref": "#/definitions/OrchestrationMode", + "description": "Specifies the orchestration mode for the virtual machine scale set." + }, + "spotRestorePolicy": { + "$ref": "#/definitions/SpotRestorePolicy", + "description": "Specifies the Spot Restore properties for the virtual machine scale set." + }, + "priorityMixPolicy": { + "$ref": "#/definitions/PriorityMixPolicy", + "description": "Specifies the desired targets for mixing Spot and Regular priority VMs within the same VMSS Flex instance." + }, + "timeCreated": { + "type": "string", + "format": "date-time", + "description": "Specifies the time at which the Virtual Machine Scale Set resource was created. Minimum api-version: 2021-11-01.", + "readOnly": true + }, + "constrainedMaximumCapacity": { + "type": "boolean", + "description": "Optional property which must either be set to True or omitted." + }, + "resiliencyPolicy": { + "$ref": "#/definitions/ResiliencyPolicy", + "description": "Policy for Resiliency" + }, + "zonalPlatformFaultDomainAlignMode": { + "$ref": "#/definitions/ZonalPlatformFaultDomainAlignMode", + "description": "Specifies the align mode between Virtual Machine Scale Set compute and storage Fault Domain count." + }, + "skuProfile": { + "$ref": "#/definitions/SkuProfile", + "description": "Specifies the sku profile for the virtual machine scale set." + } + } + }, + "VirtualMachineScaleSetPublicIPAddressConfiguration": { + "type": "object", + "description": "Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration", + "properties": { + "name": { + "type": "string", + "description": "The publicIP address configuration name." + }, + "properties": { + "$ref": "#/definitions/VirtualMachineScaleSetPublicIPAddressConfigurationProperties", + "description": "Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration", + "x-ms-client-flatten": true + }, + "sku": { + "$ref": "#/definitions/PublicIPAddressSku", + "description": "Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible." + } + }, + "required": [ + "name" + ] + }, + "VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings": { + "type": "object", + "description": "Describes a virtual machines scale sets network configuration's DNS settings.", + "properties": { + "domainNameLabel": { + "type": "string", + "description": "The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created" + }, + "domainNameLabelScope": { + "$ref": "#/definitions/DomainNameLabelScopeTypes", + "description": "The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created" + } + }, + "required": [ + "domainNameLabel" + ] + }, + "VirtualMachineScaleSetPublicIPAddressConfigurationProperties": { + "type": "object", + "description": "Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration", + "properties": { + "idleTimeoutInMinutes": { + "type": "integer", + "format": "int32", + "description": "The idle timeout of the public IP address." + }, + "dnsSettings": { + "$ref": "#/definitions/VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings", + "description": "The dns settings to be applied on the publicIP addresses ." + }, + "ipTags": { + "type": "array", + "description": "The list of IP tags associated with the public IP address.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetIpTag" + }, + "x-ms-identifiers": [] + }, + "publicIPPrefix": { + "$ref": "./common.json#/definitions/SubResource", + "description": "The PublicIPPrefix from which to allocate publicIP addresses." + }, + "publicIPAddressVersion": { + "$ref": "#/definitions/IPVersion", + "description": "Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'." + }, + "deleteOption": { + "$ref": "#/definitions/DeleteOptions", + "description": "Specify what happens to the public IP when the VM is deleted" + } + } + }, + "VirtualMachineScaleSetReimageParameters": { + "type": "object", + "description": "Describes a Virtual Machine Scale Set VM Reimage Parameters.", + "properties": { + "instanceIds": { + "type": "array", + "description": "The virtual machine scale set instance ids. Omitting the virtual machine scale set instance ids will result in the operation being performed on all virtual machines in the virtual machine scale set.", + "items": { + "type": "string" + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/VirtualMachineScaleSetVMReimageParameters" + } + ] + }, + "VirtualMachineScaleSetScaleInRules": { + "type": "string", + "enum": [ + "Default", + "OldestVM", + "NewestVM" + ], + "x-ms-enum": { + "name": "VirtualMachineScaleSetScaleInRules", + "modelAsString": true, + "values": [ + { + "name": "Default", + "value": "Default" + }, + { + "name": "OldestVM", + "value": "OldestVM" + }, + { + "name": "NewestVM", + "value": "NewestVM" + } + ] + } + }, + "VirtualMachineScaleSetSku": { + "type": "object", + "description": "Describes an available virtual machine scale set sku.", + "properties": { + "resourceType": { + "type": "string", + "description": "The type of resource the sku applies to.", + "readOnly": true + }, + "sku": { + "$ref": "#/definitions/Sku", + "description": "The Sku.", + "readOnly": true + }, + "capacity": { + "$ref": "#/definitions/VirtualMachineScaleSetSkuCapacity", + "description": "Specifies the number of virtual machines in the scale set.", + "readOnly": true + } + } + }, + "VirtualMachineScaleSetSkuCapacity": { + "type": "object", + "description": "Describes scaling information of a sku.", + "properties": { + "minimum": { + "type": "integer", + "format": "int64", + "description": "The minimum capacity.", + "readOnly": true + }, + "maximum": { + "type": "integer", + "format": "int64", + "description": "The maximum capacity that can be set.", + "readOnly": true + }, + "defaultCapacity": { + "type": "integer", + "format": "int64", + "description": "The default capacity.", + "readOnly": true + }, + "scaleType": { + "$ref": "#/definitions/VirtualMachineScaleSetSkuScaleType", + "description": "The scale type applicable to the sku.", + "readOnly": true + } + } + }, + "VirtualMachineScaleSetSkuScaleType": { + "type": "string", + "description": "The scale type applicable to the sku.", + "enum": [ + "Automatic", + "None" + ], + "x-ms-enum": { + "name": "VirtualMachineScaleSetSkuScaleType", + "modelAsString": false + } + }, + "VirtualMachineScaleSetStorageProfile": { + "type": "object", + "description": "Describes a virtual machine scale set storage profile.", + "properties": { + "imageReference": { + "$ref": "#/definitions/ImageReference", + "description": "Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations." + }, + "osDisk": { + "$ref": "#/definitions/VirtualMachineScaleSetOSDisk", + "description": "Specifies information about the operating system disk used by the virtual machines in the scale set. For more information about disks, see [About disks and VHDs for Azure virtual machines](https://docs.microsoft.com/azure/virtual-machines/managed-disks-overview)." + }, + "dataDisks": { + "type": "array", + "description": "Specifies the parameters that are used to add data disks to the virtual machines in the scale set. For more information about disks, see [About disks and VHDs for Azure virtual machines](https://docs.microsoft.com/azure/virtual-machines/managed-disks-overview).", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetDataDisk" + }, + "x-ms-identifiers": [ + "name", + "lun" + ] + }, + "diskControllerType": { + "$ref": "#/definitions/DiskControllerTypes", + "description": "Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01" + } + } + }, + "VirtualMachineScaleSetUpdate": { + "type": "object", + "description": "Describes a Virtual Machine Scale Set.", + "properties": { + "sku": { + "$ref": "#/definitions/Sku", + "description": "The virtual machine scale set sku." + }, + "plan": { + "$ref": "#/definitions/Plan", + "description": "The purchase plan when deploying a virtual machine scale set from VM Marketplace images." + }, + "properties": { + "$ref": "#/definitions/VirtualMachineScaleSetUpdateProperties", + "description": "Describes the properties of a Virtual Machine Scale Set.", + "x-ms-client-flatten": true + }, + "identity": { + "$ref": "#/definitions/VirtualMachineScaleSetIdentity", + "description": "The identity of the virtual machine scale set, if configured." + }, + "zones": { + "type": "array", + "description": "The virtual machine scale set zones.", + "items": { + "type": "string" + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResource" + } + ] + }, + "VirtualMachineScaleSetUpdateIPConfiguration": { + "type": "object", + "description": "Describes a virtual machine scale set network profile's IP configuration. NOTE: The subnet of a scale set may be modified as long as the original subnet and the new subnet are in the same virtual network", + "properties": { + "name": { + "type": "string", + "description": "The IP configuration name." + }, + "properties": { + "$ref": "#/definitions/VirtualMachineScaleSetUpdateIPConfigurationProperties", + "description": "Describes a virtual machine scale set network profile's IP configuration properties.", + "x-ms-client-flatten": true + } + } + }, + "VirtualMachineScaleSetUpdateIPConfigurationProperties": { + "type": "object", + "description": "Describes a virtual machine scale set network profile's IP configuration properties.", + "properties": { + "subnet": { + "$ref": "#/definitions/ApiEntityReference", + "description": "The subnet." + }, + "primary": { + "type": "boolean", + "description": "Specifies the primary IP Configuration in case the network interface has more than one IP Configuration." + }, + "publicIPAddressConfiguration": { + "$ref": "#/definitions/VirtualMachineScaleSetUpdatePublicIPAddressConfiguration", + "description": "The publicIPAddressConfiguration." + }, + "privateIPAddressVersion": { + "$ref": "#/definitions/IPVersion", + "description": "Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'." + }, + "applicationGatewayBackendAddressPools": { + "type": "array", + "description": "The application gateway backend address pools.", + "items": { + "$ref": "./common.json#/definitions/SubResource" + } + }, + "applicationSecurityGroups": { + "type": "array", + "description": "Specifies an array of references to application security group.", + "items": { + "$ref": "./common.json#/definitions/SubResource" + } + }, + "loadBalancerBackendAddressPools": { + "type": "array", + "description": "The load balancer backend address pools.", + "items": { + "$ref": "./common.json#/definitions/SubResource" + } + }, + "loadBalancerInboundNatPools": { + "type": "array", + "description": "The load balancer inbound nat pools.", + "items": { + "$ref": "./common.json#/definitions/SubResource" + } + } + } + }, + "VirtualMachineScaleSetUpdateNetworkConfiguration": { + "type": "object", + "description": "Describes a virtual machine scale set network profile's network configurations.", + "properties": { + "name": { + "type": "string", + "description": "The network configuration name." + }, + "properties": { + "$ref": "#/definitions/VirtualMachineScaleSetUpdateNetworkConfigurationProperties", + "description": "Describes a virtual machine scale set updatable network profile's IP configuration.Use this object for updating network profile's IP Configuration.", + "x-ms-client-flatten": true + } + } + }, + "VirtualMachineScaleSetUpdateNetworkConfigurationProperties": { + "type": "object", + "description": "Describes a virtual machine scale set updatable network profile's IP configuration.Use this object for updating network profile's IP Configuration.", + "properties": { + "primary": { + "type": "boolean", + "description": "Whether this is a primary NIC on a virtual machine." + }, + "enableAcceleratedNetworking": { + "type": "boolean", + "description": "Specifies whether the network interface is accelerated networking-enabled." + }, + "disableTcpStateTracking": { + "type": "boolean", + "description": "Specifies whether the network interface is disabled for tcp state tracking." + }, + "enableFpga": { + "type": "boolean", + "description": "Specifies whether the network interface is FPGA networking-enabled." + }, + "networkSecurityGroup": { + "$ref": "./common.json#/definitions/SubResource", + "description": "The network security group." + }, + "dnsSettings": { + "$ref": "#/definitions/VirtualMachineScaleSetNetworkConfigurationDnsSettings", + "description": "The dns settings to be applied on the network interfaces." + }, + "ipConfigurations": { + "type": "array", + "description": "The virtual machine scale set IP Configuration.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetUpdateIPConfiguration" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "enableIPForwarding": { + "type": "boolean", + "description": "Whether IP forwarding enabled on this NIC." + }, + "deleteOption": { + "$ref": "#/definitions/DeleteOptions", + "description": "Specify what happens to the network interface when the VM is deleted" + }, + "auxiliaryMode": { + "$ref": "#/definitions/NetworkInterfaceAuxiliaryMode", + "description": "Specifies whether the Auxiliary mode is enabled for the Network Interface resource." + }, + "auxiliarySku": { + "$ref": "#/definitions/NetworkInterfaceAuxiliarySku", + "description": "Specifies whether the Auxiliary sku is enabled for the Network Interface resource." + } + } + }, + "VirtualMachineScaleSetUpdateNetworkProfile": { + "type": "object", + "description": "Describes a virtual machine scale set network profile.", + "properties": { + "healthProbe": { + "$ref": "#/definitions/ApiEntityReference", + "description": "A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'." + }, + "networkInterfaceConfigurations": { + "type": "array", + "description": "The list of network configurations.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetUpdateNetworkConfiguration" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "networkApiVersion": { + "$ref": "#/definitions/NetworkApiVersion", + "description": "specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'" + } + } + }, + "VirtualMachineScaleSetUpdateOSDisk": { + "type": "object", + "description": "Describes virtual machine scale set operating system disk Update Object. This should be used for Updating VMSS OS Disk.", + "properties": { + "caching": { + "$ref": "#/definitions/CachingTypes", + "description": "The caching type." + }, + "writeAcceleratorEnabled": { + "type": "boolean", + "description": "Specifies whether writeAccelerator should be enabled or disabled on the disk." + }, + "diffDiskSettings": { + "$ref": "#/definitions/DiffDiskSettings", + "description": "Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set." + }, + "diskSizeGB": { + "type": "integer", + "format": "int32", + "description": "Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image.

diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023" + }, + "image": { + "$ref": "#/definitions/VirtualHardDisk", + "description": "The Source User Image VirtualHardDisk. This VirtualHardDisk will be copied before using it to attach to the Virtual Machine. If SourceImage is provided, the destination VirtualHardDisk should not exist." + }, + "vhdContainers": { + "type": "array", + "description": "The list of virtual hard disk container uris.", + "items": { + "type": "string" + } + }, + "managedDisk": { + "$ref": "#/definitions/VirtualMachineScaleSetManagedDiskParameters", + "description": "The managed disk parameters." + }, + "deleteOption": { + "$ref": "#/definitions/DiskDeleteOptionTypes", + "description": "Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only).

Possible values:

**Delete** If this value is used, the OS disk is deleted when VMSS Flex VM is deleted.

**Detach** If this value is used, the OS disk is retained after VMSS Flex VM is deleted.

The default value is set to **Delete**. For an Ephemeral OS Disk, the default value is set to **Delete**. User cannot change the delete option for Ephemeral OS Disk." + } + } + }, + "VirtualMachineScaleSetUpdateOSProfile": { + "type": "object", + "description": "Describes a virtual machine scale set OS profile.", + "properties": { + "customData": { + "type": "string", + "description": "A base-64 encoded string of custom data." + }, + "windowsConfiguration": { + "$ref": "#/definitions/WindowsConfiguration", + "description": "The Windows Configuration of the OS profile." + }, + "linuxConfiguration": { + "$ref": "#/definitions/LinuxConfiguration", + "description": "The Linux Configuration of the OS profile." + }, + "secrets": { + "type": "array", + "description": "The List of certificates for addition to the VM.", + "items": { + "$ref": "#/definitions/VaultSecretGroup" + }, + "x-ms-identifiers": [ + "sourceVault/id" + ] + } + } + }, + "VirtualMachineScaleSetUpdateProperties": { + "type": "object", + "description": "Describes the properties of a Virtual Machine Scale Set.", + "properties": { + "upgradePolicy": { + "$ref": "#/definitions/UpgradePolicy", + "description": "The upgrade policy." + }, + "automaticRepairsPolicy": { + "$ref": "#/definitions/AutomaticRepairsPolicy", + "description": "Policy for automatic repairs." + }, + "virtualMachineProfile": { + "$ref": "#/definitions/VirtualMachineScaleSetUpdateVMProfile", + "description": "The virtual machine profile." + }, + "overprovision": { + "type": "boolean", + "description": "Specifies whether the Virtual Machine Scale Set should be overprovisioned." + }, + "doNotRunExtensionsOnOverprovisionedVMs": { + "type": "boolean", + "description": "When Overprovision is enabled, extensions are launched only on the requested number of VMs which are finally kept. This property will hence ensure that the extensions do not run on the extra overprovisioned VMs." + }, + "singlePlacementGroup": { + "type": "boolean", + "description": "When true this limits the scale set to a single placement group, of max size 100 virtual machines. NOTE: If singlePlacementGroup is true, it may be modified to false. However, if singlePlacementGroup is false, it may not be modified to true." + }, + "additionalCapabilities": { + "$ref": "#/definitions/AdditionalCapabilities", + "description": "Specifies additional capabilities enabled or disabled on the Virtual Machines in the Virtual Machine Scale Set. For instance: whether the Virtual Machines have the capability to support attaching managed data disks with UltraSSD_LRS storage account type." + }, + "scaleInPolicy": { + "$ref": "#/definitions/ScaleInPolicy", + "description": "Specifies the policies applied when scaling in Virtual Machines in the Virtual Machine Scale Set." + }, + "proximityPlacementGroup": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies information about the proximity placement group that the virtual machine scale set should be assigned to.

Minimum api-version: 2018-04-01." + }, + "priorityMixPolicy": { + "$ref": "#/definitions/PriorityMixPolicy", + "description": "Specifies the desired targets for mixing Spot and Regular priority VMs within the same VMSS Flex instance." + }, + "spotRestorePolicy": { + "$ref": "#/definitions/SpotRestorePolicy", + "description": "Specifies the Spot Restore properties for the virtual machine scale set." + }, + "resiliencyPolicy": { + "$ref": "#/definitions/ResiliencyPolicy", + "description": "Policy for Resiliency" + }, + "zonalPlatformFaultDomainAlignMode": { + "$ref": "#/definitions/ZonalPlatformFaultDomainAlignMode", + "description": "Specifies the align mode between Virtual Machine Scale Set compute and storage Fault Domain count." + }, + "skuProfile": { + "$ref": "#/definitions/SkuProfile", + "description": "Specifies the sku profile for the virtual machine scale set." + } + } + }, + "VirtualMachineScaleSetUpdatePublicIPAddressConfiguration": { + "type": "object", + "description": "Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration", + "properties": { + "name": { + "type": "string", + "description": "The publicIP address configuration name." + }, + "properties": { + "$ref": "#/definitions/VirtualMachineScaleSetUpdatePublicIPAddressConfigurationProperties", + "description": "Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration", + "x-ms-client-flatten": true + } + } + }, + "VirtualMachineScaleSetUpdatePublicIPAddressConfigurationProperties": { + "type": "object", + "description": "Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration", + "properties": { + "idleTimeoutInMinutes": { + "type": "integer", + "format": "int32", + "description": "The idle timeout of the public IP address." + }, + "dnsSettings": { + "$ref": "#/definitions/VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings", + "description": "The dns settings to be applied on the publicIP addresses ." + }, + "publicIPPrefix": { + "$ref": "./common.json#/definitions/SubResource", + "description": "The PublicIPPrefix from which to allocate publicIP addresses." + }, + "deleteOption": { + "$ref": "#/definitions/DeleteOptions", + "description": "Specify what happens to the public IP when the VM is deleted" + } + } + }, + "VirtualMachineScaleSetUpdateStorageProfile": { + "type": "object", + "description": "Describes a virtual machine scale set storage profile.", + "properties": { + "imageReference": { + "$ref": "#/definitions/ImageReference", + "description": "The image reference." + }, + "osDisk": { + "$ref": "#/definitions/VirtualMachineScaleSetUpdateOSDisk", + "description": "The OS disk." + }, + "dataDisks": { + "type": "array", + "description": "The data disks.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetDataDisk" + }, + "x-ms-identifiers": [ + "name", + "lun" + ] + }, + "diskControllerType": { + "$ref": "#/definitions/DiskControllerTypes", + "description": "Specifies the disk controller type configured for the virtual machines in the scale set. **Note:** You need to deallocate the virtual machines in the scale set before updating its disk controller type based on the upgrade mode configured for the scale set. Minimum api-version: 2022-08-01" + } + } + }, + "VirtualMachineScaleSetUpdateVMProfile": { + "type": "object", + "description": "Describes a virtual machine scale set virtual machine profile.", + "properties": { + "osProfile": { + "$ref": "#/definitions/VirtualMachineScaleSetUpdateOSProfile", + "description": "The virtual machine scale set OS profile." + }, + "storageProfile": { + "$ref": "#/definitions/VirtualMachineScaleSetUpdateStorageProfile", + "description": "The virtual machine scale set storage profile." + }, + "networkProfile": { + "$ref": "#/definitions/VirtualMachineScaleSetUpdateNetworkProfile", + "description": "The virtual machine scale set network profile." + }, + "securityPostureReference": { + "$ref": "#/definitions/SecurityPostureReferenceUpdate", + "description": "The virtual machine scale set security posture reference." + }, + "securityProfile": { + "$ref": "#/definitions/SecurityProfile", + "description": "The virtual machine scale set Security profile" + }, + "diagnosticsProfile": { + "$ref": "#/definitions/DiagnosticsProfile", + "description": "The virtual machine scale set diagnostics profile." + }, + "extensionProfile": { + "$ref": "#/definitions/VirtualMachineScaleSetExtensionProfile", + "description": "The virtual machine scale set extension profile." + }, + "licenseType": { + "type": "string", + "description": "The license type, which is for bring your own license scenario." + }, + "billingProfile": { + "$ref": "#/definitions/BillingProfile", + "description": "Specifies the billing related details of a Azure Spot VMSS. Minimum api-version: 2019-03-01." + }, + "scheduledEventsProfile": { + "$ref": "#/definitions/ScheduledEventsProfile", + "description": "Specifies Scheduled Event related configurations." + }, + "userData": { + "type": "string", + "description": "UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here.

Minimum api-version: 2021-03-01" + }, + "hardwareProfile": { + "$ref": "#/definitions/VirtualMachineScaleSetHardwareProfile", + "description": "Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01." + } + } + }, + "VirtualMachineScaleSetVM": { + "type": "object", + "description": "Describes a virtual machine scale set virtual machine.", + "properties": { + "properties": { + "$ref": "#/definitions/VirtualMachineScaleSetVMProperties", + "description": "Describes the properties of a virtual machine scale set virtual machine.", + "x-ms-client-flatten": true + }, + "instanceId": { + "type": "string", + "description": "The virtual machine instance ID.", + "readOnly": true + }, + "sku": { + "$ref": "#/definitions/Sku", + "description": "The virtual machine SKU.", + "readOnly": true + }, + "plan": { + "$ref": "#/definitions/Plan", + "description": "Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click **Want to deploy programmatically, Get Started ->**. Enter any required information and then click **Save**." + }, + "resources": { + "type": "array", + "description": "The virtual machine child extension resources.", + "items": { + "$ref": "#/definitions/VirtualMachineExtension" + }, + "readOnly": true + }, + "zones": { + "type": "array", + "description": "The virtual machine zones.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "identity": { + "$ref": "#/definitions/VirtualMachineIdentity", + "description": "The identity of the virtual machine, if configured." + }, + "etag": { + "type": "string", + "description": "Etag is property returned in Update/Get response of the VMSS VM, so that customer can supply it in the header to ensure optimistic updates.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "VirtualMachineScaleSetVMExtension": { + "type": "object", + "description": "Describes a VMSS VM Extension.", + "properties": { + "properties": { + "$ref": "#/definitions/VirtualMachineExtensionProperties", + "description": "Describes the properties of a Virtual Machine Extension.", + "x-ms-client-flatten": true + }, + "location": { + "type": "string", + "description": "The location of the extension.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "type": { + "type": "string", + "description": "Resource type", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Resource name", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "./common.json#/definitions/SubResourceReadOnly" + } + ] + }, + "VirtualMachineScaleSetVMExtensionUpdate": { + "type": "object", + "description": "Describes a VMSS VM Extension.", + "properties": { + "name": { + "type": "string", + "description": "The name of the extension.", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Resource type", + "readOnly": true + }, + "properties": { + "$ref": "#/definitions/VirtualMachineExtensionUpdateProperties", + "description": "Describes the properties of a Virtual Machine Extension.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./common.json#/definitions/SubResourceReadOnly" + } + ] + }, + "VirtualMachineScaleSetVMExtensionsListResult": { + "type": "object", + "description": "The List VMSS VM Extension operation response", + "properties": { + "value": { + "type": "array", + "description": "The list of VMSS VM extensions", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetVMExtension" + }, + "x-ms-identifiers": [ + "name", + "id" + ] + } + } + }, + "VirtualMachineScaleSetVMExtensionsSummary": { + "type": "object", + "description": "Extensions summary for virtual machines of a virtual machine scale set.", + "properties": { + "name": { + "type": "string", + "description": "The extension name.", + "readOnly": true + }, + "statusesSummary": { + "type": "array", + "description": "The extensions information.", + "items": { + "$ref": "#/definitions/VirtualMachineStatusCodeCount" + }, + "readOnly": true, + "x-ms-identifiers": [] + } + } + }, + "VirtualMachineScaleSetVMInstanceIDs": { + "type": "object", + "description": "Specifies a list of virtual machine instance IDs from the VM scale set.", + "properties": { + "instanceIds": { + "type": "array", + "description": "The virtual machine scale set instance ids. Omitting the virtual machine scale set instance ids will result in the operation being performed on all virtual machines in the virtual machine scale set.", + "items": { + "type": "string" + } + } + } + }, + "VirtualMachineScaleSetVMInstanceRequiredIDs": { + "type": "object", + "description": "Specifies a list of virtual machine instance IDs from the VM scale set.", + "properties": { + "instanceIds": { + "type": "array", + "description": "The virtual machine scale set instance ids.", + "items": { + "type": "string" + } + } + }, + "required": [ + "instanceIds" + ] + }, + "VirtualMachineScaleSetVMInstanceView": { + "type": "object", + "description": "The instance view of a virtual machine scale set VM.", + "properties": { + "platformUpdateDomain": { + "type": "integer", + "format": "int32", + "description": "The Update Domain count." + }, + "platformFaultDomain": { + "type": "integer", + "format": "int32", + "description": "The Fault Domain count." + }, + "rdpThumbPrint": { + "type": "string", + "description": "The Remote desktop certificate thumbprint." + }, + "vmAgent": { + "$ref": "#/definitions/VirtualMachineAgentInstanceView", + "description": "The VM Agent running on the virtual machine." + }, + "maintenanceRedeployStatus": { + "$ref": "#/definitions/MaintenanceRedeployStatus", + "description": "The Maintenance Operation status on the virtual machine." + }, + "disks": { + "type": "array", + "description": "The disks information.", + "items": { + "$ref": "#/definitions/DiskInstanceView" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "extensions": { + "type": "array", + "description": "The extensions information.", + "items": { + "$ref": "#/definitions/VirtualMachineExtensionInstanceView" + }, + "x-ms-identifiers": [ + "name", + "type" + ] + }, + "vmHealth": { + "$ref": "#/definitions/VirtualMachineHealthStatus", + "description": "The health status for the VM.", + "readOnly": true + }, + "bootDiagnostics": { + "$ref": "#/definitions/BootDiagnosticsInstanceView", + "description": "Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor." + }, + "statuses": { + "type": "array", + "description": "The resource status information.", + "items": { + "$ref": "#/definitions/InstanceViewStatus" + }, + "x-ms-identifiers": [] + }, + "assignedHost": { + "type": "string", + "description": "Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.", + "readOnly": true + }, + "placementGroupId": { + "type": "string", + "description": "The placement group in which the VM is running. If the VM is deallocated it will not have a placementGroupId." + }, + "computerName": { + "type": "string", + "description": "Specifies the host OS name of the virtual machine.

This name cannot be updated after the VM is created.

**Max-length (Windows):** 15 characters

**Max-length (Linux):** 64 characters.

For naming conventions and restrictions see [Azure infrastructure services implementation guidelines](https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-infrastructure-subscription-accounts-guidelines?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json#1-naming-conventions)." + }, + "osName": { + "type": "string", + "description": "The Operating System running on the hybrid machine." + }, + "osVersion": { + "type": "string", + "description": "The version of Operating System running on the hybrid machine." + }, + "hyperVGeneration": { + "$ref": "#/definitions/HyperVGeneration", + "description": "The hypervisor generation of the Virtual Machine [V1, V2]" + } + } + }, + "VirtualMachineScaleSetVMListResult": { + "type": "object", + "description": "The List Virtual Machine Scale Set VMs operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of virtual machine scale sets VMs.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetVM" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of Virtual Machine Scale Set VMs. Call ListNext() with this to fetch the next page of VMSS VMs." + } + }, + "required": [ + "value" + ] + }, + "VirtualMachineScaleSetVMNetworkProfileConfiguration": { + "type": "object", + "description": "Describes a virtual machine scale set VM network profile.", + "properties": { + "networkInterfaceConfigurations": { + "type": "array", + "description": "The list of network configurations.", + "items": { + "$ref": "#/definitions/VirtualMachineScaleSetNetworkConfiguration" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "VirtualMachineScaleSetVMProfile": { + "type": "object", + "description": "Describes a virtual machine scale set virtual machine profile.", + "properties": { + "osProfile": { + "$ref": "#/definitions/VirtualMachineScaleSetOSProfile", + "description": "Specifies the operating system settings for the virtual machines in the scale set." + }, + "storageProfile": { + "$ref": "#/definitions/VirtualMachineScaleSetStorageProfile", + "description": "Specifies the storage settings for the virtual machine disks." + }, + "networkProfile": { + "$ref": "#/definitions/VirtualMachineScaleSetNetworkProfile", + "description": "Specifies properties of the network interfaces of the virtual machines in the scale set." + }, + "securityProfile": { + "$ref": "#/definitions/SecurityProfile", + "description": "Specifies the Security related profile settings for the virtual machines in the scale set." + }, + "diagnosticsProfile": { + "$ref": "#/definitions/DiagnosticsProfile", + "description": "Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15." + }, + "extensionProfile": { + "$ref": "#/definitions/VirtualMachineScaleSetExtensionProfile", + "description": "Specifies a collection of settings for extensions installed on virtual machines in the scale set." + }, + "licenseType": { + "type": "string", + "description": "Specifies that the image or disk that is being used was licensed on-premises.

Possible values for Windows Server operating system are:

Windows_Client

Windows_Server

Possible values for Linux Server operating system are:

RHEL_BYOS (for RHEL)

SLES_BYOS (for SUSE)

For more information, see [Azure Hybrid Use Benefit for Windows Server](https://docs.microsoft.com/azure/virtual-machines/windows/hybrid-use-benefit-licensing)

[Azure Hybrid Use Benefit for Linux Server](https://docs.microsoft.com/azure/virtual-machines/linux/azure-hybrid-benefit-linux)

Minimum api-version: 2015-06-15" + }, + "priority": { + "$ref": "#/definitions/VirtualMachinePriorityTypes", + "description": "Specifies the priority for the virtual machines in the scale set. Minimum api-version: 2017-10-30-preview." + }, + "evictionPolicy": { + "$ref": "#/definitions/VirtualMachineEvictionPolicyTypes", + "description": "Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview." + }, + "billingProfile": { + "$ref": "#/definitions/BillingProfile", + "description": "Specifies the billing related details of a Azure Spot VMSS. Minimum api-version: 2019-03-01." + }, + "scheduledEventsProfile": { + "$ref": "#/definitions/ScheduledEventsProfile", + "description": "Specifies Scheduled Event related configurations." + }, + "userData": { + "type": "string", + "description": "UserData for the virtual machines in the scale set, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01." + }, + "capacityReservation": { + "$ref": "#/definitions/CapacityReservationProfile", + "description": "Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01." + }, + "applicationProfile": { + "$ref": "#/definitions/ApplicationProfile", + "description": "Specifies the gallery applications that should be made available to the VM/VMSS" + }, + "hardwareProfile": { + "$ref": "#/definitions/VirtualMachineScaleSetHardwareProfile", + "description": "Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01." + }, + "serviceArtifactReference": { + "$ref": "#/definitions/ServiceArtifactReference", + "description": "Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01" + }, + "securityPostureReference": { + "$ref": "#/definitions/SecurityPostureReference", + "description": "Specifies the security posture to be used in the scale set. Minimum api-version: 2023-03-01" + }, + "timeCreated": { + "type": "string", + "format": "date-time", + "description": "Specifies the time in which this VM profile for the Virtual Machine Scale Set was created. This value will be added to VMSS Flex VM tags when creating/updating the VMSS VM Profile. Minimum API version for this property is 2023-09-01.", + "readOnly": true + } + } + }, + "VirtualMachineScaleSetVMProperties": { + "type": "object", + "description": "Describes the properties of a virtual machine scale set virtual machine.", + "properties": { + "latestModelApplied": { + "type": "boolean", + "description": "Specifies whether the latest model has been applied to the virtual machine.", + "readOnly": true + }, + "vmId": { + "type": "string", + "description": "Azure VM unique ID.", + "readOnly": true + }, + "instanceView": { + "$ref": "#/definitions/VirtualMachineScaleSetVMInstanceView", + "description": "The virtual machine instance view.", + "readOnly": true + }, + "hardwareProfile": { + "$ref": "#/definitions/HardwareProfile", + "description": "Specifies the hardware settings for the virtual machine." + }, + "resilientVMDeletionStatus": { + "$ref": "#/definitions/ResilientVMDeletionStatus", + "description": "Specifies the resilient VM deletion status for the virtual machine." + }, + "storageProfile": { + "$ref": "#/definitions/StorageProfile", + "description": "Specifies the storage settings for the virtual machine disks." + }, + "additionalCapabilities": { + "$ref": "#/definitions/AdditionalCapabilities", + "description": "Specifies additional capabilities enabled or disabled on the virtual machine in the scale set. For instance: whether the virtual machine has the capability to support attaching managed data disks with UltraSSD_LRS storage account type." + }, + "osProfile": { + "$ref": "#/definitions/OSProfile", + "description": "Specifies the operating system settings for the virtual machine." + }, + "securityProfile": { + "$ref": "#/definitions/SecurityProfile", + "description": "Specifies the Security related profile settings for the virtual machine." + }, + "networkProfile": { + "$ref": "#/definitions/NetworkProfile", + "description": "Specifies the network interfaces of the virtual machine." + }, + "networkProfileConfiguration": { + "$ref": "#/definitions/VirtualMachineScaleSetVMNetworkProfileConfiguration", + "description": "Specifies the network profile configuration of the virtual machine." + }, + "diagnosticsProfile": { + "$ref": "#/definitions/DiagnosticsProfile", + "description": "Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15." + }, + "availabilitySet": { + "$ref": "./common.json#/definitions/SubResource", + "description": "Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see [Availability sets overview](https://docs.microsoft.com/azure/virtual-machines/availability-set-overview). For more information on Azure planned maintenance, see [Maintenance and updates for Virtual Machines in Azure](https://docs.microsoft.com/azure/virtual-machines/maintenance-and-updates). Currently, a VM can only be added to availability set at creation time. An existing VM cannot be added to an availability set." + }, + "provisioningState": { + "type": "string", + "description": "The provisioning state, which only appears in the response.", + "readOnly": true + }, + "licenseType": { + "type": "string", + "description": "Specifies that the image or disk that is being used was licensed on-premises.

Possible values for Windows Server operating system are:

Windows_Client

Windows_Server

Possible values for Linux Server operating system are:

RHEL_BYOS (for RHEL)

SLES_BYOS (for SUSE)

For more information, see [Azure Hybrid Use Benefit for Windows Server](https://docs.microsoft.com/azure/virtual-machines/windows/hybrid-use-benefit-licensing)

[Azure Hybrid Use Benefit for Linux Server](https://docs.microsoft.com/azure/virtual-machines/linux/azure-hybrid-benefit-linux)

Minimum api-version: 2015-06-15" + }, + "modelDefinitionApplied": { + "type": "string", + "description": "Specifies whether the model applied to the virtual machine is the model of the virtual machine scale set or the customized model for the virtual machine.", + "readOnly": true + }, + "protectionPolicy": { + "$ref": "#/definitions/VirtualMachineScaleSetVMProtectionPolicy", + "description": "Specifies the protection policy of the virtual machine." + }, + "userData": { + "type": "string", + "description": "UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01" + }, + "timeCreated": { + "type": "string", + "format": "date-time", + "description": "Specifies the time at which the Virtual Machine resource was created. Minimum api-version: 2021-11-01.", + "readOnly": true + } + } + }, + "VirtualMachineScaleSetVMProtectionPolicy": { + "type": "object", + "description": "The protection policy of a virtual machine scale set VM.", + "properties": { + "protectFromScaleIn": { + "type": "boolean", + "description": "Indicates that the virtual machine scale set VM shouldn't be considered for deletion during a scale-in operation." + }, + "protectFromScaleSetActions": { + "type": "boolean", + "description": "Indicates that model updates or actions (including scale-in) initiated on the virtual machine scale set should not be applied to the virtual machine scale set VM." + } + } + }, + "VirtualMachineScaleSetVMReimageParameters": { + "type": "object", + "description": "Describes a Virtual Machine Scale Set VM Reimage Parameters.", + "properties": { + "forceUpdateOSDiskForEphemeral": { + "type": "boolean", + "description": "Parameter to force update ephemeral OS disk for a virtual machine scale set VM" + } + }, + "allOf": [ + { + "$ref": "#/definitions/VirtualMachineReimageParameters" + } + ] + }, + "VirtualMachineSize": { + "type": "object", + "description": "Describes the properties of a VM size.", + "properties": { + "name": { + "type": "string", + "description": "The name of the virtual machine size." + }, + "numberOfCores": { + "type": "integer", + "format": "int32", + "description": "The number of cores supported by the virtual machine size. For Constrained vCPU capable VM sizes, this number represents the total vCPUs of quota that the VM uses. For accurate vCPU count, please refer to https://docs.microsoft.com/azure/virtual-machines/constrained-vcpu or https://docs.microsoft.com/rest/api/compute/resourceskus/list" + }, + "osDiskSizeInMB": { + "type": "integer", + "format": "int32", + "description": "The OS disk size, in MB, allowed by the virtual machine size." + }, + "resourceDiskSizeInMB": { + "type": "integer", + "format": "int32", + "description": "The resource disk size, in MB, allowed by the virtual machine size." + }, + "memoryInMB": { + "type": "integer", + "format": "int32", + "description": "The amount of memory, in MB, supported by the virtual machine size." + }, + "maxDataDiskCount": { + "type": "integer", + "format": "int32", + "description": "The maximum number of data disks that can be attached to the virtual machine size." + } + } + }, + "VirtualMachineSizeListResult": { + "type": "object", + "description": "The List Virtual Machine operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of virtual machine sizes.", + "items": { + "$ref": "#/definitions/VirtualMachineSize" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "nextLink": { + "type": "string", + "description": "The link to the next page of items." + } + } + }, + "VirtualMachineSizeTypes": { + "type": "string", + "description": "Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: [List all available virtual machine sizes in an availability set](https://docs.microsoft.com/rest/api/compute/availabilitysets/listavailablesizes), [List all available virtual machine sizes in a region]( https://docs.microsoft.com/rest/api/compute/resourceskus/list), [List all available virtual machine sizes for resizing](https://docs.microsoft.com/rest/api/compute/virtualmachines/listavailablesizes). For more information about virtual machine sizes, see [Sizes for virtual machines](https://docs.microsoft.com/azure/virtual-machines/sizes). The available VM sizes depend on region and availability set.", + "enum": [ + "Basic_A0", + "Basic_A1", + "Basic_A2", + "Basic_A3", + "Basic_A4", + "Standard_A0", + "Standard_A1", + "Standard_A2", + "Standard_A3", + "Standard_A4", + "Standard_A5", + "Standard_A6", + "Standard_A7", + "Standard_A8", + "Standard_A9", + "Standard_A10", + "Standard_A11", + "Standard_A1_v2", + "Standard_A2_v2", + "Standard_A4_v2", + "Standard_A8_v2", + "Standard_A2m_v2", + "Standard_A4m_v2", + "Standard_A8m_v2", + "Standard_B1s", + "Standard_B1ms", + "Standard_B2s", + "Standard_B2ms", + "Standard_B4ms", + "Standard_B8ms", + "Standard_D1", + "Standard_D2", + "Standard_D3", + "Standard_D4", + "Standard_D11", + "Standard_D12", + "Standard_D13", + "Standard_D14", + "Standard_D1_v2", + "Standard_D2_v2", + "Standard_D3_v2", + "Standard_D4_v2", + "Standard_D5_v2", + "Standard_D2_v3", + "Standard_D4_v3", + "Standard_D8_v3", + "Standard_D16_v3", + "Standard_D32_v3", + "Standard_D64_v3", + "Standard_D2s_v3", + "Standard_D4s_v3", + "Standard_D8s_v3", + "Standard_D16s_v3", + "Standard_D32s_v3", + "Standard_D64s_v3", + "Standard_D11_v2", + "Standard_D12_v2", + "Standard_D13_v2", + "Standard_D14_v2", + "Standard_D15_v2", + "Standard_DS1", + "Standard_DS2", + "Standard_DS3", + "Standard_DS4", + "Standard_DS11", + "Standard_DS12", + "Standard_DS13", + "Standard_DS14", + "Standard_DS1_v2", + "Standard_DS2_v2", + "Standard_DS3_v2", + "Standard_DS4_v2", + "Standard_DS5_v2", + "Standard_DS11_v2", + "Standard_DS12_v2", + "Standard_DS13_v2", + "Standard_DS14_v2", + "Standard_DS15_v2", + "Standard_DS13-4_v2", + "Standard_DS13-2_v2", + "Standard_DS14-8_v2", + "Standard_DS14-4_v2", + "Standard_E2_v3", + "Standard_E4_v3", + "Standard_E8_v3", + "Standard_E16_v3", + "Standard_E32_v3", + "Standard_E64_v3", + "Standard_E2s_v3", + "Standard_E4s_v3", + "Standard_E8s_v3", + "Standard_E16s_v3", + "Standard_E32s_v3", + "Standard_E64s_v3", + "Standard_E32-16_v3", + "Standard_E32-8s_v3", + "Standard_E64-32s_v3", + "Standard_E64-16s_v3", + "Standard_F1", + "Standard_F2", + "Standard_F4", + "Standard_F8", + "Standard_F16", + "Standard_F1s", + "Standard_F2s", + "Standard_F4s", + "Standard_F8s", + "Standard_F16s", + "Standard_F2s_v2", + "Standard_F4s_v2", + "Standard_F8s_v2", + "Standard_F16s_v2", + "Standard_F32s_v2", + "Standard_F64s_v2", + "Standard_F72s_v2", + "Standard_G1", + "Standard_G2", + "Standard_G3", + "Standard_G4", + "Standard_G5", + "Standard_GS1", + "Standard_GS2", + "Standard_GS3", + "Standard_GS4", + "Standard_GS5", + "Standard_GS4-8", + "Standard_GS4-4", + "Standard_GS5-16", + "Standard_GS5-8", + "Standard_H8", + "Standard_H16", + "Standard_H8m", + "Standard_H16m", + "Standard_H16r", + "Standard_H16mr", + "Standard_L4s", + "Standard_L8s", + "Standard_L16s", + "Standard_L32s", + "Standard_M64s", + "Standard_M64ms", + "Standard_M128s", + "Standard_M128ms", + "Standard_M64-32ms", + "Standard_M64-16ms", + "Standard_M128-64ms", + "Standard_M128-32ms", + "Standard_NC6", + "Standard_NC12", + "Standard_NC24", + "Standard_NC24r", + "Standard_NC6s_v2", + "Standard_NC12s_v2", + "Standard_NC24s_v2", + "Standard_NC24rs_v2", + "Standard_NC6s_v3", + "Standard_NC12s_v3", + "Standard_NC24s_v3", + "Standard_NC24rs_v3", + "Standard_ND6s", + "Standard_ND12s", + "Standard_ND24s", + "Standard_ND24rs", + "Standard_NV6", + "Standard_NV12", + "Standard_NV24" + ], + "x-ms-enum": { + "name": "VirtualMachineSizeTypes", + "modelAsString": true, + "values": [ + { + "name": "Basic_A0", + "value": "Basic_A0" + }, + { + "name": "Basic_A1", + "value": "Basic_A1" + }, + { + "name": "Basic_A2", + "value": "Basic_A2" + }, + { + "name": "Basic_A3", + "value": "Basic_A3" + }, + { + "name": "Basic_A4", + "value": "Basic_A4" + }, + { + "name": "Standard_A0", + "value": "Standard_A0" + }, + { + "name": "Standard_A1", + "value": "Standard_A1" + }, + { + "name": "Standard_A2", + "value": "Standard_A2" + }, + { + "name": "Standard_A3", + "value": "Standard_A3" + }, + { + "name": "Standard_A4", + "value": "Standard_A4" + }, + { + "name": "Standard_A5", + "value": "Standard_A5" + }, + { + "name": "Standard_A6", + "value": "Standard_A6" + }, + { + "name": "Standard_A7", + "value": "Standard_A7" + }, + { + "name": "Standard_A8", + "value": "Standard_A8" + }, + { + "name": "Standard_A9", + "value": "Standard_A9" + }, + { + "name": "Standard_A10", + "value": "Standard_A10" + }, + { + "name": "Standard_A11", + "value": "Standard_A11" + }, + { + "name": "Standard_A1_v2", + "value": "Standard_A1_v2" + }, + { + "name": "Standard_A2_v2", + "value": "Standard_A2_v2" + }, + { + "name": "Standard_A4_v2", + "value": "Standard_A4_v2" + }, + { + "name": "Standard_A8_v2", + "value": "Standard_A8_v2" + }, + { + "name": "Standard_A2m_v2", + "value": "Standard_A2m_v2" + }, + { + "name": "Standard_A4m_v2", + "value": "Standard_A4m_v2" + }, + { + "name": "Standard_A8m_v2", + "value": "Standard_A8m_v2" + }, + { + "name": "Standard_B1s", + "value": "Standard_B1s" + }, + { + "name": "Standard_B1ms", + "value": "Standard_B1ms" + }, + { + "name": "Standard_B2s", + "value": "Standard_B2s" + }, + { + "name": "Standard_B2ms", + "value": "Standard_B2ms" + }, + { + "name": "Standard_B4ms", + "value": "Standard_B4ms" + }, + { + "name": "Standard_B8ms", + "value": "Standard_B8ms" + }, + { + "name": "Standard_D1", + "value": "Standard_D1" + }, + { + "name": "Standard_D2", + "value": "Standard_D2" + }, + { + "name": "Standard_D3", + "value": "Standard_D3" + }, + { + "name": "Standard_D4", + "value": "Standard_D4" + }, + { + "name": "Standard_D11", + "value": "Standard_D11" + }, + { + "name": "Standard_D12", + "value": "Standard_D12" + }, + { + "name": "Standard_D13", + "value": "Standard_D13" + }, + { + "name": "Standard_D14", + "value": "Standard_D14" + }, + { + "name": "Standard_D1_v2", + "value": "Standard_D1_v2" + }, + { + "name": "Standard_D2_v2", + "value": "Standard_D2_v2" + }, + { + "name": "Standard_D3_v2", + "value": "Standard_D3_v2" + }, + { + "name": "Standard_D4_v2", + "value": "Standard_D4_v2" + }, + { + "name": "Standard_D5_v2", + "value": "Standard_D5_v2" + }, + { + "name": "Standard_D2_v3", + "value": "Standard_D2_v3" + }, + { + "name": "Standard_D4_v3", + "value": "Standard_D4_v3" + }, + { + "name": "Standard_D8_v3", + "value": "Standard_D8_v3" + }, + { + "name": "Standard_D16_v3", + "value": "Standard_D16_v3" + }, + { + "name": "Standard_D32_v3", + "value": "Standard_D32_v3" + }, + { + "name": "Standard_D64_v3", + "value": "Standard_D64_v3" + }, + { + "name": "Standard_D2s_v3", + "value": "Standard_D2s_v3" + }, + { + "name": "Standard_D4s_v3", + "value": "Standard_D4s_v3" + }, + { + "name": "Standard_D8s_v3", + "value": "Standard_D8s_v3" + }, + { + "name": "Standard_D16s_v3", + "value": "Standard_D16s_v3" + }, + { + "name": "Standard_D32s_v3", + "value": "Standard_D32s_v3" + }, + { + "name": "Standard_D64s_v3", + "value": "Standard_D64s_v3" + }, + { + "name": "Standard_D11_v2", + "value": "Standard_D11_v2" + }, + { + "name": "Standard_D12_v2", + "value": "Standard_D12_v2" + }, + { + "name": "Standard_D13_v2", + "value": "Standard_D13_v2" + }, + { + "name": "Standard_D14_v2", + "value": "Standard_D14_v2" + }, + { + "name": "Standard_D15_v2", + "value": "Standard_D15_v2" + }, + { + "name": "Standard_DS1", + "value": "Standard_DS1" + }, + { + "name": "Standard_DS2", + "value": "Standard_DS2" + }, + { + "name": "Standard_DS3", + "value": "Standard_DS3" + }, + { + "name": "Standard_DS4", + "value": "Standard_DS4" + }, + { + "name": "Standard_DS11", + "value": "Standard_DS11" + }, + { + "name": "Standard_DS12", + "value": "Standard_DS12" + }, + { + "name": "Standard_DS13", + "value": "Standard_DS13" + }, + { + "name": "Standard_DS14", + "value": "Standard_DS14" + }, + { + "name": "Standard_DS1_v2", + "value": "Standard_DS1_v2" + }, + { + "name": "Standard_DS2_v2", + "value": "Standard_DS2_v2" + }, + { + "name": "Standard_DS3_v2", + "value": "Standard_DS3_v2" + }, + { + "name": "Standard_DS4_v2", + "value": "Standard_DS4_v2" + }, + { + "name": "Standard_DS5_v2", + "value": "Standard_DS5_v2" + }, + { + "name": "Standard_DS11_v2", + "value": "Standard_DS11_v2" + }, + { + "name": "Standard_DS12_v2", + "value": "Standard_DS12_v2" + }, + { + "name": "Standard_DS13_v2", + "value": "Standard_DS13_v2" + }, + { + "name": "Standard_DS14_v2", + "value": "Standard_DS14_v2" + }, + { + "name": "Standard_DS15_v2", + "value": "Standard_DS15_v2" + }, + { + "name": "Standard_DS13-4_v2", + "value": "Standard_DS13-4_v2" + }, + { + "name": "Standard_DS13-2_v2", + "value": "Standard_DS13-2_v2" + }, + { + "name": "Standard_DS14-8_v2", + "value": "Standard_DS14-8_v2" + }, + { + "name": "Standard_DS14-4_v2", + "value": "Standard_DS14-4_v2" + }, + { + "name": "Standard_E2_v3", + "value": "Standard_E2_v3" + }, + { + "name": "Standard_E4_v3", + "value": "Standard_E4_v3" + }, + { + "name": "Standard_E8_v3", + "value": "Standard_E8_v3" + }, + { + "name": "Standard_E16_v3", + "value": "Standard_E16_v3" + }, + { + "name": "Standard_E32_v3", + "value": "Standard_E32_v3" + }, + { + "name": "Standard_E64_v3", + "value": "Standard_E64_v3" + }, + { + "name": "Standard_E2s_v3", + "value": "Standard_E2s_v3" + }, + { + "name": "Standard_E4s_v3", + "value": "Standard_E4s_v3" + }, + { + "name": "Standard_E8s_v3", + "value": "Standard_E8s_v3" + }, + { + "name": "Standard_E16s_v3", + "value": "Standard_E16s_v3" + }, + { + "name": "Standard_E32s_v3", + "value": "Standard_E32s_v3" + }, + { + "name": "Standard_E64s_v3", + "value": "Standard_E64s_v3" + }, + { + "name": "Standard_E32-16_v3", + "value": "Standard_E32-16_v3" + }, + { + "name": "Standard_E32-8s_v3", + "value": "Standard_E32-8s_v3" + }, + { + "name": "Standard_E64-32s_v3", + "value": "Standard_E64-32s_v3" + }, + { + "name": "Standard_E64-16s_v3", + "value": "Standard_E64-16s_v3" + }, + { + "name": "Standard_F1", + "value": "Standard_F1" + }, + { + "name": "Standard_F2", + "value": "Standard_F2" + }, + { + "name": "Standard_F4", + "value": "Standard_F4" + }, + { + "name": "Standard_F8", + "value": "Standard_F8" + }, + { + "name": "Standard_F16", + "value": "Standard_F16" + }, + { + "name": "Standard_F1s", + "value": "Standard_F1s" + }, + { + "name": "Standard_F2s", + "value": "Standard_F2s" + }, + { + "name": "Standard_F4s", + "value": "Standard_F4s" + }, + { + "name": "Standard_F8s", + "value": "Standard_F8s" + }, + { + "name": "Standard_F16s", + "value": "Standard_F16s" + }, + { + "name": "Standard_F2s_v2", + "value": "Standard_F2s_v2" + }, + { + "name": "Standard_F4s_v2", + "value": "Standard_F4s_v2" + }, + { + "name": "Standard_F8s_v2", + "value": "Standard_F8s_v2" + }, + { + "name": "Standard_F16s_v2", + "value": "Standard_F16s_v2" + }, + { + "name": "Standard_F32s_v2", + "value": "Standard_F32s_v2" + }, + { + "name": "Standard_F64s_v2", + "value": "Standard_F64s_v2" + }, + { + "name": "Standard_F72s_v2", + "value": "Standard_F72s_v2" + }, + { + "name": "Standard_G1", + "value": "Standard_G1" + }, + { + "name": "Standard_G2", + "value": "Standard_G2" + }, + { + "name": "Standard_G3", + "value": "Standard_G3" + }, + { + "name": "Standard_G4", + "value": "Standard_G4" + }, + { + "name": "Standard_G5", + "value": "Standard_G5" + }, + { + "name": "Standard_GS1", + "value": "Standard_GS1" + }, + { + "name": "Standard_GS2", + "value": "Standard_GS2" + }, + { + "name": "Standard_GS3", + "value": "Standard_GS3" + }, + { + "name": "Standard_GS4", + "value": "Standard_GS4" + }, + { + "name": "Standard_GS5", + "value": "Standard_GS5" + }, + { + "name": "Standard_GS4-8", + "value": "Standard_GS4-8" + }, + { + "name": "Standard_GS4-4", + "value": "Standard_GS4-4" + }, + { + "name": "Standard_GS5-16", + "value": "Standard_GS5-16" + }, + { + "name": "Standard_GS5-8", + "value": "Standard_GS5-8" + }, + { + "name": "Standard_H8", + "value": "Standard_H8" + }, + { + "name": "Standard_H16", + "value": "Standard_H16" + }, + { + "name": "Standard_H8m", + "value": "Standard_H8m" + }, + { + "name": "Standard_H16m", + "value": "Standard_H16m" + }, + { + "name": "Standard_H16r", + "value": "Standard_H16r" + }, + { + "name": "Standard_H16mr", + "value": "Standard_H16mr" + }, + { + "name": "Standard_L4s", + "value": "Standard_L4s" + }, + { + "name": "Standard_L8s", + "value": "Standard_L8s" + }, + { + "name": "Standard_L16s", + "value": "Standard_L16s" + }, + { + "name": "Standard_L32s", + "value": "Standard_L32s" + }, + { + "name": "Standard_M64s", + "value": "Standard_M64s" + }, + { + "name": "Standard_M64ms", + "value": "Standard_M64ms" + }, + { + "name": "Standard_M128s", + "value": "Standard_M128s" + }, + { + "name": "Standard_M128ms", + "value": "Standard_M128ms" + }, + { + "name": "Standard_M64-32ms", + "value": "Standard_M64-32ms" + }, + { + "name": "Standard_M64-16ms", + "value": "Standard_M64-16ms" + }, + { + "name": "Standard_M128-64ms", + "value": "Standard_M128-64ms" + }, + { + "name": "Standard_M128-32ms", + "value": "Standard_M128-32ms" + }, + { + "name": "Standard_NC6", + "value": "Standard_NC6" + }, + { + "name": "Standard_NC12", + "value": "Standard_NC12" + }, + { + "name": "Standard_NC24", + "value": "Standard_NC24" + }, + { + "name": "Standard_NC24r", + "value": "Standard_NC24r" + }, + { + "name": "Standard_NC6s_v2", + "value": "Standard_NC6s_v2" + }, + { + "name": "Standard_NC12s_v2", + "value": "Standard_NC12s_v2" + }, + { + "name": "Standard_NC24s_v2", + "value": "Standard_NC24s_v2" + }, + { + "name": "Standard_NC24rs_v2", + "value": "Standard_NC24rs_v2" + }, + { + "name": "Standard_NC6s_v3", + "value": "Standard_NC6s_v3" + }, + { + "name": "Standard_NC12s_v3", + "value": "Standard_NC12s_v3" + }, + { + "name": "Standard_NC24s_v3", + "value": "Standard_NC24s_v3" + }, + { + "name": "Standard_NC24rs_v3", + "value": "Standard_NC24rs_v3" + }, + { + "name": "Standard_ND6s", + "value": "Standard_ND6s" + }, + { + "name": "Standard_ND12s", + "value": "Standard_ND12s" + }, + { + "name": "Standard_ND24s", + "value": "Standard_ND24s" + }, + { + "name": "Standard_ND24rs", + "value": "Standard_ND24rs" + }, + { + "name": "Standard_NV6", + "value": "Standard_NV6" + }, + { + "name": "Standard_NV12", + "value": "Standard_NV12" + }, + { + "name": "Standard_NV24", + "value": "Standard_NV24" + } + ] + } + }, + "VirtualMachineSoftwarePatchProperties": { + "type": "object", + "description": "Describes the properties of a Virtual Machine software patch.", + "properties": { + "patchId": { + "type": "string", + "description": "A unique identifier for the patch.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "The friendly name of the patch.", + "readOnly": true + }, + "version": { + "type": "string", + "description": "The version number of the patch. This property applies only to Linux patches.", + "readOnly": true + }, + "kbId": { + "type": "string", + "description": "The KBID of the patch. Only applies to Windows patches.", + "readOnly": true + }, + "classifications": { + "type": "array", + "description": "The classification(s) of the patch as provided by the patch publisher.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "rebootBehavior": { + "$ref": "#/definitions/VMGuestPatchRebootBehavior", + "description": "Describes the reboot requirements of the patch.", + "readOnly": true + }, + "activityId": { + "type": "string", + "description": "The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.", + "readOnly": true + }, + "publishedDate": { + "type": "string", + "format": "date-time", + "description": "The UTC timestamp when the repository published this patch.", + "readOnly": true + }, + "lastModifiedDateTime": { + "type": "string", + "format": "date-time", + "description": "The UTC timestamp of the last update to this patch record.", + "readOnly": true + }, + "assessmentState": { + "$ref": "#/definitions/PatchAssessmentState", + "description": "Describes the availability of a given patch.", + "readOnly": true + } + } + }, + "VirtualMachineStatusCodeCount": { + "type": "object", + "description": "The status code and count of the virtual machine scale set instance view status summary.", + "properties": { + "code": { + "type": "string", + "description": "The instance view status code.", + "readOnly": true + }, + "count": { + "type": "integer", + "format": "int32", + "description": "The number of instances having a particular status code.", + "readOnly": true + } + } + }, + "VirtualMachineUpdate": { + "type": "object", + "description": "Describes a Virtual Machine Update.", + "properties": { + "plan": { + "$ref": "#/definitions/Plan", + "description": "Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click **Want to deploy programmatically, Get Started ->**. Enter any required information and then click **Save**." + }, + "properties": { + "$ref": "#/definitions/VirtualMachineProperties", + "description": "Describes the properties of a Virtual Machine.", + "x-ms-client-flatten": true + }, + "identity": { + "$ref": "#/definitions/VirtualMachineIdentity", + "description": "The identity of the virtual machine, if configured." + }, + "zones": { + "type": "array", + "description": "The virtual machine zones.", + "items": { + "type": "string" + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResource" + } + ] + }, + "VmDiskTypes": { + "type": "string", + "description": "VM disk types which are disallowed.", + "enum": [ + "None", + "Unmanaged" + ], + "x-ms-enum": { + "name": "VmDiskTypes", + "modelAsString": true, + "values": [ + { + "name": "None", + "value": "None" + }, + { + "name": "Unmanaged", + "value": "Unmanaged" + } + ] + } + }, + "VmImagesInEdgeZoneListResult": { + "type": "object", + "description": "The List VmImages in EdgeZone operation response.", + "properties": { + "value": { + "type": "array", + "description": "The list of VMImages in EdgeZone", + "items": { + "$ref": "#/definitions/VirtualMachineImageResource" + } + }, + "nextLink": { + "type": "string", + "description": "The URI to fetch the next page of VMImages in EdgeZone. Call ListNext() with this URI to fetch the next page of VmImages." + } + } + }, + "WinRMConfiguration": { + "type": "object", + "description": "Describes Windows Remote Management configuration of the VM", + "properties": { + "listeners": { + "type": "array", + "description": "The list of Windows Remote Management listeners", + "items": { + "$ref": "#/definitions/WinRMListener" + }, + "x-ms-identifiers": [] + } + } + }, + "WinRMListener": { + "type": "object", + "description": "Describes Protocol and thumbprint of Windows Remote Management listener", + "properties": { + "protocol": { + "$ref": "#/definitions/ProtocolTypes", + "description": "Specifies the protocol of WinRM listener. Possible values are: **http,** **https.**" + }, + "certificateUrl": { + "type": "string", + "description": "This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see [Add a key or secret to the key vault](https://docs.microsoft.com/azure/key-vault/key-vault-get-started/#add). In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8:

{
\"data\":\"\",
\"dataType\":\"pfx\",
\"password\":\"\"
}
To install certificates on a virtual machine it is recommended to use the [Azure Key Vault virtual machine extension for Linux](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-linux) or the [Azure Key Vault virtual machine extension for Windows](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-windows)." + } + } + }, + "WindowsConfiguration": { + "type": "object", + "description": "Specifies Windows operating system settings on the virtual machine.", + "properties": { + "provisionVMAgent": { + "type": "boolean", + "description": "Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later." + }, + "enableAutomaticUpdates": { + "type": "boolean", + "description": "Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning." + }, + "timeZone": { + "type": "string", + "description": "Specifies the time zone of the virtual machine. e.g. \"Pacific Standard Time\". Possible values can be [TimeZoneInfo.Id](https://docs.microsoft.com/dotnet/api/system.timezoneinfo.id?#System_TimeZoneInfo_Id) value from time zones returned by [TimeZoneInfo.GetSystemTimeZones](https://docs.microsoft.com/dotnet/api/system.timezoneinfo.getsystemtimezones)." + }, + "additionalUnattendContent": { + "type": "array", + "description": "Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.", + "items": { + "$ref": "#/definitions/AdditionalUnattendContent" + }, + "x-ms-identifiers": [] + }, + "patchSettings": { + "$ref": "#/definitions/PatchSettings", + "description": "[Preview Feature] Specifies settings related to VM Guest Patching on Windows." + }, + "winRM": { + "$ref": "#/definitions/WinRMConfiguration", + "description": "Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell." + }, + "enableVMAgentPlatformUpdates": { + "type": "boolean", + "description": "Indicates whether VMAgent Platform Updates are enabled for the Windows Virtual Machine.", + "readOnly": true + } + } + }, + "WindowsParameters": { + "type": "object", + "description": "Input for InstallPatches on a Windows VM, as directly received by the API", + "properties": { + "classificationsToInclude": { + "type": "array", + "description": "The update classifications to select when installing patches for Windows.", + "items": { + "$ref": "#/definitions/VMGuestPatchClassificationWindows" + } + }, + "kbNumbersToInclude": { + "type": "array", + "description": "Kbs to include in the patch operation", + "items": { + "type": "string" + } + }, + "kbNumbersToExclude": { + "type": "array", + "description": "Kbs to exclude in the patch operation", + "items": { + "type": "string" + } + }, + "excludeKbsRequiringReboot": { + "type": "boolean", + "description": "Filters out Kbs that don't have an InstallationRebootBehavior of 'NeverReboots' when this is set to true." + }, + "maxPatchPublishDate": { + "type": "string", + "format": "date-time", + "description": "This is used to install patches that were published on or before this given max published date." + } + } + }, + "WindowsPatchAssessmentMode": { + "type": "string", + "description": "Specifies the mode of VM Guest patch assessment for the IaaS virtual machine.

Possible values are:

**ImageDefault** - You control the timing of patch assessments on a virtual machine.

**AutomaticByPlatform** - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.", + "enum": [ + "ImageDefault", + "AutomaticByPlatform" + ], + "x-ms-enum": { + "name": "WindowsPatchAssessmentMode", + "modelAsString": true, + "values": [ + { + "name": "ImageDefault", + "value": "ImageDefault" + }, + { + "name": "AutomaticByPlatform", + "value": "AutomaticByPlatform" + } + ] + } + }, + "WindowsVMGuestPatchAutomaticByPlatformRebootSetting": { + "type": "string", + "description": "Specifies the reboot setting for all AutomaticByPlatform patch installation operations.", + "enum": [ + "Unknown", + "IfRequired", + "Never", + "Always" + ], + "x-ms-enum": { + "name": "WindowsVMGuestPatchAutomaticByPlatformRebootSetting", + "modelAsString": true, + "values": [ + { + "name": "Unknown", + "value": "Unknown" + }, + { + "name": "IfRequired", + "value": "IfRequired" + }, + { + "name": "Never", + "value": "Never" + }, + { + "name": "Always", + "value": "Always" + } + ] + } + }, + "WindowsVMGuestPatchAutomaticByPlatformSettings": { + "type": "object", + "description": "Specifies additional settings to be applied when patch mode AutomaticByPlatform is selected in Windows patch settings.", + "properties": { + "rebootSetting": { + "$ref": "#/definitions/WindowsVMGuestPatchAutomaticByPlatformRebootSetting", + "description": "Specifies the reboot setting for all AutomaticByPlatform patch installation operations." + }, + "bypassPlatformSafetyChecksOnUserSchedule": { + "type": "boolean", + "description": "Enables customer to schedule patching without accidental upgrades" + } + } + }, + "WindowsVMGuestPatchMode": { + "type": "string", + "description": "Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible.

Possible values are:

**Manual** - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false

**AutomaticByOS** - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true.

**AutomaticByPlatform** - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true", + "enum": [ + "Manual", + "AutomaticByOS", + "AutomaticByPlatform" + ], + "x-ms-enum": { + "name": "WindowsVMGuestPatchMode", + "modelAsString": true, + "values": [ + { + "name": "Manual", + "value": "Manual" + }, + { + "name": "AutomaticByOS", + "value": "AutomaticByOS" + }, + { + "name": "AutomaticByPlatform", + "value": "AutomaticByPlatform" + } + ] + } + }, + "ZonalPlatformFaultDomainAlignMode": { + "type": "string", + "description": "Specifies the align mode between Virtual Machine Scale Set compute and storage Fault Domain count.", + "enum": [ + "Aligned", + "Unaligned" + ], + "x-ms-enum": { + "name": "ZonalPlatformFaultDomainAlignMode", + "modelAsString": true, + "values": [ + { + "name": "Aligned", + "value": "Aligned" + }, + { + "name": "Unaligned", + "value": "Unaligned" + } + ] + } + }, + "ZonePlacementPolicyType": { + "type": "string", + "description": "Specifies the policy for virtual machine's placement in availability zone. Possible values are: **Any** - An availability zone will be automatically picked by system as part of virtual machine creation.", + "enum": [ + "Any" + ], + "x-ms-enum": { + "name": "ZonePlacementPolicyType", + "modelAsString": true, + "values": [ + { + "name": "Any", + "value": "Any" + } + ] + } + } + }, + "parameters": {} +} diff --git a/src/Compute/Compute.Management.Sdk/Rest-api-specs/DiskRP.json b/src/Compute/Compute.Management.Sdk/Rest-api-specs/DiskRP.json new file mode 100644 index 000000000000..645dcca57972 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Rest-api-specs/DiskRP.json @@ -0,0 +1,4154 @@ +{ + "swagger": "2.0", + "info": { + "title": "Azure Compute resource management API.", + "version": "2025-01-02", + "description": "Compute Client", + "x-typespec-generated": [ + { + "emitter": "@azure-tools/typespec-autorest" + } + ] + }, + "schemes": [ + "https" + ], + "host": "management.azure.com", + "produces": [ + "application/json" + ], + "consumes": [ + "application/json" + ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "description": "Azure Active Directory OAuth2 Flow.", + "flow": "implicit", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "tags": [ + { + "name": "Disks" + }, + { + "name": "DiskAccesses" + }, + { + "name": "PrivateEndpointConnections" + }, + { + "name": "DiskEncryptionSets" + }, + { + "name": "DiskRestorePoints" + }, + { + "name": "Snapshots" + } + ], + "paths": { + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/diskAccesses": { + "get": { + "operationId": "DiskAccesses_List", + "tags": [ + "DiskAccesses" + ], + "description": "Lists all the disk access resources under a subscription.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DiskAccessList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/diskEncryptionSets": { + "get": { + "operationId": "DiskEncryptionSets_List", + "tags": [ + "DiskEncryptionSets" + ], + "description": "Lists all the disk encryption sets under a subscription.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DiskEncryptionSetList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/disks": { + "get": { + "operationId": "Disks_List", + "tags": [ + "Disks" + ], + "description": "Lists all the disks under a subscription.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DiskList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/snapshots": { + "get": { + "operationId": "Snapshots_List", + "tags": [ + "Snapshots" + ], + "description": "Lists snapshots under a subscription.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/SnapshotList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskAccesses": { + "get": { + "operationId": "DiskAccesses_ListByResourceGroup", + "tags": [ + "DiskAccesses" + ], + "description": "Lists all the disk access resources under a resource group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DiskAccessList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskAccesses/{diskAccessName}": { + "get": { + "operationId": "DiskAccesses_Get", + "tags": [ + "DiskAccesses" + ], + "description": "Gets information about a disk access resource.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskAccessName", + "in": "path", + "description": "The name of the disk access resource that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiskAccess" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "DiskAccesses_CreateOrUpdate", + "tags": [ + "DiskAccesses" + ], + "description": "Creates or updates a disk access resource", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskAccessName", + "in": "path", + "description": "The name of the disk access resource that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + }, + { + "name": "diskAccess", + "in": "body", + "description": "disk access object supplied in the body of the Put disk access operation.", + "required": true, + "schema": { + "$ref": "#/definitions/DiskAccess" + } + } + ], + "responses": { + "200": { + "description": "Resource 'DiskAccess' update operation succeeded", + "schema": { + "$ref": "#/definitions/DiskAccess" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "DiskAccesses_Update", + "tags": [ + "DiskAccesses" + ], + "description": "Updates (patches) a disk access resource.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskAccessName", + "in": "path", + "description": "The name of the disk access resource that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + }, + { + "name": "diskAccess", + "in": "body", + "description": "disk access object supplied in the body of the Patch disk access operation.", + "required": true, + "schema": { + "$ref": "#/definitions/DiskAccessUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiskAccess" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "DiskAccesses_Delete", + "tags": [ + "DiskAccesses" + ], + "description": "Deletes a disk access resource.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskAccessName", + "in": "path", + "description": "The name of the disk access resource that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskAccesses/{diskAccessName}/privateEndpointConnections": { + "get": { + "operationId": "DiskAccesses_ListPrivateEndpointConnections", + "tags": [ + "PrivateEndpointConnections" + ], + "description": "List information about private endpoint connections under a disk access resource", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskAccessName", + "in": "path", + "description": "The name of the disk access resource that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/PrivateEndpointConnectionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskAccesses/{diskAccessName}/privateEndpointConnections/{privateEndpointConnectionName}": { + "get": { + "operationId": "DiskAccesses_GetAPrivateEndpointConnection", + "tags": [ + "PrivateEndpointConnections" + ], + "description": "Gets information about a private endpoint connection under a disk access resource.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskAccessName", + "in": "path", + "description": "The name of the disk access resource that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "The name of the private endpoint connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PrivateEndpointConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "DiskAccesses_UpdateAPrivateEndpointConnection", + "tags": [ + "PrivateEndpointConnections" + ], + "description": "Approve or reject a private endpoint connection under disk access resource, this can't be used to create a new private endpoint connection.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskAccessName", + "in": "path", + "description": "The name of the disk access resource that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "The name of the private endpoint connection.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnection", + "in": "body", + "description": "private endpoint connection object supplied in the body of the Put private endpoint connection operation.", + "required": true, + "schema": { + "$ref": "#/definitions/PrivateEndpointConnection" + } + } + ], + "responses": { + "200": { + "description": "Resource 'PrivateEndpointConnection' update operation succeeded", + "schema": { + "$ref": "#/definitions/PrivateEndpointConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "DiskAccesses_DeleteAPrivateEndpointConnection", + "tags": [ + "PrivateEndpointConnections" + ], + "description": "Deletes a private endpoint connection under a disk access resource.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskAccessName", + "in": "path", + "description": "The name of the disk access resource that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "The name of the private endpoint connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskAccesses/{diskAccessName}/privatelinkresources": { + "get": { + "operationId": "DiskAccesses_GetPrivateLinkResources", + "tags": [ + "DiskAccesses" + ], + "description": "Gets the private link resources possible under disk access resource", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskAccessName", + "in": "path", + "description": "The name of the disk access resource that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PrivateLinkResourceListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets": { + "get": { + "operationId": "DiskEncryptionSets_ListByResourceGroup", + "tags": [ + "DiskEncryptionSets" + ], + "description": "Lists all the disk encryption sets under a resource group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DiskEncryptionSetList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{diskEncryptionSetName}": { + "get": { + "operationId": "DiskEncryptionSets_Get", + "tags": [ + "DiskEncryptionSets" + ], + "description": "Gets information about a disk encryption set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskEncryptionSetName", + "in": "path", + "description": "The name of the disk encryption set that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiskEncryptionSet" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "DiskEncryptionSets_CreateOrUpdate", + "tags": [ + "DiskEncryptionSets" + ], + "description": "Creates or updates a disk encryption set", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskEncryptionSetName", + "in": "path", + "description": "The name of the disk encryption set that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + }, + { + "name": "diskEncryptionSet", + "in": "body", + "description": "disk encryption set object supplied in the body of the Put disk encryption set operation.", + "required": true, + "schema": { + "$ref": "#/definitions/DiskEncryptionSet" + } + } + ], + "responses": { + "200": { + "description": "Resource 'DiskEncryptionSet' update operation succeeded", + "schema": { + "$ref": "#/definitions/DiskEncryptionSet" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "DiskEncryptionSets_Update", + "tags": [ + "DiskEncryptionSets" + ], + "description": "Updates (patches) a disk encryption set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskEncryptionSetName", + "in": "path", + "description": "The name of the disk encryption set that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + }, + { + "name": "diskEncryptionSet", + "in": "body", + "description": "disk encryption set object supplied in the body of the Patch disk encryption set operation.", + "required": true, + "schema": { + "$ref": "#/definitions/DiskEncryptionSetUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiskEncryptionSet" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "DiskEncryptionSets_Delete", + "tags": [ + "DiskEncryptionSets" + ], + "description": "Deletes a disk encryption set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskEncryptionSetName", + "in": "path", + "description": "The name of the disk encryption set that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{diskEncryptionSetName}/associatedResources": { + "get": { + "operationId": "DiskEncryptionSets_ListAssociatedResources", + "tags": [ + "DiskEncryptionSets" + ], + "description": "Lists all resources that are encrypted with this disk encryption set.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskEncryptionSetName", + "in": "path", + "description": "The name of the disk encryption set that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ResourceUriList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks": { + "get": { + "operationId": "Disks_ListByResourceGroup", + "tags": [ + "Disks" + ], + "description": "Lists all the disks under a resource group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DiskList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks/{diskName}": { + "get": { + "operationId": "Disks_Get", + "tags": [ + "Disks" + ], + "description": "Gets information about a disk.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskName", + "in": "path", + "description": "The name of the managed disk that is being created. The name can't be changed after the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Disk" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "Disks_CreateOrUpdate", + "tags": [ + "Disks" + ], + "description": "Creates or updates a disk.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskName", + "in": "path", + "description": "The name of the managed disk that is being created. The name can't be changed after the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + }, + { + "name": "disk", + "in": "body", + "description": "Disk object supplied in the body of the Put disk operation.", + "required": true, + "schema": { + "$ref": "#/definitions/Disk" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Disk' update operation succeeded", + "schema": { + "$ref": "#/definitions/Disk" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "Disks_Update", + "tags": [ + "Disks" + ], + "description": "Updates (patches) a disk.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskName", + "in": "path", + "description": "The name of the managed disk that is being created. The name can't be changed after the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + }, + { + "name": "disk", + "in": "body", + "description": "Disk object supplied in the body of the Patch disk operation.", + "required": true, + "schema": { + "$ref": "#/definitions/DiskUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Disk" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "Disks_Delete", + "tags": [ + "Disks" + ], + "description": "Deletes a disk.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskName", + "in": "path", + "description": "The name of the managed disk that is being created. The name can't be changed after the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks/{diskName}/beginGetAccess": { + "post": { + "operationId": "Disks_GrantAccess", + "tags": [ + "Disks" + ], + "description": "Grants access to a disk.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskName", + "in": "path", + "description": "The name of the managed disk that is being created. The name can't be changed after the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + }, + { + "name": "grantAccessData", + "in": "body", + "description": "Access data object supplied in the body of the get disk access operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GrantAccessData" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AccessUri" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks/{diskName}/endGetAccess": { + "post": { + "operationId": "Disks_RevokeAccess", + "tags": [ + "Disks" + ], + "description": "Revokes access to a disk.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "diskName", + "in": "path", + "description": "The name of the managed disk that is being created. The name can't be changed after the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/restorePointCollections/{restorePointCollectionName}/restorePoints/{vmRestorePointName}/diskRestorePoints": { + "get": { + "operationId": "DiskRestorePoint_ListByRestorePoint", + "tags": [ + "DiskRestorePoints" + ], + "description": "Lists diskRestorePoints under a vmRestorePoint.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "restorePointCollectionName", + "in": "path", + "description": "The name of the restore point collection that the disk restore point belongs.", + "required": true, + "type": "string" + }, + { + "name": "vmRestorePointName", + "in": "path", + "description": "The name of the vm restore point that the disk disk restore point belongs.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiskRestorePointList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/restorePointCollections/{restorePointCollectionName}/restorePoints/{vmRestorePointName}/diskRestorePoints/{diskRestorePointName}": { + "get": { + "operationId": "DiskRestorePoint_Get", + "tags": [ + "DiskRestorePoints" + ], + "description": "Get disk restorePoint resource", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "restorePointCollectionName", + "in": "path", + "description": "The name of the restore point collection that the disk restore point belongs.", + "required": true, + "type": "string" + }, + { + "name": "vmRestorePointName", + "in": "path", + "description": "The name of the vm restore point that the disk disk restore point belongs.", + "required": true, + "type": "string" + }, + { + "name": "diskRestorePointName", + "in": "path", + "description": "The name of the DiskRestorePoint", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiskRestorePoint" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/restorePointCollections/{restorePointCollectionName}/restorePoints/{vmRestorePointName}/diskRestorePoints/{diskRestorePointName}/beginGetAccess": { + "post": { + "operationId": "DiskRestorePoint_GrantAccess", + "tags": [ + "DiskRestorePoints" + ], + "description": "Grants access to a diskRestorePoint.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "restorePointCollectionName", + "in": "path", + "description": "The name of the restore point collection that the disk restore point belongs.", + "required": true, + "type": "string" + }, + { + "name": "vmRestorePointName", + "in": "path", + "description": "The name of the vm restore point that the disk disk restore point belongs.", + "required": true, + "type": "string" + }, + { + "name": "diskRestorePointName", + "in": "path", + "description": "The name of the DiskRestorePoint", + "required": true, + "type": "string" + }, + { + "name": "grantAccessData", + "in": "body", + "description": "Access data object supplied in the body of the get disk access operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GrantAccessData" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AccessUri" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/restorePointCollections/{restorePointCollectionName}/restorePoints/{vmRestorePointName}/diskRestorePoints/{diskRestorePointName}/endGetAccess": { + "post": { + "operationId": "DiskRestorePoint_RevokeAccess", + "tags": [ + "DiskRestorePoints" + ], + "description": "Revokes access to a diskRestorePoint.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "restorePointCollectionName", + "in": "path", + "description": "The name of the restore point collection that the disk restore point belongs.", + "required": true, + "type": "string" + }, + { + "name": "vmRestorePointName", + "in": "path", + "description": "The name of the vm restore point that the disk disk restore point belongs.", + "required": true, + "type": "string" + }, + { + "name": "diskRestorePointName", + "in": "path", + "description": "The name of the DiskRestorePoint", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots": { + "get": { + "operationId": "Snapshots_ListByResourceGroup", + "tags": [ + "Snapshots" + ], + "description": "Lists snapshots under a resource group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/SnapshotList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots/{snapshotName}": { + "get": { + "operationId": "Snapshots_Get", + "tags": [ + "Snapshots" + ], + "description": "Gets information about a snapshot.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "snapshotName", + "in": "path", + "description": "The name of the snapshot that is being created. The name can't be changed after the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name length is 80 characters.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Snapshot" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "Snapshots_CreateOrUpdate", + "tags": [ + "Snapshots" + ], + "description": "Creates or updates a snapshot.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "snapshotName", + "in": "path", + "description": "The name of the snapshot that is being created. The name can't be changed after the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name length is 80 characters.", + "required": true, + "type": "string" + }, + { + "name": "snapshot", + "in": "body", + "description": "Snapshot object supplied in the body of the Put disk operation.", + "required": true, + "schema": { + "$ref": "#/definitions/Snapshot" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Snapshot' update operation succeeded", + "schema": { + "$ref": "#/definitions/Snapshot" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "Snapshots_Update", + "tags": [ + "Snapshots" + ], + "description": "Updates (patches) a snapshot.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "snapshotName", + "in": "path", + "description": "The name of the snapshot that is being created. The name can't be changed after the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name length is 80 characters.", + "required": true, + "type": "string" + }, + { + "name": "snapshot", + "in": "body", + "description": "Snapshot object supplied in the body of the Patch snapshot operation.", + "required": true, + "schema": { + "$ref": "#/definitions/SnapshotUpdate" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Snapshot' update operation succeeded", + "schema": { + "$ref": "#/definitions/Snapshot" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "Snapshots_Delete", + "tags": [ + "Snapshots" + ], + "description": "Deletes a snapshot.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "snapshotName", + "in": "path", + "description": "The name of the snapshot that is being created. The name can't be changed after the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name length is 80 characters.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots/{snapshotName}/beginGetAccess": { + "post": { + "operationId": "Snapshots_GrantAccess", + "tags": [ + "Snapshots" + ], + "description": "Grants access to a snapshot.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "snapshotName", + "in": "path", + "description": "The name of the snapshot that is being created. The name can't be changed after the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name length is 80 characters.", + "required": true, + "type": "string" + }, + { + "name": "grantAccessData", + "in": "body", + "description": "Access data object supplied in the body of the get snapshot access operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GrantAccessData" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AccessUri" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots/{snapshotName}/endGetAccess": { + "post": { + "operationId": "Snapshots_RevokeAccess", + "tags": [ + "Snapshots" + ], + "description": "Revokes access to a snapshot.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "snapshotName", + "in": "path", + "description": "The name of the snapshot that is being created. The name can't be changed after the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name length is 80 characters.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + } + }, + "definitions": { + "AccessLevel": { + "type": "string", + "description": "The Access Level, accepted values include None, Read, Write.", + "enum": [ + "None", + "Read", + "Write" + ], + "x-ms-enum": { + "name": "AccessLevel", + "modelAsString": true, + "values": [ + { + "name": "None", + "value": "None" + }, + { + "name": "Read", + "value": "Read" + }, + { + "name": "Write", + "value": "Write" + } + ] + } + }, + "AccessUri": { + "type": "object", + "description": "A disk access SAS uri.", + "properties": { + "accessSAS": { + "type": "string", + "description": "A SAS uri for accessing a disk.", + "readOnly": true + }, + "securityDataAccessSAS": { + "type": "string", + "description": "A SAS uri for accessing a VM guest state.", + "readOnly": true + }, + "securityMetadataAccessSAS": { + "type": "string", + "description": "A SAS uri for accessing a VM metadata.", + "readOnly": true + } + } + }, + "Architecture": { + "type": "string", + "description": "CPU architecture supported by an OS disk.", + "enum": [ + "x64", + "Arm64" + ], + "x-ms-enum": { + "name": "Architecture", + "modelAsString": true, + "values": [ + { + "name": "x64", + "value": "x64" + }, + { + "name": "Arm64", + "value": "Arm64" + } + ] + } + }, + "AvailabilityPolicy": { + "type": "object", + "description": "In the case of an availability or connectivity issue with the data disk, specify the behavior of your VM", + "properties": { + "actionOnDiskDelay": { + "$ref": "#/definitions/AvailabilityPolicyDiskDelay", + "description": "Determines on how to handle disks with slow I/O." + } + } + }, + "AvailabilityPolicyDiskDelay": { + "type": "string", + "description": "Determines on how to handle disks with slow I/O.", + "enum": [ + "None", + "AutomaticReattach" + ], + "x-ms-enum": { + "name": "AvailabilityPolicyDiskDelay", + "modelAsString": true, + "values": [ + { + "name": "None", + "value": "None", + "description": "Defaults to behavior without av policy specified, which is VM restart upon slow disk io." + }, + { + "name": "AutomaticReattach", + "value": "AutomaticReattach", + "description": "Upon a disk io failure or slow response, try detaching then reattaching the disk." + } + ] + } + }, + "CopyCompletionError": { + "type": "object", + "description": "Indicates the error details if the background copy of a resource created via the CopyStart operation fails.", + "properties": { + "errorCode": { + "$ref": "#/definitions/CopyCompletionErrorReason", + "description": "Indicates the error code if the background copy of a resource created via the CopyStart operation fails." + }, + "errorMessage": { + "type": "string", + "description": "Indicates the error message if the background copy of a resource created via the CopyStart operation fails." + } + }, + "required": [ + "errorCode", + "errorMessage" + ] + }, + "CopyCompletionErrorReason": { + "type": "string", + "description": "Indicates the error code if the background copy of a resource created via the CopyStart operation fails.", + "enum": [ + "CopySourceNotFound" + ], + "x-ms-enum": { + "name": "CopyCompletionErrorReason", + "modelAsString": true, + "values": [ + { + "name": "CopySourceNotFound", + "value": "CopySourceNotFound", + "description": "Indicates that the source snapshot was deleted while the background copy of the resource created via CopyStart operation was in progress." + } + ] + } + }, + "CreationData": { + "type": "object", + "description": "Data used when creating a disk.", + "properties": { + "createOption": { + "$ref": "#/definitions/DiskCreateOption", + "description": "This enumerates the possible sources of a disk's creation." + }, + "storageAccountId": { + "type": "string", + "description": "Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk." + }, + "imageReference": { + "$ref": "#/definitions/ImageDiskReference", + "description": "Disk source information for PIR or user images." + }, + "galleryImageReference": { + "$ref": "#/definitions/ImageDiskReference", + "description": "Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk." + }, + "sourceUri": { + "type": "string", + "description": "If createOption is Import, this is the URI of a blob to be imported into a managed disk." + }, + "sourceResourceId": { + "type": "string", + "description": "If createOption is Copy, this is the ARM id of the source snapshot or disk." + }, + "sourceUniqueId": { + "type": "string", + "description": "If this field is set, this is the unique id identifying the source of this resource.", + "readOnly": true + }, + "uploadSizeBytes": { + "type": "integer", + "format": "int64", + "description": "If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer)." + }, + "logicalSectorSize": { + "type": "integer", + "format": "int32", + "description": "Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default." + }, + "securityDataUri": { + "type": "string", + "description": "If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state." + }, + "securityMetadataUri": { + "type": "string", + "format": "uri", + "description": "If createOption is ImportSecure, this is the URI of a blob to be imported into VM metadata for Confidential VM." + }, + "performancePlus": { + "type": "boolean", + "description": "Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled." + }, + "elasticSanResourceId": { + "type": "string", + "description": "Required if createOption is CopyFromSanSnapshot. This is the ARM id of the source elastic san volume snapshot." + }, + "provisionedBandwidthCopySpeed": { + "$ref": "#/definitions/ProvisionedBandwidthCopyOption", + "description": "If this field is set on a snapshot and createOption is CopyStart, the snapshot will be copied at a quicker speed." + }, + "instantAccessDurationMinutes": { + "type": "integer", + "format": "int64", + "description": "For snapshots created from Premium SSD v2 or Ultra disk, this property determines the time in minutes the snapshot is retained for instant access to enable faster restore.", + "minimum": 1 + } + }, + "required": [ + "createOption" + ] + }, + "DataAccessAuthMode": { + "type": "string", + "description": "Additional authentication requirements when exporting or uploading to a disk or snapshot.", + "enum": [ + "AzureActiveDirectory", + "None" + ], + "x-ms-enum": { + "name": "DataAccessAuthMode", + "modelAsString": true, + "values": [ + { + "name": "AzureActiveDirectory", + "value": "AzureActiveDirectory", + "description": "When export/upload URL is used, the system checks if the user has an identity in Azure Active Directory and has necessary permissions to export/upload the data. Please refer to aka.ms/DisksAzureADAuth." + }, + { + "name": "None", + "value": "None", + "description": "No additional authentication would be performed when accessing export/upload URL." + } + ] + } + }, + "Disk": { + "type": "object", + "description": "Disk resource.", + "properties": { + "properties": { + "$ref": "#/definitions/DiskProperties", + "description": "Disk resource properties.", + "x-ms-client-flatten": true + }, + "managedBy": { + "type": "string", + "description": "A relative URI containing the ID of the VM that has the disk attached.", + "readOnly": true + }, + "managedByExtended": { + "type": "array", + "description": "List of relative URIs containing the IDs of the VMs that have the disk attached. maxShares should be set to a value greater than one for disks to allow attaching them to multiple VMs.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "sku": { + "$ref": "#/definitions/DiskSku", + "description": "The disks sku name. Can be Standard_LRS, Premium_LRS, StandardSSD_LRS, UltraSSD_LRS, Premium_ZRS, StandardSSD_ZRS, or PremiumV2_LRS." + }, + "zones": { + "type": "array", + "description": "The Logical zone list for Disk.", + "items": { + "type": "string" + } + }, + "extendedLocation": { + "$ref": "./common.json#/definitions/ExtendedLocation", + "description": "The extended location where the disk will be created. Extended location cannot be changed." + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "DiskAccess": { + "type": "object", + "description": "disk access resource.", + "properties": { + "properties": { + "$ref": "#/definitions/DiskAccessProperties", + "x-ms-client-flatten": true + }, + "extendedLocation": { + "$ref": "./common.json#/definitions/ExtendedLocation", + "description": "The extended location where the disk access will be created. Extended location cannot be changed." + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "DiskAccessList": { + "type": "object", + "description": "The List disk access operation response.", + "properties": { + "value": { + "type": "array", + "description": "The DiskAccess items on this page", + "items": { + "$ref": "#/definitions/DiskAccess" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DiskAccessProperties": { + "type": "object", + "properties": { + "privateEndpointConnections": { + "type": "array", + "description": "A readonly collection of private endpoint connections created on the disk. Currently only one endpoint connection is supported.", + "items": { + "$ref": "#/definitions/PrivateEndpointConnection" + }, + "readOnly": true + }, + "provisioningState": { + "type": "string", + "description": "The disk access resource provisioning state.", + "readOnly": true + }, + "timeCreated": { + "type": "string", + "format": "date-time", + "description": "The time when the disk access was created.", + "readOnly": true + } + } + }, + "DiskAccessUpdate": { + "type": "object", + "description": "Used for updating a disk access resource.", + "properties": { + "tags": { + "type": "object", + "description": "Resource tags", + "additionalProperties": { + "type": "string" + } + } + } + }, + "DiskCreateOption": { + "type": "string", + "description": "This enumerates the possible sources of a disk's creation.", + "enum": [ + "Empty", + "Attach", + "FromImage", + "Import", + "Copy", + "Restore", + "Upload", + "CopyStart", + "ImportSecure", + "UploadPreparedSecure", + "CopyFromSanSnapshot" + ], + "x-ms-enum": { + "name": "DiskCreateOption", + "modelAsString": true, + "values": [ + { + "name": "Empty", + "value": "Empty", + "description": "Create an empty data disk of a size given by diskSizeGB." + }, + { + "name": "Attach", + "value": "Attach", + "description": "Disk will be attached to a VM." + }, + { + "name": "FromImage", + "value": "FromImage", + "description": "Create a new disk from a platform image specified by the given imageReference or galleryImageReference." + }, + { + "name": "Import", + "value": "Import", + "description": "Create a disk by importing from a blob specified by a sourceUri in a storage account specified by storageAccountId." + }, + { + "name": "Copy", + "value": "Copy", + "description": "Create a new disk or snapshot by copying from a disk or snapshot specified by the given sourceResourceId." + }, + { + "name": "Restore", + "value": "Restore", + "description": "Create a new disk by copying from a backup recovery point." + }, + { + "name": "Upload", + "value": "Upload", + "description": "Create a new disk by obtaining a write token and using it to directly upload the contents of the disk." + }, + { + "name": "CopyStart", + "value": "CopyStart", + "description": "Create a new disk by using a deep copy process, where the resource creation is considered complete only after all data has been copied from the source." + }, + { + "name": "ImportSecure", + "value": "ImportSecure", + "description": "Similar to Import create option. Create a new Trusted Launch VM or Confidential VM supported disk by importing additional blobs for VM guest state specified by securityDataUri and VM metadata specified by securityMetadataUri in storage account specified by storageAccountId. The VM metadata is optional and only required for certain Confidential VM configurations and not required for Trusted Launch VM." + }, + { + "name": "UploadPreparedSecure", + "value": "UploadPreparedSecure", + "description": "Similar to Upload create option. Create a new Trusted Launch VM or Confidential VM supported disk and upload using write token in disk, VM guest state and VM metadata. The VM metadata is optional and only required for certain Confidential VM configurations and not required for Trusted Launch VM." + }, + { + "name": "CopyFromSanSnapshot", + "value": "CopyFromSanSnapshot", + "description": "Create a new disk by exporting from elastic san volume snapshot" + } + ] + } + }, + "DiskEncryptionSet": { + "type": "object", + "description": "disk encryption set resource.", + "properties": { + "properties": { + "$ref": "#/definitions/EncryptionSetProperties", + "x-ms-client-flatten": true + }, + "identity": { + "$ref": "#/definitions/EncryptionSetIdentity", + "description": "The managed identity for the disk encryption set. It should be given permission on the key vault before it can be used to encrypt disks." + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "DiskEncryptionSetIdentityType": { + "type": "string", + "description": "The type of Managed Identity used by the DiskEncryptionSet. Only SystemAssigned is supported for new creations. Disk Encryption Sets can be updated with Identity type None during migration of subscription to a new Azure Active Directory tenant; it will cause the encrypted resources to lose access to the keys.", + "enum": [ + "SystemAssigned", + "UserAssigned", + "SystemAssigned, UserAssigned", + "None" + ], + "x-ms-enum": { + "name": "DiskEncryptionSetIdentityType", + "modelAsString": true, + "values": [ + { + "name": "SystemAssigned", + "value": "SystemAssigned" + }, + { + "name": "UserAssigned", + "value": "UserAssigned" + }, + { + "name": "SystemAssigned, UserAssigned", + "value": "SystemAssigned, UserAssigned" + }, + { + "name": "None", + "value": "None" + } + ] + } + }, + "DiskEncryptionSetList": { + "type": "object", + "description": "The List disk encryption set operation response.", + "properties": { + "value": { + "type": "array", + "description": "The DiskEncryptionSet items on this page", + "items": { + "$ref": "#/definitions/DiskEncryptionSet" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DiskEncryptionSetType": { + "type": "string", + "description": "The type of key used to encrypt the data of the disk.", + "enum": [ + "EncryptionAtRestWithCustomerKey", + "EncryptionAtRestWithPlatformAndCustomerKeys", + "ConfidentialVmEncryptedWithCustomerKey" + ], + "x-ms-enum": { + "name": "DiskEncryptionSetType", + "modelAsString": true, + "values": [ + { + "name": "EncryptionAtRestWithCustomerKey", + "value": "EncryptionAtRestWithCustomerKey", + "description": "Resource using diskEncryptionSet would be encrypted at rest with Customer managed key that can be changed and revoked by a customer." + }, + { + "name": "EncryptionAtRestWithPlatformAndCustomerKeys", + "value": "EncryptionAtRestWithPlatformAndCustomerKeys", + "description": "Resource using diskEncryptionSet would be encrypted at rest with two layers of encryption. One of the keys is Customer managed and the other key is Platform managed." + }, + { + "name": "ConfidentialVmEncryptedWithCustomerKey", + "value": "ConfidentialVmEncryptedWithCustomerKey", + "description": "Confidential VM supported disk and VM guest state would be encrypted with customer managed key." + } + ] + } + }, + "DiskEncryptionSetUpdate": { + "type": "object", + "description": "disk encryption set update resource.", + "properties": { + "properties": { + "$ref": "#/definitions/DiskEncryptionSetUpdateProperties", + "description": "disk encryption set resource update properties.", + "x-ms-client-flatten": true + }, + "tags": { + "type": "object", + "description": "Resource tags", + "additionalProperties": { + "type": "string" + } + }, + "identity": { + "$ref": "#/definitions/EncryptionSetIdentity", + "description": "The managed identity for the disk encryption set. It should be given permission on the key vault before it can be used to encrypt disks." + } + } + }, + "DiskEncryptionSetUpdateProperties": { + "type": "object", + "description": "disk encryption set resource update properties.", + "properties": { + "encryptionType": { + "$ref": "#/definitions/DiskEncryptionSetType", + "description": "The type of key used to encrypt the data of the disk." + }, + "activeKey": { + "$ref": "#/definitions/KeyForDiskEncryptionSet", + "description": "Key Vault Key Url to be used for server side encryption of Managed Disks and Snapshots" + }, + "rotationToLatestKeyVersionEnabled": { + "type": "boolean", + "description": "Set this flag to true to enable auto-updating of this disk encryption set to the latest key version." + }, + "federatedClientId": { + "type": "string", + "description": "Multi-tenant application client id to access key vault in a different tenant. Setting the value to 'None' will clear the property." + } + } + }, + "DiskList": { + "type": "object", + "description": "The List Disks operation response.", + "properties": { + "value": { + "type": "array", + "description": "The Disk items on this page", + "items": { + "$ref": "#/definitions/Disk" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DiskProperties": { + "type": "object", + "description": "Disk resource properties.", + "properties": { + "timeCreated": { + "type": "string", + "format": "date-time", + "description": "The time when the disk was created.", + "readOnly": true + }, + "osType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "The Operating System type." + }, + "hyperVGeneration": { + "$ref": "#/definitions/HyperVGeneration", + "description": "The hypervisor generation of the Virtual Machine. Applicable to OS disks only." + }, + "purchasePlan": { + "$ref": "#/definitions/DiskPurchasePlan", + "description": "Purchase plan information for the the image from which the OS disk was created. E.g. - {name: 2019-Datacenter, publisher: MicrosoftWindowsServer, product: WindowsServer}" + }, + "supportedCapabilities": { + "$ref": "#/definitions/SupportedCapabilities", + "description": "List of supported capabilities for the image from which the OS disk was created." + }, + "creationData": { + "$ref": "#/definitions/CreationData", + "description": "Disk source information. CreationData information cannot be changed after the disk has been created." + }, + "diskSizeGB": { + "type": "integer", + "format": "int32", + "description": "If creationData.createOption is Empty, this field is mandatory and it indicates the size of the disk to create. If this field is present for updates or creation with other options, it indicates a resize. Resizes are only allowed if the disk is not attached to a running VM, and can only increase the disk's size." + }, + "diskSizeBytes": { + "type": "integer", + "format": "int64", + "description": "The size of the disk in bytes. This field is read only.", + "readOnly": true + }, + "uniqueId": { + "type": "string", + "description": "Unique Guid identifying the resource.", + "readOnly": true + }, + "encryptionSettingsCollection": { + "$ref": "#/definitions/EncryptionSettingsCollection", + "description": "Encryption settings collection used for Azure Disk Encryption, can contain multiple encryption settings per disk or snapshot." + }, + "provisioningState": { + "type": "string", + "description": "The disk provisioning state.", + "readOnly": true + }, + "diskIOPSReadWrite": { + "type": "integer", + "format": "int64", + "description": "The number of IOPS allowed for this disk; only settable for UltraSSD disks. One operation can transfer between 4k and 256k bytes." + }, + "diskMBpsReadWrite": { + "type": "integer", + "format": "int64", + "description": "The bandwidth allowed for this disk; only settable for UltraSSD disks. MBps means millions of bytes per second - MB here uses the ISO notation, of powers of 10." + }, + "diskIOPSReadOnly": { + "type": "integer", + "format": "int64", + "description": "The total number of IOPS that will be allowed across all VMs mounting the shared disk as ReadOnly. One operation can transfer between 4k and 256k bytes." + }, + "diskMBpsReadOnly": { + "type": "integer", + "format": "int64", + "description": "The total throughput (MBps) that will be allowed across all VMs mounting the shared disk as ReadOnly. MBps means millions of bytes per second - MB here uses the ISO notation, of powers of 10." + }, + "diskState": { + "$ref": "#/definitions/DiskState", + "description": "The state of the disk.", + "readOnly": true + }, + "encryption": { + "$ref": "#/definitions/Encryption", + "description": "Encryption property can be used to encrypt data at rest with customer managed keys or platform managed keys." + }, + "maxShares": { + "type": "integer", + "format": "int32", + "description": "The maximum number of VMs that can attach to the disk at the same time. Value greater than one indicates a disk that can be mounted on multiple VMs at the same time." + }, + "shareInfo": { + "type": "array", + "description": "Details of the list of all VMs that have the disk attached. maxShares should be set to a value greater than one for disks to allow attaching them to multiple VMs.", + "items": { + "$ref": "#/definitions/ShareInfoElement" + }, + "readOnly": true, + "x-ms-identifiers": [ + "vmUri" + ] + }, + "networkAccessPolicy": { + "$ref": "#/definitions/NetworkAccessPolicy", + "description": "Policy for accessing the disk via network." + }, + "diskAccessId": { + "type": "string", + "description": "ARM id of the DiskAccess resource for using private endpoints on disks." + }, + "burstingEnabledTime": { + "type": "string", + "format": "date-time", + "description": "Latest time when bursting was last enabled on a disk.", + "readOnly": true + }, + "tier": { + "type": "string", + "description": "Performance tier of the disk (e.g, P4, S10) as described here: https://azure.microsoft.com/en-us/pricing/details/managed-disks/. Does not apply to Ultra disks." + }, + "burstingEnabled": { + "type": "boolean", + "description": "Set to true to enable bursting beyond the provisioned performance target of the disk. Bursting is disabled by default. Does not apply to Ultra disks." + }, + "propertyUpdatesInProgress": { + "$ref": "#/definitions/PropertyUpdatesInProgress", + "description": "Properties of the disk for which update is pending.", + "readOnly": true + }, + "supportsHibernation": { + "type": "boolean", + "description": "Indicates the OS on a disk supports hibernation." + }, + "securityProfile": { + "$ref": "#/definitions/DiskSecurityProfile", + "description": "Contains the security related information for the resource." + }, + "completionPercent": { + "type": "number", + "format": "float", + "description": "Percentage complete for the background copy when a resource is created via the CopyStart operation." + }, + "publicNetworkAccess": { + "$ref": "#/definitions/PublicNetworkAccess", + "description": "Policy for controlling export on the disk." + }, + "dataAccessAuthMode": { + "$ref": "#/definitions/DataAccessAuthMode", + "description": "Additional authentication requirements when exporting or uploading to a disk or snapshot." + }, + "optimizedForFrequentAttach": { + "type": "boolean", + "description": "Setting this property to true improves reliability and performance of data disks that are frequently (more than 5 times a day) by detached from one virtual machine and attached to another. This property should not be set for disks that are not detached and attached frequently as it causes the disks to not align with the fault domain of the virtual machine." + }, + "LastOwnershipUpdateTime": { + "type": "string", + "format": "date-time", + "description": "The UTC time when the ownership state of the disk was last changed i.e., the time the disk was last attached or detached from a VM or the time when the VM to which the disk was attached was deallocated or started.", + "readOnly": true, + "x-ms-client-name": "lastOwnershipUpdateTime" + }, + "availabilityPolicy": { + "$ref": "#/definitions/AvailabilityPolicy", + "description": "Determines how platform treats disk failures" + } + }, + "required": [ + "creationData" + ] + }, + "DiskPurchasePlan": { + "type": "object", + "description": "Used for establishing the purchase context of any 3rd Party artifact through MarketPlace.", + "properties": { + "name": { + "type": "string", + "description": "The plan ID." + }, + "publisher": { + "type": "string", + "description": "The publisher ID." + }, + "product": { + "type": "string", + "description": "Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element." + }, + "promotionCode": { + "type": "string", + "description": "The Offer Promotion Code." + } + }, + "required": [ + "name", + "publisher", + "product" + ] + }, + "DiskRestorePoint": { + "type": "object", + "description": "Properties of disk restore point", + "properties": { + "properties": { + "$ref": "#/definitions/DiskRestorePointProperties", + "description": "Properties of an incremental disk restore point", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/ProxyResource" + } + ] + }, + "DiskRestorePointList": { + "type": "object", + "description": "The List Disk Restore Points operation response.", + "properties": { + "value": { + "type": "array", + "description": "The DiskRestorePoint items on this page", + "items": { + "$ref": "#/definitions/DiskRestorePoint" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DiskRestorePointProperties": { + "type": "object", + "description": "Properties of an incremental disk restore point", + "properties": { + "timeCreated": { + "type": "string", + "format": "date-time", + "description": "The timestamp of restorePoint creation", + "readOnly": true + }, + "sourceResourceId": { + "type": "string", + "description": "arm id of source disk or source disk restore point.", + "readOnly": true + }, + "osType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "The Operating System type.", + "readOnly": true + }, + "hyperVGeneration": { + "$ref": "#/definitions/HyperVGeneration", + "description": "The hypervisor generation of the Virtual Machine. Applicable to OS disks only." + }, + "purchasePlan": { + "$ref": "#/definitions/DiskPurchasePlan", + "description": "Purchase plan information for the the image from which the OS disk was created." + }, + "supportedCapabilities": { + "$ref": "#/definitions/SupportedCapabilities", + "description": "List of supported capabilities for the image from which the OS disk was created." + }, + "familyId": { + "type": "string", + "description": "id of the backing snapshot's MIS family", + "readOnly": true + }, + "sourceUniqueId": { + "type": "string", + "description": "unique incarnation id of the source disk", + "readOnly": true + }, + "encryption": { + "$ref": "#/definitions/Encryption", + "description": "Encryption property can be used to encrypt data at rest with customer managed keys or platform managed keys.", + "readOnly": true + }, + "supportsHibernation": { + "type": "boolean", + "description": "Indicates the OS on a disk supports hibernation." + }, + "networkAccessPolicy": { + "$ref": "#/definitions/NetworkAccessPolicy", + "description": "Policy for accessing the disk via network." + }, + "publicNetworkAccess": { + "$ref": "#/definitions/PublicNetworkAccess", + "description": "Policy for controlling export on the disk." + }, + "diskAccessId": { + "type": "string", + "description": "ARM id of the DiskAccess resource for using private endpoints on disks." + }, + "completionPercent": { + "type": "number", + "format": "float", + "description": "Percentage complete for the background copy of disk restore point when source resource is from a different region." + }, + "replicationState": { + "type": "string", + "description": "Replication state of disk restore point when source resource is from a different region.", + "readOnly": true + }, + "sourceResourceLocation": { + "type": "string", + "description": "Location of source disk or source disk restore point when source resource is from a different region.", + "readOnly": true + }, + "securityProfile": { + "$ref": "#/definitions/DiskSecurityProfile", + "description": "Contains the security related information for the resource." + }, + "logicalSectorSize": { + "type": "integer", + "format": "int32", + "description": "Logical sector size in bytes for disk restore points of UltraSSD_LRS and PremiumV2_LRS disks. Supported values are 512 and 4096. 4096 is the default.", + "readOnly": true + } + } + }, + "DiskSecurityProfile": { + "type": "object", + "description": "Contains the security related information for the resource.", + "properties": { + "securityType": { + "$ref": "#/definitions/DiskSecurityTypes", + "description": "Specifies the SecurityType of the VM. Applicable for OS disks only." + }, + "secureVMDiskEncryptionSetId": { + "type": "string", + "description": "ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key" + } + } + }, + "DiskSecurityTypes": { + "type": "string", + "description": "Specifies the SecurityType of the VM. Applicable for OS disks only.", + "enum": [ + "TrustedLaunch", + "ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKey", + "ConfidentialVM_DiskEncryptedWithPlatformKey", + "ConfidentialVM_DiskEncryptedWithCustomerKey", + "ConfidentialVM_NonPersistedTPM" + ], + "x-ms-enum": { + "name": "DiskSecurityTypes", + "modelAsString": true, + "values": [ + { + "name": "TrustedLaunch", + "value": "TrustedLaunch", + "description": "Trusted Launch provides security features such as secure boot and virtual Trusted Platform Module (vTPM)" + }, + { + "name": "ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKey", + "value": "ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKey", + "description": "Indicates Confidential VM disk with only VM guest state encrypted" + }, + { + "name": "ConfidentialVM_DiskEncryptedWithPlatformKey", + "value": "ConfidentialVM_DiskEncryptedWithPlatformKey", + "description": "Indicates Confidential VM disk with both OS disk and VM guest state encrypted with a platform managed key" + }, + { + "name": "ConfidentialVM_DiskEncryptedWithCustomerKey", + "value": "ConfidentialVM_DiskEncryptedWithCustomerKey", + "description": "Indicates Confidential VM disk with both OS disk and VM guest state encrypted with a customer managed key" + }, + { + "name": "ConfidentialVM_NonPersistedTPM", + "value": "ConfidentialVM_NonPersistedTPM", + "description": "Indicates Confidential VM disk with a ephemeral vTPM. vTPM state is not persisted across VM reboots." + } + ] + } + }, + "DiskSku": { + "type": "object", + "description": "The disks sku name. Can be Standard_LRS, Premium_LRS, StandardSSD_LRS, UltraSSD_LRS, Premium_ZRS, StandardSSD_ZRS, or PremiumV2_LRS.", + "properties": { + "name": { + "$ref": "#/definitions/DiskStorageAccountTypes", + "description": "The sku name." + }, + "tier": { + "type": "string", + "description": "The sku tier.", + "readOnly": true + } + } + }, + "DiskState": { + "type": "string", + "description": "This enumerates the possible state of the disk.", + "enum": [ + "Unattached", + "Attached", + "Reserved", + "Frozen", + "ActiveSAS", + "ActiveSASFrozen", + "ReadyToUpload", + "ActiveUpload" + ], + "x-ms-enum": { + "name": "DiskState", + "modelAsString": true, + "values": [ + { + "name": "Unattached", + "value": "Unattached", + "description": "The disk is not being used and can be attached to a VM." + }, + { + "name": "Attached", + "value": "Attached", + "description": "The disk is currently attached to a running VM." + }, + { + "name": "Reserved", + "value": "Reserved", + "description": "The disk is attached to a stopped-deallocated VM." + }, + { + "name": "Frozen", + "value": "Frozen", + "description": "The disk is attached to a VM which is in hibernated state." + }, + { + "name": "ActiveSAS", + "value": "ActiveSAS", + "description": "The disk currently has an Active SAS Uri associated with it." + }, + { + "name": "ActiveSASFrozen", + "value": "ActiveSASFrozen", + "description": "The disk is attached to a VM in hibernated state and has an active SAS URI associated with it." + }, + { + "name": "ReadyToUpload", + "value": "ReadyToUpload", + "description": "A disk is ready to be created by upload by requesting a write token." + }, + { + "name": "ActiveUpload", + "value": "ActiveUpload", + "description": "A disk is created for upload and a write token has been issued for uploading to it." + } + ] + } + }, + "DiskStorageAccountTypes": { + "type": "string", + "description": "The sku name.", + "enum": [ + "Standard_LRS", + "Premium_LRS", + "StandardSSD_LRS", + "UltraSSD_LRS", + "Premium_ZRS", + "StandardSSD_ZRS", + "PremiumV2_LRS" + ], + "x-ms-enum": { + "name": "DiskStorageAccountTypes", + "modelAsString": true, + "values": [ + { + "name": "Standard_LRS", + "value": "Standard_LRS", + "description": "Standard HDD locally redundant storage. Best for backup, non-critical, and infrequent access." + }, + { + "name": "Premium_LRS", + "value": "Premium_LRS", + "description": "Premium SSD locally redundant storage. Best for production and performance sensitive workloads." + }, + { + "name": "StandardSSD_LRS", + "value": "StandardSSD_LRS", + "description": "Standard SSD locally redundant storage. Best for web servers, lightly used enterprise applications and dev/test." + }, + { + "name": "UltraSSD_LRS", + "value": "UltraSSD_LRS", + "description": "Ultra SSD locally redundant storage. Best for IO-intensive workloads such as SAP HANA, top tier databases (for example, SQL, Oracle), and other transaction-heavy workloads." + }, + { + "name": "Premium_ZRS", + "value": "Premium_ZRS", + "description": "Premium SSD zone redundant storage. Best for the production workloads that need storage resiliency against zone failures." + }, + { + "name": "StandardSSD_ZRS", + "value": "StandardSSD_ZRS", + "description": "Standard SSD zone redundant storage. Best for web servers, lightly used enterprise applications and dev/test that need storage resiliency against zone failures." + }, + { + "name": "PremiumV2_LRS", + "value": "PremiumV2_LRS", + "description": "Premium SSD v2 locally redundant storage. Best for production and performance-sensitive workloads that consistently require low latency and high IOPS and throughput." + } + ] + } + }, + "DiskUpdate": { + "type": "object", + "description": "Disk update resource.", + "properties": { + "properties": { + "$ref": "#/definitions/DiskUpdateProperties", + "description": "Disk resource update properties.", + "x-ms-client-flatten": true + }, + "tags": { + "type": "object", + "description": "Resource tags", + "additionalProperties": { + "type": "string" + } + }, + "sku": { + "$ref": "#/definitions/DiskSku", + "description": "The disks sku name. Can be Standard_LRS, Premium_LRS, StandardSSD_LRS, UltraSSD_LRS, Premium_ZRS, StandardSSD_ZRS, or PremiumV2_LRS." + } + } + }, + "DiskUpdateProperties": { + "type": "object", + "description": "Disk resource update properties.", + "properties": { + "osType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "the Operating System type." + }, + "diskSizeGB": { + "type": "integer", + "format": "int32", + "description": "If creationData.createOption is Empty, this field is mandatory and it indicates the size of the disk to create. If this field is present for updates or creation with other options, it indicates a resize. Resizes are only allowed if the disk is not attached to a running VM, and can only increase the disk's size." + }, + "encryptionSettingsCollection": { + "$ref": "#/definitions/EncryptionSettingsCollection", + "description": "Encryption settings collection used be Azure Disk Encryption, can contain multiple encryption settings per disk or snapshot." + }, + "diskIOPSReadWrite": { + "type": "integer", + "format": "int64", + "description": "The number of IOPS allowed for this disk; only settable for UltraSSD disks. One operation can transfer between 4k and 256k bytes." + }, + "diskMBpsReadWrite": { + "type": "integer", + "format": "int64", + "description": "The bandwidth allowed for this disk; only settable for UltraSSD disks. MBps means millions of bytes per second - MB here uses the ISO notation, of powers of 10." + }, + "diskIOPSReadOnly": { + "type": "integer", + "format": "int64", + "description": "The total number of IOPS that will be allowed across all VMs mounting the shared disk as ReadOnly. One operation can transfer between 4k and 256k bytes." + }, + "diskMBpsReadOnly": { + "type": "integer", + "format": "int64", + "description": "The total throughput (MBps) that will be allowed across all VMs mounting the shared disk as ReadOnly. MBps means millions of bytes per second - MB here uses the ISO notation, of powers of 10." + }, + "maxShares": { + "type": "integer", + "format": "int32", + "description": "The maximum number of VMs that can attach to the disk at the same time. Value greater than one indicates a disk that can be mounted on multiple VMs at the same time." + }, + "encryption": { + "$ref": "#/definitions/Encryption", + "description": "Encryption property can be used to encrypt data at rest with customer managed keys or platform managed keys." + }, + "networkAccessPolicy": { + "$ref": "#/definitions/NetworkAccessPolicy", + "description": "Policy for accessing the disk via network." + }, + "diskAccessId": { + "type": "string", + "description": "ARM id of the DiskAccess resource for using private endpoints on disks." + }, + "tier": { + "type": "string", + "description": "Performance tier of the disk (e.g, P4, S10) as described here: https://azure.microsoft.com/en-us/pricing/details/managed-disks/. Does not apply to Ultra disks." + }, + "burstingEnabled": { + "type": "boolean", + "description": "Set to true to enable bursting beyond the provisioned performance target of the disk. Bursting is disabled by default. Does not apply to Ultra disks." + }, + "purchasePlan": { + "$ref": "#/definitions/DiskPurchasePlan", + "description": "Purchase plan information to be added on the OS disk" + }, + "supportedCapabilities": { + "$ref": "#/definitions/SupportedCapabilities", + "description": "List of supported capabilities to be added on the OS disk." + }, + "propertyUpdatesInProgress": { + "$ref": "#/definitions/PropertyUpdatesInProgress", + "description": "Properties of the disk for which update is pending.", + "readOnly": true + }, + "supportsHibernation": { + "type": "boolean", + "description": "Indicates the OS on a disk supports hibernation." + }, + "publicNetworkAccess": { + "$ref": "#/definitions/PublicNetworkAccess", + "description": "Policy for controlling export on the disk." + }, + "dataAccessAuthMode": { + "$ref": "#/definitions/DataAccessAuthMode", + "description": "Additional authentication requirements when exporting or uploading to a disk or snapshot." + }, + "optimizedForFrequentAttach": { + "type": "boolean", + "description": "Setting this property to true improves reliability and performance of data disks that are frequently (more than 5 times a day) by detached from one virtual machine and attached to another. This property should not be set for disks that are not detached and attached frequently as it causes the disks to not align with the fault domain of the virtual machine." + }, + "availabilityPolicy": { + "$ref": "#/definitions/AvailabilityPolicy", + "description": "Determines how platform treats disk failures" + } + } + }, + "Encryption": { + "type": "object", + "description": "Encryption at rest settings for disk or snapshot", + "properties": { + "diskEncryptionSetId": { + "type": "string", + "description": "ResourceId of the disk encryption set to use for enabling encryption at rest." + }, + "type": { + "$ref": "#/definitions/EncryptionType", + "description": "The type of key used to encrypt the data of the disk." + } + } + }, + "EncryptionSetIdentity": { + "type": "object", + "description": "The managed identity for the disk encryption set. It should be given permission on the key vault before it can be used to encrypt disks.", + "properties": { + "type": { + "$ref": "#/definitions/DiskEncryptionSetIdentityType", + "description": "The type of Managed Identity used by the DiskEncryptionSet. Only SystemAssigned is supported for new creations. Disk Encryption Sets can be updated with Identity type None during migration of subscription to a new Azure Active Directory tenant; it will cause the encrypted resources to lose access to the keys." + }, + "principalId": { + "type": "string", + "description": "The object id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-identity-principal-id header in the PUT request if the resource has a systemAssigned(implicit) identity", + "readOnly": true + }, + "tenantId": { + "type": "string", + "description": "The tenant id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-client-tenant-id header in the PUT request if the resource has a systemAssigned(implicit) identity", + "readOnly": true + }, + "userAssignedIdentities": { + "type": "object", + "description": "The list of user identities associated with the disk encryption set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.", + "additionalProperties": { + "$ref": "#/definitions/UserAssignedIdentitiesValue" + } + } + } + }, + "EncryptionSetProperties": { + "type": "object", + "properties": { + "encryptionType": { + "$ref": "#/definitions/DiskEncryptionSetType", + "description": "The type of key used to encrypt the data of the disk." + }, + "activeKey": { + "$ref": "#/definitions/KeyForDiskEncryptionSet", + "description": "The key vault key which is currently used by this disk encryption set." + }, + "previousKeys": { + "type": "array", + "description": "A readonly collection of key vault keys previously used by this disk encryption set while a key rotation is in progress. It will be empty if there is no ongoing key rotation.", + "items": { + "$ref": "#/definitions/KeyForDiskEncryptionSet" + }, + "readOnly": true, + "x-ms-identifiers": [ + "sourceVault/id" + ] + }, + "provisioningState": { + "type": "string", + "description": "The disk encryption set provisioning state.", + "readOnly": true + }, + "rotationToLatestKeyVersionEnabled": { + "type": "boolean", + "description": "Set this flag to true to enable auto-updating of this disk encryption set to the latest key version." + }, + "lastKeyRotationTimestamp": { + "type": "string", + "format": "date-time", + "description": "The time when the active key of this disk encryption set was updated.", + "readOnly": true + }, + "autoKeyRotationError": { + "$ref": "./common.json#/definitions/ApiError", + "description": "The error that was encountered during auto-key rotation. If an error is present, then auto-key rotation will not be attempted until the error on this disk encryption set is fixed.", + "readOnly": true + }, + "federatedClientId": { + "type": "string", + "description": "Multi-tenant application client id to access key vault in a different tenant. Setting the value to 'None' will clear the property." + } + } + }, + "EncryptionSettingsCollection": { + "type": "object", + "description": "Encryption settings for disk or snapshot", + "properties": { + "enabled": { + "type": "boolean", + "description": "Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged." + }, + "encryptionSettings": { + "type": "array", + "description": "A collection of encryption settings, one for each disk volume.", + "items": { + "$ref": "#/definitions/EncryptionSettingsElement" + }, + "x-ms-identifiers": [ + "diskEncryptionKey/sourceVault/id" + ] + }, + "encryptionSettingsVersion": { + "type": "string", + "description": "Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption." + } + }, + "required": [ + "enabled" + ] + }, + "EncryptionSettingsElement": { + "type": "object", + "description": "Encryption settings for one disk volume.", + "properties": { + "diskEncryptionKey": { + "$ref": "#/definitions/KeyVaultAndSecretReference", + "description": "Key Vault Secret Url and vault id of the disk encryption key" + }, + "keyEncryptionKey": { + "$ref": "#/definitions/KeyVaultAndKeyReference", + "description": "Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key." + } + } + }, + "EncryptionType": { + "type": "string", + "description": "The type of key used to encrypt the data of the disk.", + "enum": [ + "EncryptionAtRestWithPlatformKey", + "EncryptionAtRestWithCustomerKey", + "EncryptionAtRestWithPlatformAndCustomerKeys" + ], + "x-ms-enum": { + "name": "EncryptionType", + "modelAsString": true, + "values": [ + { + "name": "EncryptionAtRestWithPlatformKey", + "value": "EncryptionAtRestWithPlatformKey", + "description": "Disk is encrypted at rest with Platform managed key. It is the default encryption type. This is not a valid encryption type for disk encryption sets." + }, + { + "name": "EncryptionAtRestWithCustomerKey", + "value": "EncryptionAtRestWithCustomerKey", + "description": "Disk is encrypted at rest with Customer managed key that can be changed and revoked by a customer." + }, + { + "name": "EncryptionAtRestWithPlatformAndCustomerKeys", + "value": "EncryptionAtRestWithPlatformAndCustomerKeys", + "description": "Disk is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed." + } + ] + } + }, + "FileFormat": { + "type": "string", + "description": "Used to specify the file format when making request for SAS on a VHDX file format snapshot", + "enum": [ + "VHD", + "VHDX" + ], + "x-ms-enum": { + "name": "FileFormat", + "modelAsString": true, + "values": [ + { + "name": "VHD", + "value": "VHD", + "description": "A VHD file is a disk image file in the Virtual Hard Disk file format." + }, + { + "name": "VHDX", + "value": "VHDX", + "description": "A VHDX file is a disk image file in the Virtual Hard Disk v2 file format." + } + ] + } + }, + "GrantAccessData": { + "type": "object", + "description": "Data used for requesting a SAS.", + "properties": { + "access": { + "$ref": "#/definitions/AccessLevel", + "description": "The Access Level, accepted values include None, Read, Write." + }, + "durationInSeconds": { + "type": "integer", + "format": "int32", + "description": "Time duration in seconds until the SAS access expires." + }, + "getSecureVMGuestStateSAS": { + "type": "boolean", + "description": "Set this flag to true to get additional SAS for VM guest state" + }, + "fileFormat": { + "$ref": "#/definitions/FileFormat", + "description": "Used to specify the file format when making request for SAS on a VHDX file format snapshot" + } + }, + "required": [ + "access", + "durationInSeconds" + ] + }, + "HyperVGeneration": { + "type": "string", + "description": "The hypervisor generation of the Virtual Machine. Applicable to OS disks only.", + "enum": [ + "V1", + "V2" + ], + "x-ms-enum": { + "name": "HyperVGeneration", + "modelAsString": true, + "values": [ + { + "name": "V1", + "value": "V1" + }, + { + "name": "V2", + "value": "V2" + } + ] + } + }, + "ImageDiskReference": { + "type": "object", + "description": "The source image used for creating the disk.", + "properties": { + "id": { + "type": "string", + "description": "A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference." + }, + "sharedGalleryImageId": { + "type": "string", + "description": "A relative uri containing a direct shared Azure Compute Gallery image reference." + }, + "communityGalleryImageId": { + "type": "string", + "description": "A relative uri containing a community Azure Compute Gallery image reference." + }, + "lun": { + "type": "integer", + "format": "int32", + "description": "If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null." + } + } + }, + "KeyForDiskEncryptionSet": { + "type": "object", + "description": "Key Vault Key Url to be used for server side encryption of Managed Disks and Snapshots", + "properties": { + "sourceVault": { + "$ref": "#/definitions/SourceVault", + "description": "Resource id of the KeyVault containing the key or secret. This property is optional and cannot be used if the KeyVault subscription is not the same as the Disk Encryption Set subscription." + }, + "keyUrl": { + "type": "string", + "description": "Fully versioned Key Url pointing to a key in KeyVault. Version segment of the Url is required regardless of rotationToLatestKeyVersionEnabled value." + } + }, + "required": [ + "keyUrl" + ] + }, + "KeyVaultAndKeyReference": { + "type": "object", + "description": "Key Vault Key Url and vault id of KeK, KeK is optional and when provided is used to unwrap the encryptionKey", + "properties": { + "sourceVault": { + "$ref": "#/definitions/SourceVault", + "description": "Resource id of the KeyVault containing the key or secret" + }, + "keyUrl": { + "type": "string", + "description": "Url pointing to a key or secret in KeyVault" + } + }, + "required": [ + "sourceVault", + "keyUrl" + ] + }, + "KeyVaultAndSecretReference": { + "type": "object", + "description": "Key Vault Secret Url and vault id of the encryption key", + "properties": { + "sourceVault": { + "$ref": "#/definitions/SourceVault", + "description": "Resource id of the KeyVault containing the key or secret" + }, + "secretUrl": { + "type": "string", + "description": "Url pointing to a key or secret in KeyVault" + } + }, + "required": [ + "sourceVault", + "secretUrl" + ] + }, + "NetworkAccessPolicy": { + "type": "string", + "description": "Policy for accessing the disk via network.", + "enum": [ + "AllowAll", + "AllowPrivate", + "DenyAll" + ], + "x-ms-enum": { + "name": "NetworkAccessPolicy", + "modelAsString": true, + "values": [ + { + "name": "AllowAll", + "value": "AllowAll", + "description": "The disk can be exported or uploaded to from any network." + }, + { + "name": "AllowPrivate", + "value": "AllowPrivate", + "description": "The disk can be exported or uploaded to using a DiskAccess resource's private endpoints." + }, + { + "name": "DenyAll", + "value": "DenyAll", + "description": "The disk cannot be exported." + } + ] + } + }, + "OperatingSystemTypes": { + "type": "string", + "description": "The Operating System type.", + "enum": [ + "Windows", + "Linux" + ], + "x-ms-enum": { + "name": "OperatingSystemTypes", + "modelAsString": false + } + }, + "PrivateEndpoint": { + "type": "object", + "description": "The Private Endpoint resource.", + "properties": { + "id": { + "type": "string", + "description": "The ARM identifier for Private Endpoint", + "readOnly": true + } + } + }, + "PrivateEndpointConnection": { + "type": "object", + "description": "The Private Endpoint Connection resource.", + "properties": { + "properties": { + "$ref": "#/definitions/PrivateEndpointConnectionProperties", + "description": "Resource properties.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/ProxyResource" + } + ] + }, + "PrivateEndpointConnectionListResult": { + "type": "object", + "description": "A list of private link resources", + "properties": { + "value": { + "type": "array", + "description": "The PrivateEndpointConnection items on this page", + "items": { + "$ref": "#/definitions/PrivateEndpointConnection" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "PrivateEndpointConnectionProperties": { + "type": "object", + "description": "Properties of the PrivateEndpointConnectProperties.", + "properties": { + "privateEndpoint": { + "$ref": "#/definitions/PrivateEndpoint", + "description": "The resource of private end point.", + "readOnly": true + }, + "privateLinkServiceConnectionState": { + "$ref": "#/definitions/PrivateLinkServiceConnectionState", + "description": "A collection of information about the state of the connection between DiskAccess and Virtual Network." + }, + "provisioningState": { + "$ref": "#/definitions/PrivateEndpointConnectionProvisioningState", + "description": "The provisioning state of the private endpoint connection resource.", + "readOnly": true + } + }, + "required": [ + "privateLinkServiceConnectionState" + ] + }, + "PrivateEndpointConnectionProvisioningState": { + "type": "string", + "description": "The current provisioning state.", + "enum": [ + "Succeeded", + "Creating", + "Deleting", + "Failed" + ], + "x-ms-enum": { + "name": "PrivateEndpointConnectionProvisioningState", + "modelAsString": true, + "values": [ + { + "name": "Succeeded", + "value": "Succeeded" + }, + { + "name": "Creating", + "value": "Creating" + }, + { + "name": "Deleting", + "value": "Deleting" + }, + { + "name": "Failed", + "value": "Failed" + } + ] + } + }, + "PrivateEndpointServiceConnectionStatus": { + "type": "string", + "description": "The private endpoint connection status.", + "enum": [ + "Pending", + "Approved", + "Rejected" + ], + "x-ms-enum": { + "name": "PrivateEndpointServiceConnectionStatus", + "modelAsString": true, + "values": [ + { + "name": "Pending", + "value": "Pending" + }, + { + "name": "Approved", + "value": "Approved" + }, + { + "name": "Rejected", + "value": "Rejected" + } + ] + } + }, + "PrivateLinkResource": { + "type": "object", + "description": "A private link resource", + "properties": { + "properties": { + "$ref": "#/definitions/PrivateLinkResourceProperties", + "description": "Resource properties.", + "x-ms-client-flatten": true + }, + "id": { + "type": "string", + "description": "private link resource Id", + "readOnly": true + }, + "name": { + "type": "string", + "description": "private link resource name", + "readOnly": true + }, + "type": { + "type": "string", + "description": "private link resource type", + "readOnly": true + } + } + }, + "PrivateLinkResourceListResult": { + "type": "object", + "description": "A list of private link resources", + "properties": { + "value": { + "type": "array", + "description": "Array of private link resources", + "items": { + "$ref": "#/definitions/PrivateLinkResource" + } + } + } + }, + "PrivateLinkResourceProperties": { + "type": "object", + "description": "Properties of a private link resource.", + "properties": { + "groupId": { + "type": "string", + "description": "The private link resource group id.", + "readOnly": true + }, + "requiredMembers": { + "type": "array", + "description": "The private link resource required member names.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "requiredZoneNames": { + "type": "array", + "description": "The private link resource DNS zone name.", + "items": { + "type": "string" + } + } + } + }, + "PrivateLinkServiceConnectionState": { + "type": "object", + "description": "A collection of information about the state of the connection between service consumer and provider.", + "properties": { + "status": { + "$ref": "#/definitions/PrivateEndpointServiceConnectionStatus", + "description": "Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service." + }, + "description": { + "type": "string", + "description": "The reason for approval/rejection of the connection." + }, + "actionsRequired": { + "type": "string", + "description": "A message indicating if changes on the service provider require any updates on the consumer." + } + } + }, + "PropertyUpdatesInProgress": { + "type": "object", + "description": "Properties of the disk for which update is pending.", + "properties": { + "targetTier": { + "type": "string", + "description": "The target performance tier of the disk if a tier change operation is in progress." + } + } + }, + "ProvisionedBandwidthCopyOption": { + "type": "string", + "description": "If this field is set on a snapshot and createOption is CopyStart, the snapshot will be copied at a quicker speed.", + "enum": [ + "None", + "Enhanced" + ], + "x-ms-enum": { + "name": "ProvisionedBandwidthCopyOption", + "modelAsString": true, + "values": [ + { + "name": "None", + "value": "None" + }, + { + "name": "Enhanced", + "value": "Enhanced" + } + ] + } + }, + "PublicNetworkAccess": { + "type": "string", + "description": "Policy for controlling export on the disk.", + "enum": [ + "Enabled", + "Disabled" + ], + "x-ms-enum": { + "name": "PublicNetworkAccess", + "modelAsString": true, + "values": [ + { + "name": "Enabled", + "value": "Enabled", + "description": "You can generate a SAS URI to access the underlying data of the disk publicly on the internet when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate." + }, + { + "name": "Disabled", + "value": "Disabled", + "description": "You cannot access the underlying data of the disk publicly on the internet even when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate." + } + ] + } + }, + "ResourceUriList": { + "type": "object", + "description": "The List resources which are encrypted with the disk encryption set.", + "properties": { + "value": { + "type": "array", + "description": "A list of IDs or Owner IDs of resources which are encrypted with the disk encryption set.", + "items": { + "type": "string" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of encrypted resources. Call ListNext() with this to fetch the next page of encrypted resources." + } + }, + "required": [ + "value" + ] + }, + "ShareInfoElement": { + "type": "object", + "properties": { + "vmUri": { + "type": "string", + "description": "A relative URI containing the ID of the VM that has the disk attached.", + "readOnly": true + } + } + }, + "Snapshot": { + "type": "object", + "description": "Snapshot resource.", + "properties": { + "properties": { + "$ref": "#/definitions/SnapshotProperties", + "description": "Snapshot resource properties.", + "x-ms-client-flatten": true + }, + "managedBy": { + "type": "string", + "description": "Unused. Always Null.", + "readOnly": true + }, + "sku": { + "$ref": "#/definitions/SnapshotSku", + "description": "The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. This is an optional parameter for incremental snapshot and the default behavior is the SKU will be set to the same sku as the previous snapshot" + }, + "extendedLocation": { + "$ref": "./common.json#/definitions/ExtendedLocation", + "description": "The extended location where the snapshot will be created. Extended location cannot be changed." + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "SnapshotAccessState": { + "type": "string", + "description": "The state of snapshot which determines the access availability of the snapshot.", + "enum": [ + "Unknown", + "Pending", + "Available", + "InstantAccess", + "AvailableWithInstantAccess" + ], + "x-ms-enum": { + "name": "SnapshotAccessState", + "modelAsString": true, + "values": [ + { + "name": "Unknown", + "value": "Unknown", + "description": "Default value." + }, + { + "name": "Pending", + "value": "Pending", + "description": "The snapshot cannot be used for restore, copy or download to offline." + }, + { + "name": "Available", + "value": "Available", + "description": "The snapshot can be used for restore, copy to different region, and download to offline." + }, + { + "name": "InstantAccess", + "value": "InstantAccess", + "description": "The snapshot can be used for restoring disks with fast performance but cannot be copied or downloaded." + }, + { + "name": "AvailableWithInstantAccess", + "value": "AvailableWithInstantAccess", + "description": "The snapshot can be used for restoring disks with fast performance, copied and downloaded." + } + ] + } + }, + "SnapshotList": { + "type": "object", + "description": "The List Snapshots operation response.", + "properties": { + "value": { + "type": "array", + "description": "A list of snapshots.", + "items": { + "$ref": "#/definitions/Snapshot" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SnapshotProperties": { + "type": "object", + "description": "Snapshot resource properties.", + "properties": { + "timeCreated": { + "type": "string", + "format": "date-time", + "description": "The time when the snapshot was created.", + "readOnly": true + }, + "osType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "The Operating System type." + }, + "hyperVGeneration": { + "$ref": "#/definitions/HyperVGeneration", + "description": "The hypervisor generation of the Virtual Machine. Applicable to OS disks only." + }, + "purchasePlan": { + "$ref": "#/definitions/DiskPurchasePlan", + "description": "Purchase plan information for the image from which the source disk for the snapshot was originally created." + }, + "supportedCapabilities": { + "$ref": "#/definitions/SupportedCapabilities", + "description": "List of supported capabilities for the image from which the source disk from the snapshot was originally created." + }, + "creationData": { + "$ref": "#/definitions/CreationData", + "description": "Disk source information. CreationData information cannot be changed after the disk has been created." + }, + "diskSizeGB": { + "type": "integer", + "format": "int32", + "description": "If creationData.createOption is Empty, this field is mandatory and it indicates the size of the disk to create. If this field is present for updates or creation with other options, it indicates a resize. Resizes are only allowed if the disk is not attached to a running VM, and can only increase the disk's size." + }, + "diskSizeBytes": { + "type": "integer", + "format": "int64", + "description": "The size of the disk in bytes. This field is read only.", + "readOnly": true + }, + "diskState": { + "$ref": "#/definitions/DiskState", + "description": "The state of the snapshot.", + "readOnly": true + }, + "uniqueId": { + "type": "string", + "description": "Unique Guid identifying the resource.", + "readOnly": true + }, + "encryptionSettingsCollection": { + "$ref": "#/definitions/EncryptionSettingsCollection", + "description": "Encryption settings collection used be Azure Disk Encryption, can contain multiple encryption settings per disk or snapshot." + }, + "provisioningState": { + "type": "string", + "description": "The disk provisioning state.", + "readOnly": true + }, + "incremental": { + "type": "boolean", + "description": "Whether a snapshot is incremental. Incremental snapshots on the same disk occupy less space than full snapshots and can be diffed." + }, + "incrementalSnapshotFamilyId": { + "type": "string", + "description": "Incremental snapshots for a disk share an incremental snapshot family id. The Get Page Range Diff API can only be called on incremental snapshots with the same family id.", + "readOnly": true + }, + "encryption": { + "$ref": "#/definitions/Encryption", + "description": "Encryption property can be used to encrypt data at rest with customer managed keys or platform managed keys." + }, + "networkAccessPolicy": { + "$ref": "#/definitions/NetworkAccessPolicy", + "description": "Policy for accessing the disk via network." + }, + "diskAccessId": { + "type": "string", + "description": "ARM id of the DiskAccess resource for using private endpoints on disks." + }, + "securityProfile": { + "$ref": "#/definitions/DiskSecurityProfile", + "description": "Contains the security related information for the resource." + }, + "supportsHibernation": { + "type": "boolean", + "description": "Indicates the OS on a snapshot supports hibernation." + }, + "publicNetworkAccess": { + "$ref": "#/definitions/PublicNetworkAccess", + "description": "Policy for controlling export on the disk." + }, + "completionPercent": { + "type": "number", + "format": "float", + "description": "Percentage complete for the background copy when a resource is created via the CopyStart operation." + }, + "copyCompletionError": { + "$ref": "#/definitions/CopyCompletionError", + "description": "Indicates the error details if the background copy of a resource created via the CopyStart operation fails." + }, + "dataAccessAuthMode": { + "$ref": "#/definitions/DataAccessAuthMode", + "description": "Additional authentication requirements when exporting or uploading to a disk or snapshot." + }, + "snapshotAccessState": { + "$ref": "#/definitions/SnapshotAccessState", + "description": "The state of snapshot which determines the access availability of the snapshot.", + "readOnly": true + } + }, + "required": [ + "creationData" + ] + }, + "SnapshotSku": { + "type": "object", + "description": "The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. This is an optional parameter for incremental snapshot and the default behavior is the SKU will be set to the same sku as the previous snapshot", + "properties": { + "name": { + "$ref": "#/definitions/SnapshotStorageAccountTypes", + "description": "The sku name." + }, + "tier": { + "type": "string", + "description": "The sku tier.", + "readOnly": true + } + } + }, + "SnapshotStorageAccountTypes": { + "type": "string", + "description": "The sku name.", + "enum": [ + "Standard_LRS", + "Premium_LRS", + "Standard_ZRS" + ], + "x-ms-enum": { + "name": "SnapshotStorageAccountTypes", + "modelAsString": true, + "values": [ + { + "name": "Standard_LRS", + "value": "Standard_LRS", + "description": "Standard HDD locally redundant storage" + }, + { + "name": "Premium_LRS", + "value": "Premium_LRS", + "description": "Premium SSD locally redundant storage" + }, + { + "name": "Standard_ZRS", + "value": "Standard_ZRS", + "description": "Standard zone redundant storage" + } + ] + } + }, + "SnapshotUpdate": { + "type": "object", + "description": "Snapshot update resource.", + "properties": { + "properties": { + "$ref": "#/definitions/SnapshotUpdateProperties", + "description": "Snapshot resource update properties.", + "x-ms-client-flatten": true + }, + "tags": { + "type": "object", + "description": "Resource tags", + "additionalProperties": { + "type": "string" + } + }, + "sku": { + "$ref": "#/definitions/SnapshotSku", + "description": "The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. This is an optional parameter for incremental snapshot and the default behavior is the SKU will be set to the same sku as the previous snapshot" + } + } + }, + "SnapshotUpdateProperties": { + "type": "object", + "description": "Snapshot resource update properties.", + "properties": { + "osType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "the Operating System type." + }, + "diskSizeGB": { + "type": "integer", + "format": "int32", + "description": "If creationData.createOption is Empty, this field is mandatory and it indicates the size of the disk to create. If this field is present for updates or creation with other options, it indicates a resize. Resizes are only allowed if the disk is not attached to a running VM, and can only increase the disk's size." + }, + "encryptionSettingsCollection": { + "$ref": "#/definitions/EncryptionSettingsCollection", + "description": "Encryption settings collection used be Azure Disk Encryption, can contain multiple encryption settings per disk or snapshot." + }, + "encryption": { + "$ref": "#/definitions/Encryption", + "description": "Encryption property can be used to encrypt data at rest with customer managed keys or platform managed keys." + }, + "networkAccessPolicy": { + "$ref": "#/definitions/NetworkAccessPolicy", + "description": "Policy for accessing the disk via network." + }, + "diskAccessId": { + "type": "string", + "description": "ARM id of the DiskAccess resource for using private endpoints on disks." + }, + "supportsHibernation": { + "type": "boolean", + "description": "Indicates the OS on a snapshot supports hibernation." + }, + "publicNetworkAccess": { + "$ref": "#/definitions/PublicNetworkAccess", + "description": "Policy for controlling export on the disk." + }, + "dataAccessAuthMode": { + "$ref": "#/definitions/DataAccessAuthMode", + "description": "Additional authentication requirements when exporting or uploading to a disk or snapshot." + }, + "supportedCapabilities": { + "$ref": "#/definitions/SupportedCapabilities", + "description": "List of supported capabilities for the image from which the OS disk was created." + }, + "snapshotAccessState": { + "$ref": "#/definitions/SnapshotAccessState", + "description": "The state of snapshot which determines the access availability of the snapshot.", + "readOnly": true + } + } + }, + "SourceVault": { + "type": "object", + "description": "The vault id is an Azure Resource Manager Resource id in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}", + "properties": { + "id": { + "type": "string", + "description": "Resource Id" + } + } + }, + "SupportedCapabilities": { + "type": "object", + "description": "List of supported capabilities persisted on the disk resource for VM use.", + "properties": { + "diskControllerTypes": { + "type": "string", + "description": "The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI." + }, + "acceleratedNetwork": { + "type": "boolean", + "description": "True if the image from which the OS disk is created supports accelerated networking." + }, + "architecture": { + "$ref": "#/definitions/Architecture", + "description": "CPU architecture supported by an OS disk." + }, + "supportedSecurityOption": { + "$ref": "#/definitions/SupportedSecurityOption", + "description": "Refers to the security capability of the disk supported to create a Trusted launch or Confidential VM" + } + } + }, + "SupportedSecurityOption": { + "type": "string", + "description": "Refers to the security capability of the disk supported to create a Trusted launch or Confidential VM", + "enum": [ + "TrustedLaunchSupported", + "TrustedLaunchAndConfidentialVMSupported" + ], + "x-ms-enum": { + "name": "SupportedSecurityOption", + "modelAsString": true, + "values": [ + { + "name": "TrustedLaunchSupported", + "value": "TrustedLaunchSupported", + "description": "The disk supports creating Trusted Launch VMs." + }, + { + "name": "TrustedLaunchAndConfidentialVMSupported", + "value": "TrustedLaunchAndConfidentialVMSupported", + "description": "The disk supports creating both Trusted Launch and Confidential VMs." + } + ] + } + }, + "TypeSpec.Http.OkResponse": { + "type": "object", + "description": "The request has succeeded." + }, + "UserAssignedIdentitiesValue": { + "type": "object", + "properties": { + "principalId": { + "type": "string", + "description": "The principal id of user assigned identity.", + "readOnly": true + }, + "clientId": { + "type": "string", + "description": "The client id of user assigned identity.", + "readOnly": true + } + } + } + }, + "parameters": {} +} diff --git a/src/Compute/Compute.Management.Sdk/Rest-api-specs/GalleryRP.json b/src/Compute/Compute.Management.Sdk/Rest-api-specs/GalleryRP.json new file mode 100644 index 000000000000..33b316ed6f5b --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Rest-api-specs/GalleryRP.json @@ -0,0 +1,6406 @@ +{ + "swagger": "2.0", + "info": { + "title": "Azure Compute resource management API.", + "version": "2024-03-03", + "description": "Compute Client", + "x-typespec-generated": [ + { + "emitter": "@azure-tools/typespec-autorest" + } + ] + }, + "schemes": [ + "https" + ], + "host": "management.azure.com", + "produces": [ + "application/json" + ], + "consumes": [ + "application/json" + ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "description": "Azure Active Directory OAuth2 Flow.", + "flow": "implicit", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "tags": [ + { + "name": "Galleries" + }, + { + "name": "GalleryImages" + }, + { + "name": "GalleryImageVersions" + }, + { + "name": "GalleryApplications" + }, + { + "name": "GalleryApplicationVersions" + }, + { + "name": "GalleryInVMAccessControlProfiles" + }, + { + "name": "GalleryInVMAccessControlProfileVersions" + }, + { + "name": "SharedGalleries" + }, + { + "name": "SharedGalleryImages" + }, + { + "name": "SharedGalleryImageVersions" + }, + { + "name": "CommunityGalleries" + }, + { + "name": "CommunityGalleryImages" + }, + { + "name": "CommunityGalleryImageVersions" + } + ], + "paths": { + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/galleries": { + "get": { + "operationId": "Galleries_List", + "tags": [ + "Galleries" + ], + "description": "List galleries under a subscription.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}": { + "get": { + "operationId": "CommunityGalleries_Get", + "tags": [ + "CommunityGalleries" + ], + "description": "Get a community gallery by gallery public name.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "publicGalleryName", + "in": "path", + "description": "The public name of the community gallery.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CommunityGallery" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images": { + "get": { + "operationId": "CommunityGalleryImages_List", + "tags": [ + "CommunityGalleryImages" + ], + "description": "List community gallery images inside a gallery.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "publicGalleryName", + "in": "path", + "description": "The public name of the community gallery.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/CommunityGalleryImageList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images/{galleryImageName}": { + "get": { + "operationId": "CommunityGalleryImages_Get", + "tags": [ + "CommunityGalleryImages" + ], + "description": "Get a community gallery image.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "publicGalleryName", + "in": "path", + "description": "The public name of the community gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the community gallery image definition.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CommunityGalleryImage" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images/{galleryImageName}/versions": { + "get": { + "operationId": "CommunityGalleryImageVersions_List", + "tags": [ + "CommunityGalleryImageVersions" + ], + "description": "List community gallery image versions inside an image.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "publicGalleryName", + "in": "path", + "description": "The public name of the community gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the community gallery image definition.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/CommunityGalleryImageVersionList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}": { + "get": { + "operationId": "CommunityGalleryImageVersions_Get", + "tags": [ + "CommunityGalleryImageVersions" + ], + "description": "Get a community gallery image version.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "publicGalleryName", + "in": "path", + "description": "The public name of the community gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the community gallery image definition.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageVersionName", + "in": "path", + "description": "The name of the community gallery image version. Needs to follow semantic version name pattern: The allowed characters are digit and period. Digits must be within the range of a 32-bit integer. Format: ..", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CommunityGalleryImageVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries": { + "get": { + "operationId": "SharedGalleries_List", + "tags": [ + "SharedGalleries" + ], + "description": "List shared galleries by subscription id or tenant id.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "sharedTo", + "in": "query", + "description": "The query parameter to decide what shared galleries to fetch when doing listing operations.", + "required": false, + "type": "string", + "enum": [ + "tenant" + ], + "x-ms-enum": { + "name": "SharedToValues", + "modelAsString": true, + "values": [ + { + "name": "tenant", + "value": "tenant" + } + ] + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/SharedGalleryList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}": { + "get": { + "operationId": "SharedGalleries_Get", + "tags": [ + "SharedGalleries" + ], + "description": "Get a shared gallery by subscription id or tenant id.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "galleryUniqueName", + "in": "path", + "description": "The unique name of the Shared Gallery.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SharedGallery" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}/images": { + "get": { + "operationId": "SharedGalleryImages_List", + "tags": [ + "SharedGalleryImages" + ], + "description": "List shared gallery images by subscription id or tenant id.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "galleryUniqueName", + "in": "path", + "description": "The unique name of the Shared Gallery.", + "required": true, + "type": "string" + }, + { + "name": "sharedTo", + "in": "query", + "description": "The query parameter to decide what shared galleries to fetch when doing listing operations.", + "required": false, + "type": "string", + "enum": [ + "tenant" + ], + "x-ms-enum": { + "name": "SharedToValues", + "modelAsString": true, + "values": [ + { + "name": "tenant", + "value": "tenant" + } + ] + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/SharedGalleryImageList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}/images/{galleryImageName}": { + "get": { + "operationId": "SharedGalleryImages_Get", + "tags": [ + "SharedGalleryImages" + ], + "description": "Get a shared gallery image by subscription id or tenant id.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "galleryUniqueName", + "in": "path", + "description": "The unique name of the Shared Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the Shared Gallery Image Definition from which the Image Versions are to be listed.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SharedGalleryImage" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}/images/{galleryImageName}/versions": { + "get": { + "operationId": "SharedGalleryImageVersions_List", + "tags": [ + "SharedGalleryImageVersions" + ], + "description": "List shared gallery image versions by subscription id or tenant id.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "galleryUniqueName", + "in": "path", + "description": "The unique name of the Shared Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the Shared Gallery Image Definition from which the Image Versions are to be listed.", + "required": true, + "type": "string" + }, + { + "name": "sharedTo", + "in": "query", + "description": "The query parameter to decide what shared galleries to fetch when doing listing operations.", + "required": false, + "type": "string", + "enum": [ + "tenant" + ], + "x-ms-enum": { + "name": "SharedToValues", + "modelAsString": true, + "values": [ + { + "name": "tenant", + "value": "tenant" + } + ] + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/SharedGalleryImageVersionList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}/images/{galleryImageName}/versions/{galleryImageVersionName}": { + "get": { + "operationId": "SharedGalleryImageVersions_Get", + "tags": [ + "SharedGalleryImageVersions" + ], + "description": "Get a shared gallery image version by subscription id or tenant id.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/LocationParameter" + }, + { + "name": "galleryUniqueName", + "in": "path", + "description": "The unique name of the Shared Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the Shared Gallery Image Definition from which the Image Versions are to be listed.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageVersionName", + "in": "path", + "description": "The name of the gallery image version to be created. Needs to follow semantic version name pattern: The allowed characters are digit and period. Digits must be within the range of a 32-bit integer. Format: ..", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SharedGalleryImageVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries": { + "get": { + "operationId": "Galleries_ListByResourceGroup", + "tags": [ + "Galleries" + ], + "description": "List galleries under a resource group.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}": { + "get": { + "operationId": "Galleries_Get", + "tags": [ + "Galleries" + ], + "description": "Retrieves information about a Shared Image Gallery.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "$select", + "in": "query", + "description": "The select expression to apply on the operation.", + "required": false, + "type": "string", + "enum": [ + "Permissions" + ], + "x-ms-enum": { + "name": "SelectPermissions", + "modelAsString": true, + "values": [ + { + "name": "Permissions", + "value": "Permissions" + } + ] + } + }, + { + "name": "$expand", + "in": "query", + "description": "The expand query option to apply on the operation.", + "required": false, + "type": "string", + "enum": [ + "SharingProfile/Groups" + ], + "x-ms-enum": { + "name": "GalleryExpandParams", + "modelAsString": true, + "values": [ + { + "name": "SharingProfile/Groups", + "value": "SharingProfile/Groups" + } + ] + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Gallery" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "Galleries_CreateOrUpdate", + "tags": [ + "Galleries" + ], + "description": "Create or update a Shared Image Gallery.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "gallery", + "in": "body", + "description": "Parameters supplied to the create or update Shared Image Gallery operation.", + "required": true, + "schema": { + "$ref": "#/definitions/Gallery" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Gallery' update operation succeeded", + "schema": { + "$ref": "#/definitions/Gallery" + } + }, + "201": { + "description": "Resource 'Gallery' create operation succeeded", + "schema": { + "$ref": "#/definitions/Gallery" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "Galleries_Update", + "tags": [ + "Galleries" + ], + "description": "Update a Shared Image Gallery.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "gallery", + "in": "body", + "description": "Parameters supplied to the update Shared Image Gallery operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GalleryUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/Gallery" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "Galleries_Delete", + "tags": [ + "Galleries" + ], + "description": "Delete a Shared Image Gallery.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications": { + "get": { + "operationId": "GalleryApplications_ListByGallery", + "tags": [ + "GalleryApplications" + ], + "description": "List gallery Application Definitions in a gallery.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryApplicationList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{galleryApplicationName}": { + "get": { + "operationId": "GalleryApplications_Get", + "tags": [ + "GalleryApplications" + ], + "description": "Retrieves information about a gallery Application Definition.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationName", + "in": "path", + "description": "The name of the gallery Application Definition to be retrieved.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryApplication" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "GalleryApplications_CreateOrUpdate", + "tags": [ + "GalleryApplications" + ], + "description": "Create or update a gallery Application Definition.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationName", + "in": "path", + "description": "The name of the gallery Application Definition to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplication", + "in": "body", + "description": "Parameters supplied to the create or update gallery Application operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GalleryApplication" + } + } + ], + "responses": { + "200": { + "description": "Resource 'GalleryApplication' update operation succeeded", + "schema": { + "$ref": "#/definitions/GalleryApplication" + } + }, + "201": { + "description": "Resource 'GalleryApplication' create operation succeeded", + "schema": { + "$ref": "#/definitions/GalleryApplication" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "GalleryApplications_Update", + "tags": [ + "GalleryApplications" + ], + "description": "Update a gallery Application Definition.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationName", + "in": "path", + "description": "The name of the gallery Application Definition to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplication", + "in": "body", + "description": "Parameters supplied to the update gallery Application operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GalleryApplicationUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/GalleryApplication" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "GalleryApplications_Delete", + "tags": [ + "GalleryApplications" + ], + "description": "Delete a gallery Application.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationName", + "in": "path", + "description": "The name of the gallery Application Definition to be retrieved.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{galleryApplicationName}/versions": { + "get": { + "operationId": "GalleryApplicationVersions_ListByGalleryApplication", + "tags": [ + "GalleryApplicationVersions" + ], + "description": "List gallery Application Versions in a gallery Application Definition.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationName", + "in": "path", + "description": "The name of the gallery Application Definition to be retrieved.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryApplicationVersionList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{galleryApplicationName}/versions/{galleryApplicationVersionName}": { + "get": { + "operationId": "GalleryApplicationVersions_Get", + "tags": [ + "GalleryApplicationVersions" + ], + "description": "Retrieves information about a gallery Application Version.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationName", + "in": "path", + "description": "The name of the gallery Application Definition to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationVersionName", + "in": "path", + "description": "The name of the gallery Application Version to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string", + "enum": [ + "ReplicationStatus", + "UefiSettings" + ], + "x-ms-enum": { + "name": "ReplicationStatusTypes", + "modelAsString": true, + "values": [ + { + "name": "ReplicationStatus", + "value": "ReplicationStatus" + }, + { + "name": "UefiSettings", + "value": "UefiSettings" + } + ] + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryApplicationVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "GalleryApplicationVersions_CreateOrUpdate", + "tags": [ + "GalleryApplicationVersions" + ], + "description": "Create or update a gallery Application Version.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationName", + "in": "path", + "description": "The name of the gallery Application Definition to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationVersionName", + "in": "path", + "description": "The name of the gallery Application Version to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationVersion", + "in": "body", + "description": "Parameters supplied to the create or update gallery Application Version operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GalleryApplicationVersion" + } + } + ], + "responses": { + "200": { + "description": "Resource 'GalleryApplicationVersion' update operation succeeded", + "schema": { + "$ref": "#/definitions/GalleryApplicationVersion" + } + }, + "201": { + "description": "Resource 'GalleryApplicationVersion' create operation succeeded", + "schema": { + "$ref": "#/definitions/GalleryApplicationVersion" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "GalleryApplicationVersions_Update", + "tags": [ + "GalleryApplicationVersions" + ], + "description": "Update a gallery Application Version.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationName", + "in": "path", + "description": "The name of the gallery Application Definition to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationVersionName", + "in": "path", + "description": "The name of the gallery Application Version to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationVersion", + "in": "body", + "description": "Parameters supplied to the update gallery Application Version operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GalleryApplicationVersionUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/GalleryApplicationVersion" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "GalleryApplicationVersions_Delete", + "tags": [ + "GalleryApplicationVersions" + ], + "description": "Delete a gallery Application Version.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationName", + "in": "path", + "description": "The name of the gallery Application Definition to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryApplicationVersionName", + "in": "path", + "description": "The name of the gallery Application Version to be retrieved.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images": { + "get": { + "operationId": "GalleryImages_ListByGallery", + "tags": [ + "GalleryImages" + ], + "description": "List gallery image definitions in a gallery.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryImageList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{galleryImageName}": { + "get": { + "operationId": "GalleryImages_Get", + "tags": [ + "GalleryImages" + ], + "description": "Retrieves information about a gallery image definition.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the gallery image definition to be retrieved.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryImage" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "GalleryImages_CreateOrUpdate", + "tags": [ + "GalleryImages" + ], + "description": "Create or update a gallery image definition.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the gallery image definition to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryImage", + "in": "body", + "description": "Parameters supplied to the create or update gallery image operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GalleryImage" + } + } + ], + "responses": { + "200": { + "description": "Resource 'GalleryImage' update operation succeeded", + "schema": { + "$ref": "#/definitions/GalleryImage" + } + }, + "201": { + "description": "Resource 'GalleryImage' create operation succeeded", + "schema": { + "$ref": "#/definitions/GalleryImage" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "GalleryImages_Update", + "tags": [ + "GalleryImages" + ], + "description": "Update a gallery image definition.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the gallery image definition to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryImage", + "in": "body", + "description": "Parameters supplied to the update gallery image operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GalleryImageUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/GalleryImage" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "GalleryImages_Delete", + "tags": [ + "GalleryImages" + ], + "description": "Delete a gallery image.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the gallery image definition to be retrieved.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{galleryImageName}/versions": { + "get": { + "operationId": "GalleryImageVersions_ListByGalleryImage", + "tags": [ + "GalleryImageVersions" + ], + "description": "List gallery image versions in a gallery image definition.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the gallery image definition to be retrieved.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryImageVersionList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}": { + "get": { + "operationId": "GalleryImageVersions_Get", + "tags": [ + "GalleryImageVersions" + ], + "description": "Retrieves information about a gallery image version.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the gallery image definition to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageVersionName", + "in": "path", + "description": "The name of the gallery image version to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "$expand", + "in": "query", + "description": "The expand expression to apply on the operation.", + "required": false, + "type": "string", + "enum": [ + "ReplicationStatus", + "UefiSettings" + ], + "x-ms-enum": { + "name": "ReplicationStatusTypes", + "modelAsString": true, + "values": [ + { + "name": "ReplicationStatus", + "value": "ReplicationStatus" + }, + { + "name": "UefiSettings", + "value": "UefiSettings" + } + ] + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryImageVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "GalleryImageVersions_CreateOrUpdate", + "tags": [ + "GalleryImageVersions" + ], + "description": "Create or update a gallery image version.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the gallery image definition to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageVersionName", + "in": "path", + "description": "The name of the gallery image version to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageVersion", + "in": "body", + "description": "Parameters supplied to the create or update gallery image version operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GalleryImageVersion" + } + } + ], + "responses": { + "200": { + "description": "Resource 'GalleryImageVersion' update operation succeeded", + "schema": { + "$ref": "#/definitions/GalleryImageVersion" + } + }, + "201": { + "description": "Resource 'GalleryImageVersion' create operation succeeded", + "schema": { + "$ref": "#/definitions/GalleryImageVersion" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "GalleryImageVersions_Update", + "tags": [ + "GalleryImageVersions" + ], + "description": "Update a gallery image version.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the gallery image definition to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageVersionName", + "in": "path", + "description": "The name of the gallery image version to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageVersion", + "in": "body", + "description": "Parameters supplied to the update gallery image version operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GalleryImageVersionUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/GalleryImageVersion" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "GalleryImageVersions_Delete", + "tags": [ + "GalleryImageVersions" + ], + "description": "Delete a gallery image version.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageName", + "in": "path", + "description": "The name of the gallery image definition to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryImageVersionName", + "in": "path", + "description": "The name of the gallery image version to be retrieved.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/inVMAccessControlProfiles": { + "get": { + "operationId": "GalleryInVMAccessControlProfiles_ListByGallery", + "tags": [ + "GalleryInVMAccessControlProfiles" + ], + "description": "List gallery inVMAccessControlProfiles in a gallery.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/inVMAccessControlProfiles/{inVMAccessControlProfileName}": { + "get": { + "operationId": "GalleryInVMAccessControlProfiles_Get", + "tags": [ + "GalleryInVMAccessControlProfiles" + ], + "description": "Retrieves information about a gallery inVMAccessControlProfile.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "inVMAccessControlProfileName", + "in": "path", + "description": "The name of the gallery inVMAccessControlProfile to be retrieved.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfile" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "GalleryInVMAccessControlProfiles_CreateOrUpdate", + "tags": [ + "GalleryInVMAccessControlProfiles" + ], + "description": "Create or update a gallery inVMAccessControlProfile.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "inVMAccessControlProfileName", + "in": "path", + "description": "The name of the gallery inVMAccessControlProfile to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryInVMAccessControlProfile", + "in": "body", + "description": "Parameters supplied to the create or update gallery inVMAccessControlProfile operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfile" + } + } + ], + "responses": { + "200": { + "description": "Resource 'GalleryInVMAccessControlProfile' update operation succeeded", + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfile" + } + }, + "201": { + "description": "Resource 'GalleryInVMAccessControlProfile' create operation succeeded", + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfile" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "GalleryInVMAccessControlProfiles_Update", + "tags": [ + "GalleryInVMAccessControlProfiles" + ], + "description": "Update a gallery inVMAccessControlProfile.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "inVMAccessControlProfileName", + "in": "path", + "description": "The name of the gallery inVMAccessControlProfile to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryInVMAccessControlProfile", + "in": "body", + "description": "Parameters supplied to the update gallery inVMAccessControlProfile operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfile" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "GalleryInVMAccessControlProfiles_Delete", + "tags": [ + "GalleryInVMAccessControlProfiles" + ], + "description": "Delete a gallery inVMAccessControlProfile.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "inVMAccessControlProfileName", + "in": "path", + "description": "The name of the gallery inVMAccessControlProfile to be retrieved.", + "required": true, + "type": "string" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/inVMAccessControlProfiles/{inVMAccessControlProfileName}/versions": { + "get": { + "operationId": "GalleryInVMAccessControlProfileVersions_ListByGalleryInVMAccessControlProfile", + "tags": [ + "GalleryInVMAccessControlProfileVersions" + ], + "description": "List gallery inVMAccessControlProfile versions in a gallery inVMAccessControlProfile", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "inVMAccessControlProfileName", + "in": "path", + "description": "The name of the gallery inVMAccessControlProfile to be retrieved.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileVersionList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/inVMAccessControlProfiles/{inVMAccessControlProfileName}/versions/{inVMAccessControlProfileVersionName}": { + "get": { + "operationId": "GalleryInVMAccessControlProfileVersions_Get", + "tags": [ + "GalleryInVMAccessControlProfileVersions" + ], + "description": "Retrieves information about a gallery inVMAccessControlProfile version.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "inVMAccessControlProfileName", + "in": "path", + "description": "The name of the gallery inVMAccessControlProfile to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "inVMAccessControlProfileVersionName", + "in": "path", + "description": "The name of the gallery inVMAccessControlProfile version to be retrieved.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + } + }, + "put": { + "operationId": "GalleryInVMAccessControlProfileVersions_CreateOrUpdate", + "tags": [ + "GalleryInVMAccessControlProfileVersions" + ], + "description": "Create or update a gallery inVMAccessControlProfile version.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "inVMAccessControlProfileName", + "in": "path", + "description": "The name of the gallery inVMAccessControlProfile to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "inVMAccessControlProfileVersionName", + "in": "path", + "description": "The name of the gallery inVMAccessControlProfile version to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryInVMAccessControlProfileVersion", + "in": "body", + "description": "Parameters supplied to the create or update gallery inVMAccessControlProfile version operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileVersion" + } + } + ], + "responses": { + "200": { + "description": "Resource 'GalleryInVMAccessControlProfileVersion' update operation succeeded", + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileVersion" + } + }, + "201": { + "description": "Resource 'GalleryInVMAccessControlProfileVersion' create operation succeeded", + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileVersion" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "GalleryInVMAccessControlProfileVersions_Update", + "tags": [ + "GalleryInVMAccessControlProfileVersions" + ], + "description": "Update a gallery inVMAccessControlProfile version.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "inVMAccessControlProfileName", + "in": "path", + "description": "The name of the gallery inVMAccessControlProfile to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "inVMAccessControlProfileVersionName", + "in": "path", + "description": "The name of the gallery inVMAccessControlProfile version to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "galleryInVMAccessControlProfileVersion", + "in": "body", + "description": "Parameters supplied to the update gallery inVMAccessControlProfile version operation.", + "required": true, + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileVersionUpdate" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileVersion" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "GalleryInVMAccessControlProfileVersions_Delete", + "tags": [ + "GalleryInVMAccessControlProfileVersions" + ], + "description": "Delete a gallery inVMAccessControlProfile version.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "inVMAccessControlProfileName", + "in": "path", + "description": "The name of the gallery inVMAccessControlProfile to be retrieved.", + "required": true, + "type": "string" + }, + { + "name": "inVMAccessControlProfileVersionName", + "in": "path", + "description": "The name of the gallery inVMAccessControlProfile version to be retrieved.", + "required": true, + "type": "string" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/share": { + "post": { + "operationId": "GallerySharingProfile_Update", + "tags": [ + "Galleries" + ], + "description": "Update sharing profile of a gallery.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "sharingUpdate", + "in": "body", + "description": "Parameters supplied to the update gallery sharing profile.", + "required": true, + "schema": { + "$ref": "#/definitions/SharingUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SharingUpdate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/softdeletedartifacttypes/{artifactType}/artifacts/{artifactName}/versions": { + "get": { + "operationId": "SoftDeletedResource_ListByArtifactName", + "tags": [ + "Galleries" + ], + "description": "List soft-deleted resources of an artifact in the gallery, such as soft-deleted gallery image version of an image.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "./types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "galleryName", + "in": "path", + "description": "The name of the Shared Image Gallery.", + "required": true, + "type": "string" + }, + { + "name": "artifactType", + "in": "path", + "description": "The type of the artifact to be listed, such as gallery image version.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+([_]?[a-zA-Z0-9]+)*$" + }, + { + "name": "artifactName", + "in": "path", + "description": "The artifact name to be listed. If artifact type is Images, then the artifact name should be the gallery image name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+([_]?[a-zA-Z0-9]+)*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/GallerySoftDeletedResourceList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./common.json#/definitions/CloudError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + } + }, + "definitions": { + "AccessControlRules": { + "type": "object", + "description": "This is the Access Control Rules specification for an inVMAccessControlProfile version.", + "properties": { + "privileges": { + "type": "array", + "description": "A list of privileges.", + "items": { + "$ref": "#/definitions/AccessControlRulesPrivilege" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "roles": { + "type": "array", + "description": "A list of roles.", + "items": { + "$ref": "#/definitions/AccessControlRulesRole" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "identities": { + "type": "array", + "description": "A list of identities.", + "items": { + "$ref": "#/definitions/AccessControlRulesIdentity" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "roleAssignments": { + "type": "array", + "description": "A list of role assignments.", + "items": { + "$ref": "#/definitions/AccessControlRulesRoleAssignment" + }, + "x-ms-identifiers": [ + "role" + ] + } + } + }, + "AccessControlRulesIdentity": { + "type": "object", + "description": "The properties of an Access Control Rule Identity.", + "properties": { + "name": { + "type": "string", + "description": "The name of the identity." + }, + "userName": { + "type": "string", + "description": "The username corresponding to this identity." + }, + "groupName": { + "type": "string", + "description": "The groupName corresponding to this identity." + }, + "exePath": { + "type": "string", + "description": "The path to the executable." + }, + "processName": { + "type": "string", + "description": "The process name of the executable." + } + }, + "required": [ + "name" + ] + }, + "AccessControlRulesMode": { + "type": "string", + "description": "This property allows you to specify whether the access control rules are in Audit mode, in Enforce mode or Disabled. Possible values are: 'Audit', 'Enforce' or 'Disabled'.", + "enum": [ + "Audit", + "Enforce", + "Disabled" + ], + "x-ms-enum": { + "name": "AccessControlRulesMode", + "modelAsString": true, + "values": [ + { + "name": "Audit", + "value": "Audit" + }, + { + "name": "Enforce", + "value": "Enforce" + }, + { + "name": "Disabled", + "value": "Disabled" + } + ] + } + }, + "AccessControlRulesPrivilege": { + "type": "object", + "description": "The properties of an Access Control Rule Privilege.", + "properties": { + "name": { + "type": "string", + "description": "The name of the privilege." + }, + "path": { + "type": "string", + "description": "The HTTP path corresponding to the privilege." + }, + "queryParameters": { + "type": "object", + "description": "The query parameters to match in the path.", + "additionalProperties": { + "type": "string" + } + } + }, + "required": [ + "name", + "path" + ] + }, + "AccessControlRulesRole": { + "type": "object", + "description": "The properties of an Access Control Rule Role.", + "properties": { + "name": { + "type": "string", + "description": "The name of the role." + }, + "privileges": { + "type": "array", + "description": "A list of privileges needed by this role.", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "privileges" + ] + }, + "AccessControlRulesRoleAssignment": { + "type": "object", + "description": "The properties of an Access Control Rule RoleAssignment.", + "properties": { + "role": { + "type": "string", + "description": "The name of the role." + }, + "identities": { + "type": "array", + "description": "A list of identities that can access the privileges defined by the role.", + "items": { + "type": "string" + } + } + }, + "required": [ + "role", + "identities" + ] + }, + "AdditionalReplicaSet": { + "type": "object", + "description": "Describes the additional replica set information.", + "properties": { + "storageAccountType": { + "$ref": "#/definitions/StorageAccountType", + "description": "Specifies the storage account type to be used to create the direct drive replicas" + }, + "regionalReplicaCount": { + "type": "integer", + "format": "int32", + "description": "The number of direct drive replicas of the Image Version to be created.This Property is updatable" + } + } + }, + "AggregatedReplicationState": { + "type": "string", + "description": "This is the aggregated replication status based on all the regional replication status flags.", + "enum": [ + "Unknown", + "InProgress", + "Completed", + "Failed" + ], + "x-ms-enum": { + "name": "AggregatedReplicationState", + "modelAsString": true, + "values": [ + { + "name": "Unknown", + "value": "Unknown" + }, + { + "name": "InProgress", + "value": "InProgress" + }, + { + "name": "Completed", + "value": "Completed" + }, + { + "name": "Failed", + "value": "Failed" + } + ] + } + }, + "Architecture": { + "type": "string", + "description": "The architecture of the image. Applicable to OS disks only.", + "enum": [ + "x64", + "Arm64" + ], + "x-ms-enum": { + "name": "Architecture", + "modelAsString": true, + "values": [ + { + "name": "x64", + "value": "x64" + }, + { + "name": "Arm64", + "value": "Arm64" + } + ] + } + }, + "CommunityGallery": { + "type": "object", + "description": "Specifies information about the Community Gallery that you want to create or update.", + "properties": { + "properties": { + "$ref": "#/definitions/CommunityGalleryProperties", + "description": "Describes the properties of a community gallery.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/PirCommunityGalleryResource" + } + ] + }, + "CommunityGalleryIdentifier": { + "type": "object", + "description": "The identifier information of community gallery.", + "properties": { + "uniqueId": { + "type": "string", + "description": "The unique id of this community gallery." + } + } + }, + "CommunityGalleryImage": { + "type": "object", + "description": "Specifies information about the gallery image definition that you want to create or update.", + "properties": { + "properties": { + "$ref": "#/definitions/CommunityGalleryImageProperties", + "description": "Describes the properties of a gallery image definition.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/PirCommunityGalleryResource" + } + ] + }, + "CommunityGalleryImageIdentifier": { + "type": "object", + "description": "This is the community gallery image definition identifier.", + "properties": { + "publisher": { + "type": "string", + "description": "The name of the gallery image definition publisher." + }, + "offer": { + "type": "string", + "description": "The name of the gallery image definition offer." + }, + "sku": { + "type": "string", + "description": "The name of the gallery image definition SKU." + } + } + }, + "CommunityGalleryImageList": { + "type": "object", + "description": "The List Community Gallery Images operation response.", + "properties": { + "value": { + "type": "array", + "description": "A list of community gallery images.", + "items": { + "$ref": "#/definitions/CommunityGalleryImage" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "CommunityGalleryImageProperties": { + "type": "object", + "description": "Describes the properties of a gallery image definition.", + "properties": { + "osType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "This property allows you to specify the type of the OS that is included in the disk when creating a VM from a managed image. Possible values are: **Windows,** **Linux.**" + }, + "osState": { + "$ref": "#/definitions/OperatingSystemStateTypes", + "description": "This property allows the user to specify whether the virtual machines created under this image are 'Generalized' or 'Specialized'." + }, + "endOfLifeDate": { + "type": "string", + "format": "date-time", + "description": "The end of life date of the gallery image definition. This property can be used for decommissioning purposes. This property is updatable." + }, + "identifier": { + "$ref": "#/definitions/CommunityGalleryImageIdentifier", + "description": "This is the community gallery image definition identifier." + }, + "recommended": { + "$ref": "#/definitions/RecommendedMachineConfiguration", + "description": "The properties describe the recommended machine configuration for this Image Definition. These properties are updatable." + }, + "disallowed": { + "$ref": "#/definitions/Disallowed", + "description": "Describes the disallowed disk types." + }, + "hyperVGeneration": { + "$ref": "#/definitions/HyperVGeneration", + "description": "The hypervisor generation of the Virtual Machine. Applicable to OS disks only." + }, + "features": { + "type": "array", + "description": "A list of gallery image features.", + "items": { + "$ref": "#/definitions/GalleryImageFeature" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "purchasePlan": { + "$ref": "#/definitions/ImagePurchasePlan", + "description": "Describes the gallery image definition purchase plan. This is used by marketplace images." + }, + "architecture": { + "$ref": "#/definitions/Architecture", + "description": "The architecture of the image. Applicable to OS disks only." + }, + "privacyStatementUri": { + "type": "string", + "description": "Privacy statement URI for the current community gallery image." + }, + "eula": { + "type": "string", + "description": "The end-user license agreement for the current community gallery image." + }, + "disclaimer": { + "type": "string", + "description": "The disclaimer for a community gallery resource." + }, + "artifactTags": { + "type": "object", + "description": "The artifact tags of a community gallery resource.", + "additionalProperties": { + "type": "string" + } + } + }, + "required": [ + "osType", + "osState", + "identifier" + ] + }, + "CommunityGalleryImageVersion": { + "type": "object", + "description": "Specifies information about the gallery image version that you want to create or update.", + "properties": { + "properties": { + "$ref": "#/definitions/CommunityGalleryImageVersionProperties", + "description": "Describes the properties of a gallery image version.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/PirCommunityGalleryResource" + } + ] + }, + "CommunityGalleryImageVersionList": { + "type": "object", + "description": "The List Community Gallery Image versions operation response.", + "properties": { + "value": { + "type": "array", + "description": "A list of community gallery image versions.", + "items": { + "$ref": "#/definitions/CommunityGalleryImageVersion" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The URI to fetch the next page of community gallery image versions. Call ListNext() with this to fetch the next page of community gallery image versions." + } + }, + "required": [ + "value" + ] + }, + "CommunityGalleryImageVersionProperties": { + "type": "object", + "description": "Describes the properties of a gallery image version.", + "properties": { + "publishedDate": { + "type": "string", + "format": "date-time", + "description": "The published date of the gallery image version Definition. This property can be used for decommissioning purposes. This property is updatable." + }, + "endOfLifeDate": { + "type": "string", + "format": "date-time", + "description": "The end of life date of the gallery image version Definition. This property can be used for decommissioning purposes. This property is updatable." + }, + "excludeFromLatest": { + "type": "boolean", + "description": "If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version." + }, + "storageProfile": { + "$ref": "#/definitions/SharedGalleryImageVersionStorageProfile", + "description": "Describes the storage profile of the image version." + }, + "disclaimer": { + "type": "string", + "description": "The disclaimer for a community gallery resource." + }, + "artifactTags": { + "type": "object", + "description": "The artifact tags of a community gallery resource.", + "additionalProperties": { + "type": "string" + } + } + } + }, + "CommunityGalleryInfo": { + "type": "object", + "description": "Information of community gallery if current gallery is shared to community", + "properties": { + "publisherUri": { + "type": "string", + "description": "The link to the publisher website. Visible to all users." + }, + "publisherContact": { + "type": "string", + "description": "Community gallery publisher support email. The email address of the publisher. Visible to all users." + }, + "eula": { + "type": "string", + "description": "End-user license agreement for community gallery image." + }, + "publicNamePrefix": { + "type": "string", + "description": "The prefix of the gallery name that will be displayed publicly. Visible to all users." + }, + "communityGalleryEnabled": { + "type": "boolean", + "description": "Contains info about whether community gallery sharing is enabled.", + "readOnly": true + }, + "publicNames": { + "type": "array", + "description": "Community gallery public name list.", + "items": { + "type": "string" + }, + "readOnly": true + } + } + }, + "CommunityGalleryMetadata": { + "type": "object", + "description": "The metadata of community gallery.", + "properties": { + "publisherUri": { + "type": "string", + "format": "uri", + "description": "The publisher URI of this community gallery." + }, + "publisherContact": { + "type": "string", + "description": "The publisher email id of this community gallery." + }, + "eula": { + "type": "string", + "description": "The end-user license agreement for this community gallery." + }, + "publicNames": { + "type": "array", + "description": "A list of public names the gallery has.", + "items": { + "type": "string" + } + }, + "privacyStatementUri": { + "type": "string", + "format": "uri", + "description": "The link for the privacy statement of this community gallery from the gallery publisher." + } + }, + "required": [ + "publisherContact", + "publicNames" + ] + }, + "CommunityGalleryProperties": { + "type": "object", + "description": "Describes the properties of a community gallery.", + "properties": { + "disclaimer": { + "type": "string", + "description": "The disclaimer for a community gallery resource." + }, + "artifactTags": { + "type": "object", + "description": "The artifact tags of a community gallery resource.", + "additionalProperties": { + "type": "string" + } + }, + "communityMetadata": { + "$ref": "#/definitions/CommunityGalleryMetadata", + "description": "The metadata of community gallery." + } + } + }, + "ConfidentialVMEncryptionType": { + "type": "string", + "description": "confidential VM encryption types", + "enum": [ + "EncryptedVMGuestStateOnlyWithPmk", + "EncryptedWithPmk", + "EncryptedWithCmk", + "NonPersistedTPM" + ], + "x-ms-enum": { + "name": "ConfidentialVMEncryptionType", + "modelAsString": true, + "values": [ + { + "name": "EncryptedVMGuestStateOnlyWithPmk", + "value": "EncryptedVMGuestStateOnlyWithPmk" + }, + { + "name": "EncryptedWithPmk", + "value": "EncryptedWithPmk" + }, + { + "name": "EncryptedWithCmk", + "value": "EncryptedWithCmk" + }, + { + "name": "NonPersistedTPM", + "value": "NonPersistedTPM" + } + ] + } + }, + "DataDiskImageEncryption": { + "type": "object", + "description": "Contains encryption settings for a data disk image.", + "properties": { + "lun": { + "type": "integer", + "format": "int32", + "description": "This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine." + } + }, + "required": [ + "lun" + ], + "allOf": [ + { + "$ref": "#/definitions/DiskImageEncryption" + } + ] + }, + "Disallowed": { + "type": "object", + "description": "Describes the disallowed disk types.", + "properties": { + "diskTypes": { + "type": "array", + "description": "A list of disk types.", + "items": { + "type": "string" + } + } + } + }, + "DiskImageEncryption": { + "type": "object", + "description": "This is the disk image encryption base class.", + "properties": { + "diskEncryptionSetId": { + "type": "string", + "description": "A relative URI containing the resource ID of the disk encryption set." + } + } + }, + "EdgeZoneStorageAccountType": { + "type": "string", + "description": "Specifies the storage account type to be used to store the image. This property is not updatable.", + "enum": [ + "Standard_LRS", + "Standard_ZRS", + "StandardSSD_LRS", + "Premium_LRS" + ], + "x-ms-enum": { + "name": "EdgeZoneStorageAccountType", + "modelAsString": true, + "values": [ + { + "name": "Standard_LRS", + "value": "Standard_LRS" + }, + { + "name": "Standard_ZRS", + "value": "Standard_ZRS" + }, + { + "name": "StandardSSD_LRS", + "value": "StandardSSD_LRS" + }, + { + "name": "Premium_LRS", + "value": "Premium_LRS" + } + ] + } + }, + "EncryptionImages": { + "type": "object", + "description": "Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact.", + "properties": { + "osDiskImage": { + "$ref": "#/definitions/OSDiskImageEncryption", + "description": "Contains encryption settings for an OS disk image." + }, + "dataDiskImages": { + "type": "array", + "description": "A list of encryption specifications for data disk images.", + "items": { + "$ref": "#/definitions/DataDiskImageEncryption" + }, + "x-ms-identifiers": [ + "lun" + ] + } + } + }, + "EndpointAccess": { + "type": "string", + "description": "This property allows you to specify if the requests will be allowed to access the host endpoints. Possible values are: 'Allow', 'Deny'.", + "enum": [ + "Allow", + "Deny" + ], + "x-ms-enum": { + "name": "EndpointAccess", + "modelAsString": true, + "values": [ + { + "name": "Allow", + "value": "Allow" + }, + { + "name": "Deny", + "value": "Deny" + } + ] + } + }, + "EndpointTypes": { + "type": "string", + "description": "This property allows you to specify the Endpoint type for which this profile is defining the access control for. Possible values are: 'WireServer' or 'IMDS'", + "enum": [ + "WireServer", + "IMDS" + ], + "x-ms-enum": { + "name": "EndpointTypes", + "modelAsString": false + } + }, + "ExecutedValidation": { + "type": "object", + "description": "This is the executed Validation.", + "properties": { + "type": { + "type": "string", + "description": "This property specifies the type of image version validation." + }, + "status": { + "$ref": "#/definitions/ValidationStatus", + "description": "This property specifies the status of the validationProfile of the image version." + }, + "version": { + "type": "string", + "description": "This property specifies the valid version of the validation." + }, + "executionTime": { + "type": "string", + "format": "date-time", + "description": "This property specifies the starting timestamp." + } + } + }, + "Gallery": { + "type": "object", + "description": "Specifies information about the Shared Image Gallery that you want to create or update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryProperties", + "description": "Describes the properties of a Shared Image Gallery.", + "x-ms-client-flatten": true + }, + "identity": { + "$ref": "#/definitions/GalleryIdentity", + "description": "The identity of the gallery, if configured." + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "GalleryApplication": { + "type": "object", + "description": "Specifies information about the gallery Application Definition that you want to create or update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryApplicationProperties", + "description": "Describes the properties of a gallery Application Definition.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "GalleryApplicationCustomAction": { + "type": "object", + "description": "A custom action that can be performed with a Gallery Application Version.", + "properties": { + "name": { + "type": "string", + "description": "The name of the custom action. Must be unique within the Gallery Application Version." + }, + "script": { + "type": "string", + "description": "The script to run when executing this custom action." + }, + "description": { + "type": "string", + "description": "Description to help the users understand what this custom action does." + }, + "parameters": { + "type": "array", + "description": "The parameters that this custom action uses", + "items": { + "$ref": "#/definitions/GalleryApplicationCustomActionParameter" + }, + "x-ms-identifiers": [ + "name" + ] + } + }, + "required": [ + "name", + "script" + ] + }, + "GalleryApplicationCustomActionParameter": { + "type": "object", + "description": "The definition of a parameter that can be passed to a custom action of a Gallery Application Version.", + "properties": { + "name": { + "type": "string", + "description": "The name of the custom action. Must be unique within the Gallery Application Version." + }, + "required": { + "type": "boolean", + "description": "Indicates whether this parameter must be passed when running the custom action." + }, + "type": { + "$ref": "#/definitions/GalleryApplicationCustomActionParameterType", + "description": "Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob" + }, + "defaultValue": { + "type": "string", + "description": "The default value of the parameter. Only applies to string types" + }, + "description": { + "type": "string", + "description": "A description to help users understand what this parameter means" + } + }, + "required": [ + "name" + ] + }, + "GalleryApplicationCustomActionParameterType": { + "type": "string", + "description": "Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob", + "enum": [ + "String", + "ConfigurationDataBlob", + "LogOutputBlob" + ], + "x-ms-enum": { + "name": "GalleryApplicationCustomActionParameterType", + "modelAsString": false + } + }, + "GalleryApplicationList": { + "type": "object", + "description": "The List Gallery Applications operation response.", + "properties": { + "value": { + "type": "array", + "description": "The GalleryApplication items on this page", + "items": { + "$ref": "#/definitions/GalleryApplication" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "GalleryApplicationProperties": { + "type": "object", + "description": "Describes the properties of a gallery Application Definition.", + "properties": { + "description": { + "type": "string", + "description": "The description of this gallery Application Definition resource. This property is updatable." + }, + "eula": { + "type": "string", + "description": "The Eula agreement for the gallery Application Definition." + }, + "privacyStatementUri": { + "type": "string", + "description": "The privacy statement uri." + }, + "releaseNoteUri": { + "type": "string", + "description": "The release note uri." + }, + "endOfLifeDate": { + "type": "string", + "format": "date-time", + "description": "The end of life date of the gallery Application Definition. This property can be used for decommissioning purposes. This property is updatable." + }, + "supportedOSType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "This property allows you to specify the supported type of the OS that application is built for. Possible values are: **Windows,** **Linux.**" + }, + "customActions": { + "type": "array", + "description": "A list of custom actions that can be performed with all of the Gallery Application Versions within this Gallery Application.", + "items": { + "$ref": "#/definitions/GalleryApplicationCustomAction" + }, + "x-ms-identifiers": [ + "name" + ] + } + }, + "required": [ + "supportedOSType" + ] + }, + "GalleryApplicationScriptRebootBehavior": { + "type": "string", + "description": "Optional. The action to be taken with regards to install/update/remove of the gallery application in the event of a reboot.", + "enum": [ + "None", + "Rerun" + ], + "x-ms-enum": { + "name": "GalleryApplicationScriptRebootBehavior", + "modelAsString": true, + "values": [ + { + "name": "None", + "value": "None" + }, + { + "name": "Rerun", + "value": "Rerun" + } + ] + } + }, + "GalleryApplicationUpdate": { + "type": "object", + "description": "Specifies information about the gallery Application Definition that you want to update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryApplicationProperties", + "description": "Describes the properties of a gallery Application Definition.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResourceDefinition" + } + ] + }, + "GalleryApplicationVersion": { + "type": "object", + "description": "Specifies information about the gallery Application Version that you want to create or update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryApplicationVersionProperties", + "description": "Describes the properties of a gallery image version.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "GalleryApplicationVersionList": { + "type": "object", + "description": "The List Gallery Application version operation response.", + "properties": { + "value": { + "type": "array", + "description": "A list of gallery Application Versions.", + "items": { + "$ref": "#/definitions/GalleryApplicationVersion" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of gallery Application Versions. Call ListNext() with this to fetch the next page of gallery Application Versions." + } + }, + "required": [ + "value" + ] + }, + "GalleryApplicationVersionProperties": { + "type": "object", + "description": "Describes the properties of a gallery image version.", + "properties": { + "publishingProfile": { + "$ref": "#/definitions/GalleryApplicationVersionPublishingProfile", + "description": "The publishing profile of a gallery image version." + }, + "safetyProfile": { + "$ref": "#/definitions/GalleryApplicationVersionSafetyProfile", + "description": "The safety profile of the Gallery Application Version." + }, + "provisioningState": { + "$ref": "#/definitions/GalleryProvisioningState", + "description": "The provisioning state, which only appears in the response.", + "readOnly": true + }, + "replicationStatus": { + "$ref": "#/definitions/ReplicationStatus", + "description": "This is the replication status of the gallery image version.", + "readOnly": true + } + }, + "required": [ + "publishingProfile" + ] + }, + "GalleryApplicationVersionPublishingProfile": { + "type": "object", + "description": "The publishing profile of a gallery image version.", + "properties": { + "source": { + "$ref": "#/definitions/UserArtifactSource", + "description": "The source image from which the Image Version is going to be created." + }, + "manageActions": { + "$ref": "#/definitions/UserArtifactManage" + }, + "settings": { + "$ref": "#/definitions/UserArtifactSettings", + "description": "Additional settings for the VM app that contains the target package and config file name when it is deployed to target VM or VM scale set." + }, + "advancedSettings": { + "type": "object", + "description": "Optional. Additional settings to pass to the vm-application-manager extension. For advanced use only.", + "additionalProperties": { + "type": "string" + } + }, + "enableHealthCheck": { + "type": "boolean", + "description": "Optional. Whether or not this application reports health." + }, + "customActions": { + "type": "array", + "description": "A list of custom actions that can be performed with this Gallery Application Version.", + "items": { + "$ref": "#/definitions/GalleryApplicationCustomAction" + }, + "x-ms-identifiers": [ + "name" + ] + } + }, + "required": [ + "source" + ], + "allOf": [ + { + "$ref": "#/definitions/GalleryArtifactPublishingProfileBase" + } + ] + }, + "GalleryApplicationVersionSafetyProfile": { + "type": "object", + "description": "The safety profile of the Gallery Application Version.", + "allOf": [ + { + "$ref": "#/definitions/GalleryArtifactSafetyProfileBase" + } + ] + }, + "GalleryApplicationVersionUpdate": { + "type": "object", + "description": "Specifies information about the gallery Application Version that you want to update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryApplicationVersionProperties", + "description": "Describes the properties of a gallery image version.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResourceDefinition" + } + ] + }, + "GalleryArtifactPublishingProfileBase": { + "type": "object", + "description": "Describes the basic gallery artifact publishing profile.", + "properties": { + "targetRegions": { + "type": "array", + "description": "The target regions where the Image Version is going to be replicated to. This property is updatable.", + "items": { + "$ref": "#/definitions/TargetRegion" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "replicaCount": { + "type": "integer", + "format": "int32", + "description": "The number of replicas of the Image Version to be created per region. This property would take effect for a region when regionalReplicaCount is not specified. This property is updatable." + }, + "excludeFromLatest": { + "type": "boolean", + "description": "If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version." + }, + "publishedDate": { + "type": "string", + "format": "date-time", + "description": "The timestamp for when the gallery image version is published.", + "readOnly": true + }, + "endOfLifeDate": { + "type": "string", + "format": "date-time", + "description": "The end of life date of the gallery image version. This property can be used for decommissioning purposes. This property is updatable." + }, + "storageAccountType": { + "$ref": "#/definitions/StorageAccountType", + "description": "Specifies the storage account type to be used to store the image. This property is not updatable." + }, + "replicationMode": { + "$ref": "#/definitions/ReplicationMode", + "description": "Optional parameter which specifies the mode to be used for replication. This property is not updatable." + }, + "targetExtendedLocations": { + "type": "array", + "description": "The target extended locations where the Image Version is going to be replicated to. This property is updatable.", + "items": { + "$ref": "#/definitions/GalleryTargetExtendedLocation" + }, + "x-ms-identifiers": [ + "name", + "extendedLocation/name" + ] + } + } + }, + "GalleryArtifactSafetyProfileBase": { + "type": "object", + "description": "This is the safety profile of the Gallery Artifact Version.", + "properties": { + "allowDeletionOfReplicatedLocations": { + "type": "boolean", + "description": "Indicates whether or not removing this Gallery Image Version from replicated regions is allowed." + } + } + }, + "GalleryArtifactVersionFullSource": { + "type": "object", + "description": "The source of the gallery artifact version.", + "properties": { + "communityGalleryImageId": { + "type": "string", + "description": "The resource Id of the source Community Gallery Image. Only required when using Community Gallery Image as a source." + }, + "virtualMachineId": { + "type": "string", + "description": "The resource Id of the source virtual machine. Only required when capturing a virtual machine to source this Gallery Image Version." + } + }, + "allOf": [ + { + "$ref": "#/definitions/GalleryArtifactVersionSource" + } + ] + }, + "GalleryArtifactVersionSource": { + "type": "object", + "description": "The gallery artifact version source.", + "properties": { + "id": { + "type": "string", + "description": "The id of the gallery artifact version source." + } + } + }, + "GalleryDataDiskImage": { + "type": "object", + "description": "This is the data disk image.", + "properties": { + "lun": { + "type": "integer", + "format": "int32", + "description": "This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine." + } + }, + "required": [ + "lun" + ], + "allOf": [ + { + "$ref": "#/definitions/GalleryDiskImage" + } + ] + }, + "GalleryDiskImage": { + "type": "object", + "description": "This is the disk image base class.", + "properties": { + "sizeInGB": { + "type": "integer", + "format": "int32", + "description": "This property indicates the size of the VHD to be created.", + "readOnly": true + }, + "hostCaching": { + "$ref": "#/definitions/HostCaching", + "description": "The host caching of the disk. Valid values are 'None', 'ReadOnly', and 'ReadWrite'" + }, + "source": { + "$ref": "#/definitions/GalleryDiskImageSource", + "description": "The source for the disk image." + } + } + }, + "GalleryDiskImageSource": { + "type": "object", + "description": "The source for the disk image.", + "properties": { + "uri": { + "type": "string", + "description": "The uri of the gallery artifact version source. Currently used to specify vhd/blob source." + }, + "storageAccountId": { + "type": "string", + "description": "The Storage Account Id that contains the vhd blob being used as a source for this artifact version." + } + }, + "allOf": [ + { + "$ref": "#/definitions/GalleryArtifactVersionSource" + } + ] + }, + "GalleryExtendedLocation": { + "type": "object", + "description": "The name of the extended location.", + "properties": { + "name": { + "type": "string" + }, + "type": { + "$ref": "#/definitions/GalleryExtendedLocationType", + "description": "It is type of the extended location." + } + } + }, + "GalleryExtendedLocationType": { + "type": "string", + "description": "It is type of the extended location.", + "enum": [ + "EdgeZone", + "Unknown" + ], + "x-ms-enum": { + "name": "GalleryExtendedLocationType", + "modelAsString": true, + "values": [ + { + "name": "EdgeZone", + "value": "EdgeZone" + }, + { + "name": "Unknown", + "value": "Unknown" + } + ] + } + }, + "GalleryIdentifier": { + "type": "object", + "description": "Describes the gallery unique name.", + "properties": { + "uniqueName": { + "type": "string", + "description": "The unique name of the Shared Image Gallery. This name is generated automatically by Azure.", + "readOnly": true + } + } + }, + "GalleryIdentity": { + "type": "object", + "description": "Identity for the virtual machine.", + "properties": { + "principalId": { + "type": "string", + "description": "The principal id of the gallery identity. This property will only be provided for a system assigned identity.", + "readOnly": true + }, + "tenantId": { + "type": "string", + "description": "The AAD tenant id of the gallery identity. This property will only be provided for a system assigned identity.", + "readOnly": true + }, + "type": { + "$ref": "#/definitions/ResourceIdentityType", + "description": "The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery." + }, + "userAssignedIdentities": { + "type": "object", + "description": "The list of user identities associated with the gallery. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.", + "additionalProperties": { + "$ref": "#/definitions/UserAssignedIdentitiesValue" + } + } + } + }, + "GalleryImage": { + "type": "object", + "description": "Specifies information about the gallery image definition that you want to create or update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryImageProperties", + "description": "Describes the properties of a gallery image definition.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "GalleryImageFeature": { + "type": "object", + "description": "A feature for gallery image.", + "properties": { + "name": { + "type": "string", + "description": "The name of the gallery image feature." + }, + "value": { + "type": "string", + "description": "The value of the gallery image feature." + }, + "startsAtVersion": { + "type": "string", + "description": "The minimum gallery image version which supports this feature." + } + } + }, + "GalleryImageIdentifier": { + "type": "object", + "description": "This is the gallery image definition identifier.", + "properties": { + "publisher": { + "type": "string", + "description": "The name of the gallery image definition publisher." + }, + "offer": { + "type": "string", + "description": "The name of the gallery image definition offer." + }, + "sku": { + "type": "string", + "description": "The name of the gallery image definition SKU." + } + }, + "required": [ + "publisher", + "offer", + "sku" + ] + }, + "GalleryImageList": { + "type": "object", + "description": "The List Gallery Images operation response.", + "properties": { + "value": { + "type": "array", + "description": "A list of Shared Image Gallery images.", + "items": { + "$ref": "#/definitions/GalleryImage" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of Image Definitions in the Shared Image Gallery. Call ListNext() with this to fetch the next page of gallery image definitions." + } + }, + "required": [ + "value" + ] + }, + "GalleryImageProperties": { + "type": "object", + "description": "Describes the properties of a gallery image definition.", + "properties": { + "description": { + "type": "string", + "description": "The description of this gallery image definition resource. This property is updatable." + }, + "eula": { + "type": "string", + "description": "The Eula agreement for the gallery image definition." + }, + "privacyStatementUri": { + "type": "string", + "description": "The privacy statement uri." + }, + "releaseNoteUri": { + "type": "string", + "description": "The release note uri." + }, + "osType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "This property allows you to specify the type of the OS that is included in the disk when creating a VM from a managed image. Possible values are: **Windows,** **Linux.**" + }, + "osState": { + "$ref": "#/definitions/OperatingSystemStateTypes", + "description": "This property allows the user to specify whether the virtual machines created under this image are 'Generalized' or 'Specialized'." + }, + "hyperVGeneration": { + "$ref": "#/definitions/HyperVGeneration", + "description": "The hypervisor generation of the Virtual Machine. Applicable to OS disks only." + }, + "endOfLifeDate": { + "type": "string", + "format": "date-time", + "description": "The end of life date of the gallery image definition. This property can be used for decommissioning purposes. This property is updatable." + }, + "identifier": { + "$ref": "#/definitions/GalleryImageIdentifier", + "description": "This is the gallery image definition identifier." + }, + "recommended": { + "$ref": "#/definitions/RecommendedMachineConfiguration", + "description": "The properties describe the recommended machine configuration for this Image Definition. These properties are updatable." + }, + "disallowed": { + "$ref": "#/definitions/Disallowed", + "description": "Describes the disallowed disk types." + }, + "purchasePlan": { + "$ref": "#/definitions/ImagePurchasePlan", + "description": "Describes the gallery image definition purchase plan. This is used by marketplace images." + }, + "provisioningState": { + "$ref": "#/definitions/GalleryProvisioningState", + "description": "The provisioning state, which only appears in the response.", + "readOnly": true + }, + "features": { + "type": "array", + "description": "A list of gallery image features.", + "items": { + "$ref": "#/definitions/GalleryImageFeature" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "architecture": { + "$ref": "#/definitions/Architecture", + "description": "The architecture of the image. Applicable to OS disks only." + }, + "allowUpdateImage": { + "type": "boolean", + "description": "Optional. Must be set to true if the gallery image features are being updated." + } + }, + "required": [ + "osType", + "osState", + "identifier" + ] + }, + "GalleryImageUpdate": { + "type": "object", + "description": "Specifies information about the gallery image definition that you want to update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryImageProperties", + "description": "Describes the properties of a gallery image definition.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResourceDefinition" + } + ] + }, + "GalleryImageVersion": { + "type": "object", + "description": "Specifies information about the gallery image version that you want to create or update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryImageVersionProperties", + "description": "Describes the properties of a gallery image version.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "GalleryImageVersionList": { + "type": "object", + "description": "The List Gallery Image version operation response.", + "properties": { + "value": { + "type": "array", + "description": "A list of gallery image versions.", + "items": { + "$ref": "#/definitions/GalleryImageVersion" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of gallery image versions. Call ListNext() with this to fetch the next page of gallery image versions." + } + }, + "required": [ + "value" + ] + }, + "GalleryImageVersionProperties": { + "type": "object", + "description": "Describes the properties of a gallery image version.", + "properties": { + "publishingProfile": { + "$ref": "#/definitions/GalleryImageVersionPublishingProfile", + "description": "The publishing profile of a gallery image Version." + }, + "provisioningState": { + "$ref": "#/definitions/GalleryProvisioningState", + "description": "The provisioning state, which only appears in the response.", + "readOnly": true + }, + "storageProfile": { + "$ref": "#/definitions/GalleryImageVersionStorageProfile", + "description": "This is the storage profile of a Gallery Image Version." + }, + "safetyProfile": { + "$ref": "#/definitions/GalleryImageVersionSafetyProfile", + "description": "This is the safety profile of the Gallery Image Version." + }, + "replicationStatus": { + "$ref": "#/definitions/ReplicationStatus", + "description": "This is the replication status of the gallery image version.", + "readOnly": true + }, + "securityProfile": { + "$ref": "#/definitions/ImageVersionSecurityProfile", + "description": "The security profile of a gallery image version" + }, + "restore": { + "type": "boolean", + "description": "Indicates if this is a soft-delete resource restoration request." + }, + "validationsProfile": { + "$ref": "#/definitions/ValidationsProfile", + "description": "This is the validations profile of a Gallery Image Version.", + "readOnly": true + } + }, + "required": [ + "storageProfile" + ] + }, + "GalleryImageVersionPublishingProfile": { + "type": "object", + "description": "The publishing profile of a gallery image Version.", + "allOf": [ + { + "$ref": "#/definitions/GalleryArtifactPublishingProfileBase" + } + ] + }, + "GalleryImageVersionSafetyProfile": { + "type": "object", + "description": "This is the safety profile of the Gallery Image Version.", + "properties": { + "reportedForPolicyViolation": { + "type": "boolean", + "description": "Indicates whether this image has been reported as violating Microsoft's policies.", + "readOnly": true + }, + "policyViolations": { + "type": "array", + "description": "A list of Policy Violations that have been reported for this Gallery Image Version.", + "items": { + "$ref": "#/definitions/PolicyViolation" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "blockDeletionBeforeEndOfLife": { + "type": "boolean", + "description": "Indicates whether or not the deletion is blocked for this Gallery Image Version if its End Of Life has not expired." + } + }, + "allOf": [ + { + "$ref": "#/definitions/GalleryArtifactSafetyProfileBase" + } + ] + }, + "GalleryImageVersionStorageProfile": { + "type": "object", + "description": "This is the storage profile of a Gallery Image Version.", + "properties": { + "source": { + "$ref": "#/definitions/GalleryArtifactVersionFullSource", + "description": "The source of the gallery artifact version." + }, + "osDiskImage": { + "$ref": "#/definitions/GalleryOSDiskImage", + "description": "This is the OS disk image." + }, + "dataDiskImages": { + "type": "array", + "description": "A list of data disk images.", + "items": { + "$ref": "#/definitions/GalleryDataDiskImage" + }, + "x-ms-identifiers": [ + "lun" + ] + } + } + }, + "GalleryImageVersionUefiSettings": { + "type": "object", + "description": "Contains UEFI settings for the image version.", + "properties": { + "signatureTemplateNames": { + "type": "array", + "description": "The name of the template(s) that contains default UEFI key signatures that will be added to the image.", + "items": { + "$ref": "#/definitions/UefiSignatureTemplateName" + } + }, + "additionalSignatures": { + "$ref": "#/definitions/UefiKeySignatures", + "description": "Additional UEFI key signatures that will be added to the image in addition to the signature templates" + } + } + }, + "GalleryImageVersionUpdate": { + "type": "object", + "description": "Specifies information about the gallery image version that you want to update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryImageVersionProperties", + "description": "Describes the properties of a gallery image version.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResourceDefinition" + } + ] + }, + "GalleryInVMAccessControlProfile": { + "type": "object", + "description": "Specifies information about the gallery inVMAccessControlProfile that you want to create or update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileProperties", + "description": "Describes the properties of a gallery inVMAccessControlProfile." + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "GalleryInVMAccessControlProfileList": { + "type": "object", + "description": "The List Gallery InVMAccessControlProfiles operation response.", + "properties": { + "value": { + "type": "array", + "description": "The GalleryInVMAccessControlProfile items on this page", + "items": { + "$ref": "#/definitions/GalleryInVMAccessControlProfile" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "GalleryInVMAccessControlProfileProperties": { + "type": "object", + "description": "Describes the properties of a gallery inVMAccessControlProfile.", + "properties": { + "description": { + "type": "string", + "description": "The description of this gallery inVMAccessControlProfile resources. This property is updatable." + }, + "osType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "This property allows you to specify the OS type of the VMs/VMSS for which this profile can be used against. Possible values are: 'Windows' or 'Linux'" + }, + "applicableHostEndpoint": { + "$ref": "#/definitions/EndpointTypes", + "description": "This property allows you to specify the Endpoint type for which this profile is defining the access control for. Possible values are: 'WireServer' or 'IMDS'" + } + }, + "required": [ + "osType", + "applicableHostEndpoint" + ], + "allOf": [ + { + "$ref": "#/definitions/GalleryResourceProfilePropertiesBase" + } + ] + }, + "GalleryInVMAccessControlProfileUpdate": { + "type": "object", + "description": "Specifies information about the gallery inVMAccessControlProfile that you want to update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileProperties", + "description": "Describes the properties of a gallery inVMAccessControlProfile." + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResourceDefinition" + } + ] + }, + "GalleryInVMAccessControlProfileVersion": { + "type": "object", + "description": "Specifies information about the gallery inVMAccessControlProfile version that you want to create or update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileVersionProperties", + "description": "Describes the properties of an inVMAccessControlProfile version.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "GalleryInVMAccessControlProfileVersionList": { + "type": "object", + "description": "The List Gallery InVMAccessControlProfile Versions operation response.", + "properties": { + "value": { + "type": "array", + "description": "The GalleryInVMAccessControlProfileVersion items on this page", + "items": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileVersion" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "GalleryInVMAccessControlProfileVersionProperties": { + "type": "object", + "description": "Describes the properties of an inVMAccessControlProfile version.", + "properties": { + "mode": { + "$ref": "#/definitions/AccessControlRulesMode", + "description": "This property allows you to specify whether the access control rules are in Audit mode, in Enforce mode or Disabled. Possible values are: 'Audit', 'Enforce' or 'Disabled'." + }, + "defaultAccess": { + "$ref": "#/definitions/EndpointAccess", + "description": "This property allows you to specify if the requests will be allowed to access the host endpoints. Possible values are: 'Allow', 'Deny'." + }, + "rules": { + "$ref": "#/definitions/AccessControlRules", + "description": "This is the Access Control Rules specification for an inVMAccessControlProfile version." + } + }, + "required": [ + "mode", + "defaultAccess" + ], + "allOf": [ + { + "$ref": "#/definitions/GalleryResourceProfileVersionPropertiesBase" + } + ] + }, + "GalleryInVMAccessControlProfileVersionUpdate": { + "type": "object", + "description": "Specifies information about the gallery inVMAccessControlProfile version that you want to update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryInVMAccessControlProfileVersionProperties", + "description": "Describes the properties of an inVMAccessControlProfile version.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResourceDefinition" + } + ] + }, + "GalleryList": { + "type": "object", + "description": "The List Galleries operation response.", + "properties": { + "value": { + "type": "array", + "description": "A list of galleries.", + "items": { + "$ref": "#/definitions/Gallery" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of galleries. Call ListNext() with this to fetch the next page of galleries." + }, + "securityProfile": { + "$ref": "#/definitions/ImageVersionSecurityProfile", + "description": "The security profile of a gallery image version" + } + }, + "required": [ + "value" + ] + }, + "GalleryOSDiskImage": { + "type": "object", + "description": "This is the OS disk image.", + "allOf": [ + { + "$ref": "#/definitions/GalleryDiskImage" + } + ] + }, + "GalleryProperties": { + "type": "object", + "description": "Describes the properties of a Shared Image Gallery.", + "properties": { + "description": { + "type": "string", + "description": "The description of this Shared Image Gallery resource. This property is updatable." + }, + "identifier": { + "$ref": "#/definitions/GalleryIdentifier", + "description": "Describes the gallery unique name." + }, + "provisioningState": { + "$ref": "#/definitions/GalleryProvisioningState", + "description": "The provisioning state, which only appears in the response.", + "readOnly": true + }, + "sharingProfile": { + "$ref": "#/definitions/SharingProfile", + "description": "Profile for gallery sharing to subscription or tenant" + }, + "softDeletePolicy": { + "$ref": "#/definitions/SoftDeletePolicy", + "description": "Contains information about the soft deletion policy of the gallery." + }, + "sharingStatus": { + "$ref": "#/definitions/SharingStatus", + "description": "Sharing status of current gallery.", + "readOnly": true + } + } + }, + "GalleryProvisioningState": { + "type": "string", + "description": "The provisioning state, which only appears in the response.", + "enum": [ + "Creating", + "Updating", + "Failed", + "Succeeded", + "Deleting", + "Migrating" + ], + "x-ms-enum": { + "name": "GalleryProvisioningState", + "modelAsString": true, + "values": [ + { + "name": "Creating", + "value": "Creating" + }, + { + "name": "Updating", + "value": "Updating" + }, + { + "name": "Failed", + "value": "Failed" + }, + { + "name": "Succeeded", + "value": "Succeeded" + }, + { + "name": "Deleting", + "value": "Deleting" + }, + { + "name": "Migrating", + "value": "Migrating" + } + ] + } + }, + "GalleryResourceProfilePropertiesBase": { + "type": "object", + "description": "The properties of a gallery ResourceProfile.", + "properties": { + "provisioningState": { + "$ref": "#/definitions/GalleryProvisioningState", + "description": "The provisioning state, which only appears in the response.", + "readOnly": true + } + } + }, + "GalleryResourceProfileVersionPropertiesBase": { + "type": "object", + "description": "The properties of a gallery ResourceProfile version.", + "properties": { + "targetLocations": { + "type": "array", + "description": "The target regions where the Resource Profile version is going to be replicated to. This property is updatable.", + "items": { + "$ref": "#/definitions/TargetRegion" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "excludeFromLatest": { + "type": "boolean", + "description": "If set to true, Virtual Machines deployed from the latest version of the Resource Profile won't use this Profile version." + }, + "publishedDate": { + "type": "string", + "format": "date-time", + "description": "The timestamp for when the Resource Profile Version is published.", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/GalleryProvisioningState", + "description": "The provisioning state, which only appears in the response.", + "readOnly": true + }, + "replicationStatus": { + "$ref": "#/definitions/ReplicationStatus", + "description": "This is the replication status of the gallery image version.", + "readOnly": true + } + } + }, + "GallerySharingPermissionTypes": { + "type": "string", + "description": "This property allows you to specify the permission of sharing gallery. Possible values are: **Private,** **Groups,** **Community.**", + "enum": [ + "Private", + "Groups", + "Community" + ], + "x-ms-enum": { + "name": "GallerySharingPermissionTypes", + "modelAsString": true, + "values": [ + { + "name": "Private", + "value": "Private" + }, + { + "name": "Groups", + "value": "Groups" + }, + { + "name": "Community", + "value": "Community" + } + ] + } + }, + "GallerySoftDeletedResource": { + "type": "object", + "description": "The details information of soft-deleted resource.", + "properties": { + "properties": { + "$ref": "#/definitions/GallerySoftDeletedResourceProperties", + "description": "Describes the properties of a soft-deleted resource.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "./types.json#/definitions/TrackedResource" + } + ] + }, + "GallerySoftDeletedResourceList": { + "type": "object", + "description": "The List Soft-deleted Resources operation response.", + "properties": { + "value": { + "type": "array", + "description": "The GallerySoftDeletedResource items on this page", + "items": { + "$ref": "#/definitions/GallerySoftDeletedResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "GallerySoftDeletedResourceProperties": { + "type": "object", + "description": "Describes the properties of a soft-deleted resource.", + "properties": { + "resourceArmId": { + "type": "string", + "format": "arm-id", + "description": "arm id of the soft-deleted resource" + }, + "softDeletedArtifactType": { + "$ref": "#/definitions/SoftDeletedArtifactTypes", + "description": "artifact type of the soft-deleted resource" + }, + "softDeletedTime": { + "type": "string", + "description": "The timestamp for when the resource is soft-deleted. In dateTime offset format." + } + } + }, + "GalleryTargetExtendedLocation": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the region." + }, + "extendedLocation": { + "$ref": "#/definitions/GalleryExtendedLocation", + "description": "The name of the extended location." + }, + "extendedLocationReplicaCount": { + "type": "integer", + "format": "int32", + "description": "The number of replicas of the Image Version to be created per extended location. This property is updatable." + }, + "storageAccountType": { + "$ref": "#/definitions/EdgeZoneStorageAccountType", + "description": "Specifies the storage account type to be used to store the image. This property is not updatable." + }, + "encryption": { + "$ref": "#/definitions/EncryptionImages", + "description": "Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact." + } + } + }, + "GalleryUpdate": { + "type": "object", + "description": "Specifies information about the Shared Image Gallery that you want to update.", + "properties": { + "properties": { + "$ref": "#/definitions/GalleryProperties", + "description": "Describes the properties of a Shared Image Gallery.", + "x-ms-client-flatten": true + }, + "identity": { + "$ref": "#/definitions/GalleryIdentity", + "description": "The identity of the gallery, if configured." + } + }, + "allOf": [ + { + "$ref": "#/definitions/UpdateResourceDefinition" + } + ] + }, + "HostCaching": { + "type": "string", + "description": "The host caching of the disk. Valid values are 'None', 'ReadOnly', and 'ReadWrite'", + "enum": [ + "None", + "ReadOnly", + "ReadWrite" + ], + "x-ms-enum": { + "name": "HostCaching", + "modelAsString": false + } + }, + "HyperVGeneration": { + "type": "string", + "description": "The hypervisor generation of the Virtual Machine. Applicable to OS disks only.", + "enum": [ + "V1", + "V2" + ], + "x-ms-enum": { + "name": "HyperVGeneration", + "modelAsString": true, + "values": [ + { + "name": "V1", + "value": "V1" + }, + { + "name": "V2", + "value": "V2" + } + ] + } + }, + "ImagePurchasePlan": { + "type": "object", + "description": "Describes the gallery image definition purchase plan. This is used by marketplace images.", + "properties": { + "name": { + "type": "string", + "description": "The plan ID." + }, + "publisher": { + "type": "string", + "description": "The publisher ID." + }, + "product": { + "type": "string", + "description": "The product ID." + } + } + }, + "ImageVersionSecurityProfile": { + "type": "object", + "description": "The security profile of a gallery image version", + "properties": { + "uefiSettings": { + "$ref": "#/definitions/GalleryImageVersionUefiSettings", + "description": "Contains UEFI settings for the image version." + } + } + }, + "OSDiskImageEncryption": { + "type": "object", + "description": "Contains encryption settings for an OS disk image.", + "properties": { + "securityProfile": { + "$ref": "#/definitions/OSDiskImageSecurityProfile", + "description": "This property specifies the security profile of an OS disk image." + } + }, + "allOf": [ + { + "$ref": "#/definitions/DiskImageEncryption" + } + ] + }, + "OSDiskImageSecurityProfile": { + "type": "object", + "description": "Contains security profile for an OS disk image.", + "properties": { + "confidentialVMEncryptionType": { + "$ref": "#/definitions/ConfidentialVMEncryptionType", + "description": "confidential VM encryption types" + }, + "secureVMDiskEncryptionSetId": { + "type": "string", + "description": "secure VM disk encryption set id" + } + } + }, + "OperatingSystemStateTypes": { + "type": "string", + "description": "This property allows the user to specify whether the virtual machines created under this image are 'Generalized' or 'Specialized'.", + "enum": [ + "Generalized", + "Specialized" + ], + "x-ms-enum": { + "name": "OperatingSystemStateTypes", + "modelAsString": false + } + }, + "OperatingSystemTypes": { + "type": "string", + "description": "This property allows you to specify the supported type of the OS that application is built for. Possible values are: **Windows,** **Linux.**", + "enum": [ + "Windows", + "Linux" + ], + "x-ms-enum": { + "name": "OperatingSystemTypes", + "modelAsString": false + } + }, + "PirCommunityGalleryResource": { + "type": "object", + "description": "Base information about the community gallery resource in azure compute gallery.", + "properties": { + "name": { + "type": "string", + "description": "Resource name", + "readOnly": true + }, + "location": { + "type": "string", + "description": "Resource location", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Resource type", + "readOnly": true + }, + "identifier": { + "$ref": "#/definitions/CommunityGalleryIdentifier", + "description": "The identifier information of community gallery.", + "x-ms-client-flatten": true + } + } + }, + "PirResource": { + "type": "object", + "description": "The Resource model definition.", + "properties": { + "name": { + "type": "string", + "description": "Resource name", + "readOnly": true + }, + "location": { + "type": "string", + "description": "Resource location", + "readOnly": true + } + } + }, + "PirSharedGalleryResource": { + "type": "object", + "description": "Base information about the shared gallery resource in pir.", + "properties": { + "identifier": { + "$ref": "#/definitions/SharedGalleryIdentifier", + "description": "The identifier information of shared gallery.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/PirResource" + } + ] + }, + "PlatformAttribute": { + "type": "object", + "description": "This is the platform attribute of the image version.", + "properties": { + "name": { + "type": "string", + "description": "This property specifies the name of the platformAttribute. It is read-only.", + "readOnly": true + }, + "value": { + "type": "string", + "description": "This property specifies the value of the corresponding name property. It is read-only.", + "readOnly": true + } + } + }, + "PolicyViolation": { + "type": "object", + "description": "A policy violation reported against a gallery artifact.", + "properties": { + "category": { + "$ref": "#/definitions/PolicyViolationCategory", + "description": "Describes the nature of the policy violation." + }, + "details": { + "type": "string", + "description": "Describes specific details about why this policy violation was reported." + } + } + }, + "PolicyViolationCategory": { + "type": "string", + "description": "Describes the nature of the policy violation.", + "enum": [ + "Other", + "ImageFlaggedUnsafe", + "CopyrightValidation", + "IpTheft" + ], + "x-ms-enum": { + "name": "PolicyViolationCategory", + "modelAsString": true, + "values": [ + { + "name": "Other", + "value": "Other" + }, + { + "name": "ImageFlaggedUnsafe", + "value": "ImageFlaggedUnsafe" + }, + { + "name": "CopyrightValidation", + "value": "CopyrightValidation" + }, + { + "name": "IpTheft", + "value": "IpTheft" + } + ] + } + }, + "RecommendedMachineConfiguration": { + "type": "object", + "description": "The properties describe the recommended machine configuration for this Image Definition. These properties are updatable.", + "properties": { + "vCPUs": { + "$ref": "#/definitions/ResourceRange", + "description": "Describes the resource range." + }, + "memory": { + "$ref": "#/definitions/ResourceRange", + "description": "Describes the resource range." + } + } + }, + "RegionalReplicationStatus": { + "type": "object", + "description": "This is the regional replication status.", + "properties": { + "region": { + "type": "string", + "description": "The region to which the gallery image version is being replicated to.", + "readOnly": true + }, + "state": { + "$ref": "#/definitions/ReplicationState", + "description": "This is the regional replication state.", + "readOnly": true + }, + "details": { + "type": "string", + "description": "The details of the replication status.", + "readOnly": true + }, + "progress": { + "type": "integer", + "format": "int32", + "description": "It indicates progress of the replication job.", + "readOnly": true + } + } + }, + "RegionalSharingStatus": { + "type": "object", + "description": "Gallery regional sharing status", + "properties": { + "region": { + "type": "string", + "description": "Region name" + }, + "state": { + "$ref": "#/definitions/SharingState", + "description": "Gallery sharing state in current region", + "readOnly": true + }, + "details": { + "type": "string", + "description": "Details of gallery regional sharing failure." + } + } + }, + "ReplicationMode": { + "type": "string", + "description": "Optional parameter which specifies the mode to be used for replication. This property is not updatable.", + "enum": [ + "Full", + "Shallow" + ], + "x-ms-enum": { + "name": "ReplicationMode", + "modelAsString": true, + "values": [ + { + "name": "Full", + "value": "Full" + }, + { + "name": "Shallow", + "value": "Shallow" + } + ] + } + }, + "ReplicationState": { + "type": "string", + "description": "This is the regional replication state.", + "enum": [ + "Unknown", + "Replicating", + "Completed", + "Failed" + ], + "x-ms-enum": { + "name": "ReplicationState", + "modelAsString": true, + "values": [ + { + "name": "Unknown", + "value": "Unknown" + }, + { + "name": "Replicating", + "value": "Replicating" + }, + { + "name": "Completed", + "value": "Completed" + }, + { + "name": "Failed", + "value": "Failed" + } + ] + } + }, + "ReplicationStatus": { + "type": "object", + "description": "This is the replication status of the gallery image version.", + "properties": { + "aggregatedState": { + "$ref": "#/definitions/AggregatedReplicationState", + "description": "This is the aggregated replication status based on all the regional replication status flags.", + "readOnly": true + }, + "summary": { + "type": "array", + "description": "This is a summary of replication status for each region.", + "items": { + "$ref": "#/definitions/RegionalReplicationStatus" + }, + "readOnly": true, + "x-ms-identifiers": [ + "region" + ] + } + } + }, + "ResourceIdentityType": { + "type": "string", + "description": "The type of identity used for the gallery. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove all identities from the gallery.", + "enum": [ + "SystemAssigned", + "UserAssigned", + "SystemAssigned, UserAssigned", + "None" + ], + "x-ms-enum": { + "name": "ResourceIdentityType", + "modelAsString": false + } + }, + "ResourceRange": { + "type": "object", + "description": "Describes the resource range.", + "properties": { + "min": { + "type": "integer", + "format": "int32", + "description": "The minimum number of the resource." + }, + "max": { + "type": "integer", + "format": "int32", + "description": "The maximum number of the resource." + } + } + }, + "SharedGallery": { + "type": "object", + "description": "Specifies information about the Shared Gallery that you want to create or update.", + "properties": { + "properties": { + "$ref": "#/definitions/SharedGalleryProperties", + "description": "Specifies the properties of a shared gallery", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/PirSharedGalleryResource" + } + ] + }, + "SharedGalleryDataDiskImage": { + "type": "object", + "description": "This is the data disk image.", + "properties": { + "lun": { + "type": "integer", + "format": "int32", + "description": "This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine." + } + }, + "required": [ + "lun" + ], + "allOf": [ + { + "$ref": "#/definitions/SharedGalleryDiskImage" + } + ] + }, + "SharedGalleryDiskImage": { + "type": "object", + "description": "This is the disk image base class.", + "properties": { + "diskSizeGB": { + "type": "integer", + "format": "int32", + "description": "This property indicates the size of the VHD to be created.", + "readOnly": true + }, + "hostCaching": { + "$ref": "#/definitions/SharedGalleryHostCaching", + "description": "The host caching of the disk. Valid values are 'None', 'ReadOnly', and 'ReadWrite'" + } + } + }, + "SharedGalleryHostCaching": { + "type": "string", + "description": "The host caching of the disk. Valid values are 'None', 'ReadOnly', and 'ReadWrite'", + "enum": [ + "None", + "ReadOnly", + "ReadWrite" + ], + "x-ms-enum": { + "name": "SharedGalleryHostCaching", + "modelAsString": true, + "values": [ + { + "name": "None", + "value": "None" + }, + { + "name": "ReadOnly", + "value": "ReadOnly" + }, + { + "name": "ReadWrite", + "value": "ReadWrite" + } + ] + } + }, + "SharedGalleryIdentifier": { + "type": "object", + "description": "The identifier information of shared gallery.", + "properties": { + "uniqueId": { + "type": "string", + "description": "The unique id of this shared gallery." + } + } + }, + "SharedGalleryImage": { + "type": "object", + "description": "Specifies information about the gallery image definition that you want to create or update.", + "properties": { + "properties": { + "$ref": "#/definitions/SharedGalleryImageProperties", + "description": "Describes the properties of a gallery image definition.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/PirSharedGalleryResource" + } + ] + }, + "SharedGalleryImageList": { + "type": "object", + "description": "The List Shared Gallery Images operation response.", + "properties": { + "value": { + "type": "array", + "description": "A list of shared gallery images.", + "items": { + "$ref": "#/definitions/SharedGalleryImage" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of shared gallery images. Call ListNext() with this to fetch the next page of shared gallery images." + } + }, + "required": [ + "value" + ] + }, + "SharedGalleryImageProperties": { + "type": "object", + "description": "Describes the properties of a gallery image definition.", + "properties": { + "osType": { + "$ref": "#/definitions/OperatingSystemTypes", + "description": "This property allows you to specify the type of the OS that is included in the disk when creating a VM from a managed image. Possible values are: **Windows,** **Linux.**" + }, + "osState": { + "$ref": "#/definitions/OperatingSystemStateTypes", + "description": "This property allows the user to specify whether the virtual machines created under this image are 'Generalized' or 'Specialized'." + }, + "endOfLifeDate": { + "type": "string", + "format": "date-time", + "description": "The end of life date of the gallery image definition. This property can be used for decommissioning purposes. This property is updatable." + }, + "identifier": { + "$ref": "#/definitions/GalleryImageIdentifier", + "description": "This is the gallery image definition identifier." + }, + "recommended": { + "$ref": "#/definitions/RecommendedMachineConfiguration", + "description": "The properties describe the recommended machine configuration for this Image Definition. These properties are updatable." + }, + "disallowed": { + "$ref": "#/definitions/Disallowed", + "description": "Describes the disallowed disk types." + }, + "hyperVGeneration": { + "$ref": "#/definitions/HyperVGeneration", + "description": "The hypervisor generation of the Virtual Machine. Applicable to OS disks only." + }, + "features": { + "type": "array", + "description": "A list of gallery image features.", + "items": { + "$ref": "#/definitions/GalleryImageFeature" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "purchasePlan": { + "$ref": "#/definitions/ImagePurchasePlan", + "description": "Describes the gallery image definition purchase plan. This is used by marketplace images." + }, + "architecture": { + "$ref": "#/definitions/Architecture", + "description": "The architecture of the image. Applicable to OS disks only." + }, + "privacyStatementUri": { + "type": "string", + "description": "Privacy statement uri for the current community gallery image." + }, + "eula": { + "type": "string", + "description": "End-user license agreement for the current community gallery image." + }, + "artifactTags": { + "type": "object", + "description": "The artifact tags of a shared gallery resource.", + "additionalProperties": { + "type": "string" + } + } + }, + "required": [ + "osType", + "osState", + "identifier" + ] + }, + "SharedGalleryImageVersion": { + "type": "object", + "description": "Specifies information about the gallery image version that you want to create or update.", + "properties": { + "properties": { + "$ref": "#/definitions/SharedGalleryImageVersionProperties", + "description": "Describes the properties of a gallery image version.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/PirSharedGalleryResource" + } + ] + }, + "SharedGalleryImageVersionList": { + "type": "object", + "description": "The List Shared Gallery Image versions operation response.", + "properties": { + "value": { + "type": "array", + "description": "The SharedGalleryImageVersion items on this page", + "items": { + "$ref": "#/definitions/SharedGalleryImageVersion" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SharedGalleryImageVersionProperties": { + "type": "object", + "description": "Describes the properties of a gallery image version.", + "properties": { + "publishedDate": { + "type": "string", + "format": "date-time", + "description": "The published date of the gallery image version Definition. This property can be used for decommissioning purposes. This property is updatable." + }, + "endOfLifeDate": { + "type": "string", + "format": "date-time", + "description": "The end of life date of the gallery image version Definition. This property can be used for decommissioning purposes. This property is updatable." + }, + "excludeFromLatest": { + "type": "boolean", + "description": "If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version." + }, + "storageProfile": { + "$ref": "#/definitions/SharedGalleryImageVersionStorageProfile", + "description": "Describes the storage profile of the image version." + }, + "artifactTags": { + "type": "object", + "description": "The artifact tags of a shared gallery resource.", + "additionalProperties": { + "type": "string" + } + } + } + }, + "SharedGalleryImageVersionStorageProfile": { + "type": "object", + "description": "This is the storage profile of a Gallery Image Version.", + "properties": { + "osDiskImage": { + "$ref": "#/definitions/SharedGalleryOSDiskImage", + "description": "This is the OS disk image." + }, + "dataDiskImages": { + "type": "array", + "description": "A list of data disk images.", + "items": { + "$ref": "#/definitions/SharedGalleryDataDiskImage" + }, + "x-ms-identifiers": [ + "lun" + ] + } + } + }, + "SharedGalleryList": { + "type": "object", + "description": "The List Shared Galleries operation response.", + "properties": { + "value": { + "type": "array", + "description": "A list of shared galleries.", + "items": { + "$ref": "#/definitions/SharedGallery" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The uri to fetch the next page of shared galleries. Call ListNext() with this to fetch the next page of shared galleries." + } + }, + "required": [ + "value" + ] + }, + "SharedGalleryOSDiskImage": { + "type": "object", + "description": "This is the OS disk image.", + "allOf": [ + { + "$ref": "#/definitions/SharedGalleryDiskImage" + } + ] + }, + "SharedGalleryProperties": { + "type": "object", + "description": "Specifies the properties of a shared gallery", + "properties": { + "artifactTags": { + "type": "object", + "description": "The artifact tags of a shared gallery resource.", + "additionalProperties": { + "type": "string" + }, + "readOnly": true + } + } + }, + "SharingProfile": { + "type": "object", + "description": "Profile for gallery sharing to subscription or tenant", + "properties": { + "permissions": { + "$ref": "#/definitions/GallerySharingPermissionTypes", + "description": "This property allows you to specify the permission of sharing gallery. Possible values are: **Private,** **Groups,** **Community.**" + }, + "groups": { + "type": "array", + "description": "A list of sharing profile groups.", + "items": { + "$ref": "#/definitions/SharingProfileGroup" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "communityGalleryInfo": { + "$ref": "#/definitions/CommunityGalleryInfo", + "description": "Information of community gallery if current gallery is shared to community." + } + } + }, + "SharingProfileGroup": { + "type": "object", + "description": "Group of the gallery sharing profile", + "properties": { + "type": { + "$ref": "#/definitions/SharingProfileGroupTypes", + "description": "This property allows you to specify the type of sharing group. Possible values are: **Subscriptions,** **AADTenants.**" + }, + "ids": { + "type": "array", + "description": "A list of subscription/tenant ids the gallery is aimed to be shared to.", + "items": { + "type": "string" + } + } + } + }, + "SharingProfileGroupTypes": { + "type": "string", + "description": "This property allows you to specify the type of sharing group. Possible values are: **Subscriptions,** **AADTenants.**", + "enum": [ + "Subscriptions", + "AADTenants" + ], + "x-ms-enum": { + "name": "SharingProfileGroupTypes", + "modelAsString": true, + "values": [ + { + "name": "Subscriptions", + "value": "Subscriptions" + }, + { + "name": "AADTenants", + "value": "AADTenants" + } + ] + } + }, + "SharingState": { + "type": "string", + "description": "The sharing state of the gallery, which only appears in the response.", + "enum": [ + "Succeeded", + "InProgress", + "Failed", + "Unknown" + ], + "x-ms-enum": { + "name": "SharingState", + "modelAsString": true, + "values": [ + { + "name": "Succeeded", + "value": "Succeeded" + }, + { + "name": "InProgress", + "value": "InProgress" + }, + { + "name": "Failed", + "value": "Failed" + }, + { + "name": "Unknown", + "value": "Unknown" + } + ] + } + }, + "SharingStatus": { + "type": "object", + "description": "Sharing status of current gallery.", + "properties": { + "aggregatedState": { + "$ref": "#/definitions/SharingState", + "description": "Aggregated sharing state of current gallery.", + "readOnly": true + }, + "summary": { + "type": "array", + "description": "Summary of all regional sharing status.", + "items": { + "$ref": "#/definitions/RegionalSharingStatus" + }, + "x-ms-identifiers": [ + "region" + ] + } + } + }, + "SharingUpdate": { + "type": "object", + "description": "Specifies information about the gallery sharing profile update.", + "properties": { + "operationType": { + "$ref": "#/definitions/SharingUpdateOperationTypes", + "description": "This property allows you to specify the operation type of gallery sharing update. Possible values are: **Add,** **Remove,** **Reset.**" + }, + "groups": { + "type": "array", + "description": "A list of sharing profile groups.", + "items": { + "$ref": "#/definitions/SharingProfileGroup" + }, + "x-ms-identifiers": [] + } + }, + "required": [ + "operationType" + ] + }, + "SharingUpdateOperationTypes": { + "type": "string", + "description": "This property allows you to specify the operation type of gallery sharing update. Possible values are: **Add,** **Remove,** **Reset.**", + "enum": [ + "Add", + "Remove", + "Reset", + "EnableCommunity" + ], + "x-ms-enum": { + "name": "SharingUpdateOperationTypes", + "modelAsString": true, + "values": [ + { + "name": "Add", + "value": "Add" + }, + { + "name": "Remove", + "value": "Remove" + }, + { + "name": "Reset", + "value": "Reset" + }, + { + "name": "EnableCommunity", + "value": "EnableCommunity" + } + ] + } + }, + "SoftDeletePolicy": { + "type": "object", + "description": "Contains information about the soft deletion policy of the gallery.", + "properties": { + "isSoftDeleteEnabled": { + "type": "boolean", + "description": "Enables soft-deletion for resources in this gallery, allowing them to be recovered within retention time." + } + } + }, + "SoftDeletedArtifactTypes": { + "type": "string", + "description": "artifact type of the soft-deleted resource", + "enum": [ + "Images" + ], + "x-ms-enum": { + "name": "SoftDeletedArtifactTypes", + "modelAsString": true, + "values": [ + { + "name": "Images", + "value": "Images" + } + ] + } + }, + "StorageAccountType": { + "type": "string", + "description": "Specifies the storage account type to be used to store the image. This property is not updatable.", + "enum": [ + "Standard_LRS", + "Standard_ZRS", + "Premium_LRS", + "PremiumV2_LRS" + ], + "x-ms-enum": { + "name": "StorageAccountType", + "modelAsString": true, + "values": [ + { + "name": "Standard_LRS", + "value": "Standard_LRS" + }, + { + "name": "Standard_ZRS", + "value": "Standard_ZRS" + }, + { + "name": "Premium_LRS", + "value": "Premium_LRS" + }, + { + "name": "PremiumV2_LRS", + "value": "PremiumV2_LRS" + } + ] + } + }, + "TargetRegion": { + "type": "object", + "description": "Describes the target region information.", + "properties": { + "name": { + "type": "string", + "description": "The name of the region." + }, + "regionalReplicaCount": { + "type": "integer", + "format": "int32", + "description": "The number of replicas of the Image Version to be created per region. This property is updatable." + }, + "storageAccountType": { + "$ref": "#/definitions/StorageAccountType", + "description": "Specifies the storage account type to be used to store the image. This property is not updatable." + }, + "encryption": { + "$ref": "#/definitions/EncryptionImages", + "description": "Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact." + }, + "excludeFromLatest": { + "type": "boolean", + "description": "Contains the flag setting to hide an image when users specify version='latest'" + }, + "additionalReplicaSets": { + "type": "array", + "description": "List of storage sku with replica count to create direct drive replicas.", + "items": { + "$ref": "#/definitions/AdditionalReplicaSet" + }, + "x-ms-identifiers": [] + } + }, + "required": [ + "name" + ] + }, + "UefiKey": { + "type": "object", + "description": "A UEFI key signature.", + "properties": { + "type": { + "$ref": "#/definitions/UefiKeyType", + "description": "The type of key signature." + }, + "value": { + "type": "array", + "description": "The value of the key signature.", + "items": { + "type": "string" + } + } + } + }, + "UefiKeySignatures": { + "type": "object", + "description": "Additional UEFI key signatures that will be added to the image in addition to the signature templates", + "properties": { + "pk": { + "$ref": "#/definitions/UefiKey", + "description": "The Platform Key of this image version." + }, + "kek": { + "type": "array", + "description": "The Key Encryption Keys of this image version.", + "items": { + "$ref": "#/definitions/UefiKey" + }, + "x-ms-identifiers": [] + }, + "db": { + "type": "array", + "description": "The database of UEFI keys for this image version.", + "items": { + "$ref": "#/definitions/UefiKey" + }, + "x-ms-identifiers": [] + }, + "dbx": { + "type": "array", + "description": "The database of revoked UEFI keys for this image version.", + "items": { + "$ref": "#/definitions/UefiKey" + }, + "x-ms-identifiers": [] + } + } + }, + "UefiKeyType": { + "type": "string", + "description": "The type of key signature.", + "enum": [ + "sha256", + "x509" + ], + "x-ms-enum": { + "name": "UefiKeyType", + "modelAsString": true, + "values": [ + { + "name": "sha256", + "value": "sha256" + }, + { + "name": "x509", + "value": "x509" + } + ] + } + }, + "UefiSignatureTemplateName": { + "type": "string", + "description": "The name of the signature template that contains default UEFI keys.", + "enum": [ + "NoSignatureTemplate", + "MicrosoftUefiCertificateAuthorityTemplate", + "MicrosoftWindowsTemplate" + ], + "x-ms-enum": { + "name": "UefiSignatureTemplateName", + "modelAsString": true, + "values": [ + { + "name": "NoSignatureTemplate", + "value": "NoSignatureTemplate" + }, + { + "name": "MicrosoftUefiCertificateAuthorityTemplate", + "value": "MicrosoftUefiCertificateAuthorityTemplate" + }, + { + "name": "MicrosoftWindowsTemplate", + "value": "MicrosoftWindowsTemplate" + } + ] + } + }, + "UpdateResourceDefinition": { + "type": "object", + "description": "The Update Resource model definition.", + "properties": { + "id": { + "type": "string", + "description": "Resource Id", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Resource name", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Resource type", + "readOnly": true + }, + "tags": { + "type": "object", + "description": "Resource tags", + "additionalProperties": { + "type": "string" + } + } + } + }, + "UserArtifactManage": { + "type": "object", + "properties": { + "install": { + "type": "string", + "description": "Required. The path and arguments to install the gallery application. This is limited to 4096 characters." + }, + "remove": { + "type": "string", + "description": "Required. The path and arguments to remove the gallery application. This is limited to 4096 characters." + }, + "update": { + "type": "string", + "description": "Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters." + } + }, + "required": [ + "install", + "remove" + ] + }, + "UserArtifactSettings": { + "type": "object", + "description": "Additional settings for the VM app that contains the target package and config file name when it is deployed to target VM or VM scale set.", + "properties": { + "packageFileName": { + "type": "string", + "description": "Optional. The name to assign the downloaded package file on the VM. This is limited to 4096 characters. If not specified, the package file will be named the same as the Gallery Application name." + }, + "configFileName": { + "type": "string", + "description": "Optional. The name to assign the downloaded config file on the VM. This is limited to 4096 characters. If not specified, the config file will be named the Gallery Application name appended with \"_config\"." + }, + "scriptBehaviorAfterReboot": { + "$ref": "#/definitions/GalleryApplicationScriptRebootBehavior", + "description": "Optional. The action to be taken with regards to install/update/remove of the gallery application in the event of a reboot." + } + } + }, + "UserArtifactSource": { + "type": "object", + "description": "The source image from which the Image Version is going to be created.", + "properties": { + "mediaLink": { + "type": "string", + "description": "Required. The mediaLink of the artifact, must be a readable storage page blob." + }, + "defaultConfigurationLink": { + "type": "string", + "description": "Optional. The defaultConfigurationLink of the artifact, must be a readable storage page blob." + } + }, + "required": [ + "mediaLink" + ] + }, + "UserAssignedIdentitiesValue": { + "type": "object", + "properties": { + "principalId": { + "type": "string", + "description": "The principal id of user assigned identity.", + "readOnly": true + }, + "clientId": { + "type": "string", + "description": "The client id of user assigned identity.", + "readOnly": true + } + } + }, + "ValidationStatus": { + "type": "string", + "description": "This property specifies the status of the validationProfile of the image version.", + "enum": [ + "Unknown", + "Failed", + "Succeeded" + ], + "x-ms-enum": { + "name": "ValidationStatus", + "modelAsString": true, + "values": [ + { + "name": "Unknown", + "value": "Unknown" + }, + { + "name": "Failed", + "value": "Failed" + }, + { + "name": "Succeeded", + "value": "Succeeded" + } + ] + } + }, + "ValidationsProfile": { + "type": "object", + "description": "This is the validations profile of a Gallery Image Version.", + "properties": { + "validationEtag": { + "type": "string", + "description": "The published time of the image version" + }, + "executedValidations": { + "type": "array", + "items": { + "$ref": "#/definitions/ExecutedValidation" + }, + "x-ms-identifiers": [] + }, + "platformAttributes": { + "type": "array", + "description": "This specifies the pub, offer, sku and version of the image version metadata", + "items": { + "$ref": "#/definitions/PlatformAttribute" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + } + }, + "parameters": {} +} diff --git a/src/Compute/Compute.Management.Sdk/Rest-api-specs/common.json b/src/Compute/Compute.Management.Sdk/Rest-api-specs/common.json new file mode 100644 index 000000000000..80b6a26588d8 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Rest-api-specs/common.json @@ -0,0 +1,230 @@ +{ + "swagger": "2.0", + "info": { + "title": "ComputeManagementClient", + "description": "The Compute Management Client.", + "version": "1.0" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "flow": "implicit", + "description": "Azure Active Directory OAuth2 Flow", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "paths": {}, + "definitions": { + "ApiErrorBase": { + "type": "object", + "properties": { + "code": { + "type": "string", + "description": "The error code." + }, + "target": { + "type": "string", + "description": "The target of the particular error." + }, + "message": { + "type": "string", + "description": "The error message." + } + }, + "description": "Api error base." + }, + "InnerError": { + "type": "object", + "properties": { + "exceptiontype": { + "type": "string", + "description": "The exception type." + }, + "errordetail": { + "type": "string", + "description": "The internal error message or exception dump." + } + }, + "description": "Inner error details." + }, + "CloudError": { + "type": "object", + "x-ms-external": true, + "properties": { + "error": { + "$ref": "#/definitions/ApiError" + } + }, + "description": "An error response from the Compute service." + }, + "ApiError": { + "type": "object", + "properties": { + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/ApiErrorBase" + }, + "x-ms-identifiers": [ + "message", + "target" + ], + "description": "The Api error details" + }, + "innererror": { + "$ref": "#/definitions/InnerError", + "description": "The Api inner error" + }, + "code": { + "type": "string", + "description": "The error code." + }, + "target": { + "type": "string", + "description": "The target of the particular error." + }, + "message": { + "type": "string", + "description": "The error message." + } + }, + "description": "Api error." + }, + "SubResource": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Resource Id" + } + } + }, + "SubResourceReadOnly": { + "type": "object", + "properties": { + "id": { + "readOnly": true, + "type": "string", + "description": "Resource Id" + } + } + }, + "ResourceWithOptionalLocation": { + "type": "object", + "description": "The Resource model definition with location property as optional.", + "properties": { + "location": { + "type": "string", + "description": "Resource location" + }, + "id": { + "type": "string", + "description": "Resource Id", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Resource name", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Resource type", + "readOnly": true + }, + "tags": { + "type": "object", + "description": "Resource tags", + "additionalProperties": { + "type": "string" + } + } + } + }, + "ExtendedLocationType": { + "type": "string", + "description": "The type of the extended location.", + "enum": [ + "EdgeZone" + ], + "x-ms-enum": { + "name": "ExtendedLocationType", + "modelAsString": true, + "values": [ + { + "name": "EdgeZone", + "value": "EdgeZone" + } + ] + } + }, + "ExtendedLocation": { + "type": "object", + "description": "The complex type of the extended location.", + "properties": { + "name": { + "type": "string", + "description": "The name of the extended location." + }, + "type": { + "$ref": "#/definitions/ExtendedLocationType", + "description": "The type of the extended location." + } + } + }, + "SystemData": { + "description": "The system meta data relating to this resource.", + "type": "object", + "properties": { + "createdAt": { + "format": "date-time", + "description": "Specifies the time in UTC at which the Cloud Service (extended support) resource was created.
Minimum api-version: 2022-04-04.", + "type": "string", + "readOnly": true + }, + "lastModifiedAt": { + "format": "date-time", + "description": "Specifies the time in UTC at which the Cloud Service (extended support) resource was last modified.
Minimum api-version: 2022-04-04.", + "type": "string", + "readOnly": true + } + } + } + }, + "parameters": { + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "required": true, + "type": "string", + "description": "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call." + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." + } + } +} diff --git a/src/Compute/Compute.Management.Sdk/Rest-api-specs/preprocess-rest-api-spec.ps1 b/src/Compute/Compute.Management.Sdk/Rest-api-specs/preprocess-rest-api-spec.ps1 new file mode 100644 index 000000000000..d5657136b261 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Rest-api-specs/preprocess-rest-api-spec.ps1 @@ -0,0 +1,176 @@ +# Script to preprocess REST API spec files +# 1. Remove all "x-ms-examples" sections from paths and x-ms-paths +# 2. Replace references to common-types/resource-management/v3/types.json and common-types/v1/common.json +# 3. Simplify 202 responses for specific operations by removing headers and using a standard format + +# List of operations that need simplified 202 responses +$operationsToModify = @( + "AvailabilitySets_ConvertToVirtualMachineScaleSet", + "AvailabilitySets_ConvertToVirtualMachineScaleSet", + "CapacityReservations_Delete", + "CapacityReservations_Update", + "DedicatedHosts_Delete", + "DiskAccesses_CreateOrUpdate", + "DiskAccesses_Delete", + "DiskAccesses_DeleteAPrivateEndpointConnection", + "DiskAccesses_Update", + "DiskAccesses_UpdateAPrivateEndpointConnection", + "DiskEncryptionSets_CreateOrUpdate", + "DiskEncryptionSets_Delete", + "DiskEncryptionSets_Update", + "DiskRestorePoint_GrantAccess", + "DiskRestorePoint_RevokeAccess", + "Disks_CreateOrUpdate", + "Disks_Delete", + "Disks_GrantAccess", + "Disks_RevokeAccess", + "Disks_Update", + "Galleries_CreateOrUpdate", + "Galleries_Delete", + "GalleryApplicationVersions_CreateOrUpdate", + "GalleryApplicationVersions_Delete", + "GalleryApplications_CreateOrUpdate", + "GalleryApplications_Delete", + "GalleryImageVersions_CreateOrUpdate", + "GalleryImageVersions_Delete", + "GalleryImages_CreateOrUpdate", + "GalleryImages_Delete", + "GallerySharingProfile_Update", + "Images_Delete", + "LogAnalytics_ExportRequestRateByInterval", + "LogAnalytics_ExportThrottledRequests", + "RestorePointCollections_Delete", + "RestorePoints_Delete", + "Snapshots_CreateOrUpdate", + "Snapshots_Delete", + "Snapshots_GrantAccess", + "Snapshots_RevokeAccess", + "Snapshots_Update", + "VirtualMachineExtensions_Delete", + "VirtualMachineRunCommands_Delete", + "VirtualMachineScaleSetExtensions_Delete", + "VirtualMachineScaleSetRollingUpgrades_Cancel", + "VirtualMachineScaleSetRollingUpgrades_StartExtensionUpgrade", + "VirtualMachineScaleSetRollingUpgrades_StartOSUpgrade", + "VirtualMachineScaleSetVMExtensions_Delete", + "VirtualMachineScaleSetVMRunCommands_Delete", + "VirtualMachineScaleSetVMs_Deallocate", + "VirtualMachineScaleSetVMs_Delete", + "VirtualMachineScaleSetVMs_PerformMaintenance", + "VirtualMachineScaleSetVMs_PowerOff", + "VirtualMachineScaleSetVMs_Redeploy", + "VirtualMachineScaleSetVMs_Reimage", + "VirtualMachineScaleSetVMs_ReimageAll", + "VirtualMachineScaleSetVMs_Restart", + "VirtualMachineScaleSetVMs_RunCommand", + "VirtualMachineScaleSetVMs_Start", + "VirtualMachineScaleSetVMs_Update", + "VirtualMachineScaleSets_Deallocate", + "VirtualMachineScaleSets_Delete", + "VirtualMachineScaleSets_DeleteInstances", + "VirtualMachineScaleSets_PerformMaintenance", + "VirtualMachineScaleSets_PowerOff", + "VirtualMachineScaleSets_Redeploy", + "VirtualMachineScaleSets_Reimage", + "VirtualMachineScaleSets_ReimageAll", + "VirtualMachineScaleSets_Restart", + "VirtualMachineScaleSets_SetOrchestrationServiceState", + "VirtualMachineScaleSets_Start", + "VirtualMachineScaleSets_UpdateInstances", + "VirtualMachines_AssessPatches", + "VirtualMachines_Capture", + "VirtualMachines_ConvertToManagedDisks", + "VirtualMachines_Deallocate", + "VirtualMachines_Delete", + "VirtualMachines_InstallPatches", + "VirtualMachines_PerformMaintenance", + "VirtualMachines_PowerOff", + "VirtualMachines_Reapply", + "VirtualMachines_Redeploy", + "VirtualMachines_Reimage", + "VirtualMachines_Restart", + "VirtualMachines_RunCommand", + "VirtualMachines_Start", + "VirtualMachines_migrateToVMScaleSet" +) + +Get-ChildItem -Path . -Filter *.json -Recurse | ForEach-Object { + $filePath = $_.FullName + Write-Host "Processing $filePath" + + # First read the file as text to perform string replacements for $ref paths + $content = Get-Content $filePath -Raw + + # Replace references to types.json + $content = $content -replace '"\$ref"\s*:\s*"../../../../../../common-types/resource-management/v3/types.json', '"$ref": "./types.json' + + # Replace references to common.json + $content = $content -replace '"\$ref"\s*:\s*"../../../common-types/v1/common.json', '"$ref": "./common.json' + + # Convert to JSON for structured manipulation + $json = $content | ConvertFrom-Json + + # Remove x-ms-examples sections from paths + if ($json.paths) { + foreach ($pathKey in $json.paths.PSObject.Properties.Name) { + $pathObj = $json.paths.$pathKey + foreach ($methodKey in $pathObj.PSObject.Properties.Name) { + $methodObj = $pathObj.$methodKey + if ($methodObj.PSObject.Properties['x-ms-examples']) { + $methodObj.PSObject.Properties.Remove('x-ms-examples') + } + + # Check if this is an operation that needs to be modified + if ($methodObj.operationId -and $operationsToModify -contains $methodObj.operationId) { + Write-Host " Modifying 202 response for operation: $($methodObj.operationId)" + + # Check if it has a 202 response + if ($methodObj.responses.PSObject.Properties['202']) { + # Create a new simplified 202 response + $simplifiedResponse = New-Object PSObject + Add-Member -InputObject $simplifiedResponse -MemberType NoteProperty -Name "description" -Value "Accepted" + + # Replace the existing 202 response + $methodObj.responses.PSObject.Properties.Remove('202') + Add-Member -InputObject $methodObj.responses -MemberType NoteProperty -Name "202" -Value $simplifiedResponse + } + } + } + } + } + + # Remove x-ms-examples sections from x-ms-paths + if ($json.'x-ms-paths') { + foreach ($pathKey in $json.'x-ms-paths'.PSObject.Properties.Name) { + $pathObj = $json.'x-ms-paths'.$pathKey + foreach ($methodKey in $pathObj.PSObject.Properties.Name) { + $methodObj = $pathObj.$methodKey + if ($methodObj.PSObject.Properties['x-ms-examples']) { + $methodObj.PSObject.Properties.Remove('x-ms-examples') + } + + # Check if this is an operation that needs to be modified + if ($methodObj.operationId -and $operationsToModify -contains $methodObj.operationId) { + Write-Host " Modifying 202 response for operation: $($methodObj.operationId)" + + # Check if it has a 202 response + if ($methodObj.responses.PSObject.Properties['202']) { + # Create a new simplified 202 response + $simplifiedResponse = New-Object PSObject + Add-Member -InputObject $simplifiedResponse -MemberType NoteProperty -Name "description" -Value "Accepted" + + # Replace the existing 202 response + $methodObj.responses.PSObject.Properties.Remove('202') + Add-Member -InputObject $methodObj.responses -MemberType NoteProperty -Name "202" -Value $simplifiedResponse + } + } + } + } + } + + # Save the modified JSON back to the file + $json | ConvertTo-Json -Depth 100 | Set-Content $filePath + Write-Host "Completed processing $filePath" +} + +Write-Host "All files have been preprocessed successfully." \ No newline at end of file diff --git a/src/Compute/Compute.Management.Sdk/Rest-api-specs/skus.json b/src/Compute/Compute.Management.Sdk/Rest-api-specs/skus.json new file mode 100644 index 000000000000..930b21513e1e --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Rest-api-specs/skus.json @@ -0,0 +1,456 @@ +{ + "swagger": "2.0", + "info": { + "title": "Azure Compute resource management API.", + "version": "2021-07-01", + "description": "Compute Client", + "x-typespec-generated": [ + { + "emitter": "@azure-tools/typespec-autorest" + } + ] + }, + "schemes": [ + "https" + ], + "host": "management.azure.com", + "produces": [ + "application/json" + ], + "consumes": [ + "application/json" + ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "description": "Azure Active Directory OAuth2 Flow.", + "flow": "implicit", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "tags": [], + "paths": { + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/skus": { + "get": { + "operationId": "ResourceSkus_List", + "description": "Gets the list of Microsoft.Compute SKUs available for your Subscription.", + "parameters": [ + { + "$ref": "./types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "./types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "$filter", + "in": "query", + "description": "The filter to apply on the operation. Only **location** filter is supported currently.", + "required": false, + "type": "string" + }, + { + "$ref": "#/parameters/IncludeExtendedLocationsParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/ResourceSkusResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "./types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + } + }, + "definitions": { + "ExtendedLocationType": { + "type": "string", + "description": "The type of the extended location.", + "enum": [ + "EdgeZone" + ], + "x-ms-enum": { + "name": "ExtendedLocationType", + "modelAsString": true, + "values": [ + { + "name": "EdgeZone", + "value": "EdgeZone" + } + ] + } + }, + "ResourceSku": { + "type": "object", + "description": "Describes an available Compute SKU.", + "properties": { + "resourceType": { + "type": "string", + "description": "The type of resource the SKU applies to.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "The name of SKU.", + "readOnly": true + }, + "tier": { + "type": "string", + "description": "Specifies the tier of virtual machines in a scale set.

Possible Values:

**Standard**

**Basic**", + "readOnly": true + }, + "size": { + "type": "string", + "description": "The Size of the SKU.", + "readOnly": true + }, + "family": { + "type": "string", + "description": "The Family of this particular SKU.", + "readOnly": true + }, + "kind": { + "type": "string", + "description": "The Kind of resources that are supported in this SKU.", + "readOnly": true + }, + "capacity": { + "$ref": "#/definitions/ResourceSkuCapacity", + "description": "Specifies the number of virtual machines in the scale set.", + "readOnly": true + }, + "locations": { + "type": "array", + "description": "The set of locations that the SKU is available.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "locationInfo": { + "type": "array", + "description": "A list of locations and availability zones in those locations where the SKU is available.", + "items": { + "$ref": "#/definitions/ResourceSkuLocationInfo" + }, + "readOnly": true, + "x-ms-identifiers": [ + "location" + ] + }, + "apiVersions": { + "type": "array", + "description": "The api versions that support this SKU.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "costs": { + "type": "array", + "description": "Metadata for retrieving price info.", + "items": { + "$ref": "#/definitions/ResourceSkuCosts" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "capabilities": { + "type": "array", + "description": "A name value pair to describe the capability.", + "items": { + "$ref": "#/definitions/ResourceSkuCapabilities" + }, + "readOnly": true, + "x-ms-identifiers": [ + "name" + ] + }, + "restrictions": { + "type": "array", + "description": "The restrictions because of which SKU cannot be used. This is empty if there are no restrictions.", + "items": { + "$ref": "#/definitions/ResourceSkuRestrictions" + }, + "readOnly": true, + "x-ms-identifiers": [] + } + } + }, + "ResourceSkuCapabilities": { + "type": "object", + "description": "Describes The SKU capabilities object.", + "properties": { + "name": { + "type": "string", + "description": "An invariant to describe the feature.", + "readOnly": true + }, + "value": { + "type": "string", + "description": "An invariant if the feature is measured by quantity.", + "readOnly": true + } + } + }, + "ResourceSkuCapacity": { + "type": "object", + "description": "Describes scaling information of a SKU.", + "properties": { + "minimum": { + "type": "integer", + "format": "int64", + "description": "The minimum capacity.", + "readOnly": true + }, + "maximum": { + "type": "integer", + "format": "int64", + "description": "The maximum capacity that can be set.", + "readOnly": true + }, + "default": { + "type": "integer", + "format": "int64", + "description": "The default capacity.", + "readOnly": true + }, + "scaleType": { + "$ref": "#/definitions/ResourceSkuCapacityScaleType", + "description": "The scale type applicable to the sku.", + "readOnly": true + } + } + }, + "ResourceSkuCapacityScaleType": { + "type": "string", + "description": "The scale type applicable to the sku.", + "enum": [ + "Automatic", + "Manual", + "None" + ], + "x-ms-enum": { + "name": "ResourceSkuCapacityScaleType", + "modelAsString": false + } + }, + "ResourceSkuCosts": { + "type": "object", + "description": "Describes metadata for retrieving price info.", + "properties": { + "meterID": { + "type": "string", + "description": "Used for querying price from commerce.", + "readOnly": true + }, + "quantity": { + "type": "integer", + "format": "int64", + "description": "The multiplier is needed to extend the base metered cost.", + "readOnly": true + }, + "extendedUnit": { + "type": "string", + "description": "An invariant to show the extended unit.", + "readOnly": true + } + } + }, + "ResourceSkuLocationInfo": { + "type": "object", + "description": "Describes an available Compute SKU Location Information.", + "properties": { + "location": { + "type": "string", + "description": "Location of the SKU", + "readOnly": true + }, + "zones": { + "type": "array", + "description": "List of availability zones where the SKU is supported.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "zoneDetails": { + "type": "array", + "description": "Details of capabilities available to a SKU in specific zones.", + "items": { + "$ref": "#/definitions/ResourceSkuZoneDetails" + }, + "readOnly": true, + "x-ms-identifiers": [ + "name" + ] + }, + "extendedLocations": { + "type": "array", + "description": "The names of extended locations.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "type": { + "$ref": "#/definitions/ExtendedLocationType", + "description": "The type of the extended location.", + "readOnly": true + } + } + }, + "ResourceSkuRestrictionInfo": { + "type": "object", + "description": "Describes an available Compute SKU Restriction Information.", + "properties": { + "locations": { + "type": "array", + "description": "Locations where the SKU is restricted", + "items": { + "type": "string" + }, + "readOnly": true + }, + "zones": { + "type": "array", + "description": "List of availability zones where the SKU is restricted.", + "items": { + "type": "string" + }, + "readOnly": true + } + } + }, + "ResourceSkuRestrictions": { + "type": "object", + "description": "Describes scaling information of a SKU.", + "properties": { + "type": { + "$ref": "#/definitions/ResourceSkuRestrictionsType", + "description": "The type of restrictions.", + "readOnly": true + }, + "values": { + "type": "array", + "description": "The value of restrictions. If the restriction type is set to location. This would be different locations where the SKU is restricted.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "restrictionInfo": { + "$ref": "#/definitions/ResourceSkuRestrictionInfo", + "description": "The information about the restriction where the SKU cannot be used.", + "readOnly": true + }, + "reasonCode": { + "$ref": "#/definitions/ResourceSkuRestrictionsReasonCode", + "description": "The reason for restriction.", + "readOnly": true + } + } + }, + "ResourceSkuRestrictionsReasonCode": { + "type": "string", + "description": "The reason for restriction.", + "enum": [ + "QuotaId", + "NotAvailableForSubscription" + ], + "x-ms-enum": { + "name": "ResourceSkuRestrictionsReasonCode", + "modelAsString": false + } + }, + "ResourceSkuRestrictionsType": { + "type": "string", + "description": "The type of restrictions.", + "enum": [ + "Location", + "Zone" + ], + "x-ms-enum": { + "name": "ResourceSkuRestrictionsType", + "modelAsString": false + } + }, + "ResourceSkuZoneDetails": { + "type": "object", + "description": "Describes The zonal capabilities of a SKU.", + "properties": { + "name": { + "type": "array", + "description": "The set of zones that the SKU is available in with the specified capabilities.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "capabilities": { + "type": "array", + "description": "A list of capabilities that are available for the SKU in the specified list of zones.", + "items": { + "$ref": "#/definitions/ResourceSkuCapabilities" + }, + "readOnly": true, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "ResourceSkusResult": { + "type": "object", + "description": "The List Resource Skus operation response.", + "properties": { + "value": { + "type": "array", + "description": "The ResourceSku items on this page", + "items": { + "$ref": "#/definitions/ResourceSku" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + } + }, + "parameters": { + "IncludeExtendedLocationsParameter": { + "name": "includeExtendedLocations", + "in": "query", + "description": "To Include Extended Locations information or not in the response.", + "required": false, + "type": "string", + "x-ms-parameter-location": "method" + } + } +} diff --git a/src/Compute/Compute.Management.Sdk/Rest-api-specs/types.json b/src/Compute/Compute.Management.Sdk/Rest-api-specs/types.json new file mode 100644 index 000000000000..99a57d8f0158 --- /dev/null +++ b/src/Compute/Compute.Management.Sdk/Rest-api-specs/types.json @@ -0,0 +1,473 @@ +{ + "swagger": "2.0", + "info": { + "title": "Common types", + "version": "3.0" + }, + "paths": {}, + "definitions": { + "AzureEntityResource": { + "type": "object", + "title": "Entity Resource", + "description": "The resource model definition for an Azure Resource Manager resource with an etag.", + "properties": { + "etag": { + "type": "string", + "description": "Resource Etag.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ResourceOriginal" + } + ], + "x-ms-client-name": "AzureEntityResource" + }, + "CheckNameAvailabilityRequest": { + "type": "object", + "description": "The check availability request body.", + "properties": { + "name": { + "type": "string", + "description": "The name of the resource for which availability needs to be checked." + }, + "type": { + "type": "string", + "description": "The resource type." + } + } + }, + "CheckNameAvailabilityResponse": { + "type": "object", + "description": "The check availability result.", + "properties": { + "nameAvailable": { + "type": "boolean", + "description": "Indicates if the resource name is available." + }, + "reason": { + "type": "string", + "description": "The reason why the given name is not available.", + "enum": [ + "Invalid", + "AlreadyExists" + ], + "x-ms-enum": { + "name": "CheckNameAvailabilityReason", + "modelAsString": true + } + }, + "message": { + "type": "string", + "description": "Detailed reason why the given name is available." + } + } + }, + "ErrorAdditionalInfo": { + "type": "object", + "description": "The resource management error additional info.", + "properties": { + "type": { + "type": "string", + "description": "The additional info type.", + "readOnly": true + }, + "info": { + "type": "object", + "description": "The additional info.", + "readOnly": true + } + } + }, + "ErrorDetail": { + "type": "object", + "description": "The error detail.", + "properties": { + "code": { + "type": "string", + "description": "The error code.", + "readOnly": true + }, + "message": { + "type": "string", + "description": "The error message.", + "readOnly": true + }, + "target": { + "type": "string", + "description": "The error target.", + "readOnly": true + }, + "details": { + "type": "array", + "description": "The error details.", + "items": { + "$ref": "#/definitions/ErrorDetail" + }, + "readOnly": true, + "x-ms-identifiers": [ + "message", + "target" + ] + }, + "additionalInfo": { + "type": "array", + "description": "The error additional info.", + "items": { + "$ref": "#/definitions/ErrorAdditionalInfo" + }, + "readOnly": true, + "x-ms-identifiers": [] + } + } + }, + "ErrorResponse": { + "type": "object", + "title": "Error response", + "description": "Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).", + "properties": { + "error": { + "$ref": "#/definitions/ErrorDetail", + "description": "The error object." + } + } + }, + "KeyVaultProperties": { + "type": "object", + "properties": { + "keyIdentifier": { + "type": "string", + "description": "Key vault uri to access the encryption key." + }, + "identity": { + "type": "string", + "description": "The client ID of the identity which will be used to access key vault." + } + } + }, + "Operation": {}, + "ResourceOriginal": { + "type": "object", + "description": "The Resource model definition.", + "properties": { + "id": { + "readOnly": true, + "type": "string", + "description": "Resource Id" + }, + "name": { + "readOnly": true, + "type": "string", + "description": "Resource name" + }, + "type": { + "readOnly": true, + "type": "string", + "description": "Resource type" + }, + "location": { + "type": "string", + "description": "Resource location" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags." + } + }, + "required": [ + "location" + ], + "x-ms-azure-resource": true + }, + "OperationListResult": { + "type": "object", + "description": "A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of results.", + "properties": { + "value": { + "type": "array", + "description": "List of operations supported by the resource provider", + "items": { + "$ref": "#/definitions/Operation" + }, + "readOnly": true, + "x-ms-identifiers": [ + "name" + ] + }, + "nextLink": { + "type": "string", + "description": "URL to get the next set of operation list results (if there are any).", + "readOnly": true + } + } + }, + "OperationStatusResult": { + "type": "object", + "description": "The current status of an async operation.", + "properties": { + "id": { + "type": "string", + "description": "Fully qualified ID for the async operation." + }, + "name": { + "type": "string", + "description": "Name of the async operation." + }, + "status": { + "type": "string", + "description": "Operation status." + }, + "percentComplete": { + "type": "number", + "description": "Percent of the operation that is complete.", + "minimum": 0, + "maximum": 100 + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "The start time of the operation." + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "The end time of the operation." + }, + "operations": { + "type": "array", + "description": "The operations list.", + "items": { + "$ref": "#/definitions/OperationStatusResult" + } + }, + "error": { + "$ref": "#/definitions/ErrorDetail", + "description": "If present, details of the operation error." + } + }, + "required": [ + "status" + ] + }, + "ProxyResource": { + "properties": { + "id": { + "readOnly": true, + "type": "string", + "description": "Resource Id" + }, + "name": { + "readOnly": true, + "type": "string", + "description": "Resource name" + }, + "type": { + "readOnly": true, + "type": "string", + "description": "Resource type" + } + }, + "description": "The resource model definition for an Azure Resource Manager proxy resource. It will not have tags and a location", + "x-ms-azure-resource": true + }, + "SkuTier": { + "type": "string", + "description": "This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.", + "enum": [ + "Free", + "Basic", + "Standard", + "Premium" + ], + "x-ms-enum": { + "name": "SkuTier", + "modelAsString": false + } + }, + "TrackedResource": { + "type": "object", + "description": "The Resource model definition.", + "properties": { + "id": { + "readOnly": true, + "type": "string", + "description": "Resource Id" + }, + "name": { + "readOnly": true, + "type": "string", + "description": "Resource name" + }, + "type": { + "readOnly": true, + "type": "string", + "description": "Resource type" + }, + "location": { + "type": "string", + "description": "Resource location" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Resource tags" + } + }, + "required": [ + "location" + ], + "x-ms-azure-resource": true + }, + "encryptionProperties": { + "type": "object", + "description": "Configuration of key for data encryption", + "properties": { + "status": { + "type": "string", + "description": "Indicates whether or not the encryption is enabled for container registry.", + "enum": [ + "enabled", + "disabled" + ], + "x-ms-enum": { + "name": "EncryptionStatus", + "modelAsString": true + } + }, + "keyVaultProperties": { + "$ref": "#/definitions/KeyVaultProperties", + "description": "Key vault properties." + } + } + }, + "locationData": { + "type": "object", + "description": "Metadata pertaining to the geographic location of the resource.", + "properties": { + "name": { + "type": "string", + "description": "A canonical name for the geographic or physical location.", + "maxLength": 256 + }, + "city": { + "type": "string", + "description": "The city or locality where the resource is located." + }, + "district": { + "type": "string", + "description": "The district, state, or province where the resource is located." + }, + "countryOrRegion": { + "type": "string", + "description": "The country or region where the resource is located" + } + }, + "required": [ + "name" + ] + }, + "systemData": { + "type": "object", + "description": "Metadata pertaining to creation and last modification of the resource.", + "properties": { + "createdBy": { + "type": "string", + "description": "The identity that created the resource." + }, + "createdByType": { + "type": "string", + "description": "The type of identity that created the resource.", + "enum": [ + "User", + "Application", + "ManagedIdentity", + "Key" + ], + "x-ms-enum": { + "name": "createdByType", + "modelAsString": true + } + }, + "createdAt": { + "type": "string", + "format": "date-time", + "description": "The timestamp of resource creation (UTC)." + }, + "lastModifiedBy": { + "type": "string", + "description": "The identity that last modified the resource." + }, + "lastModifiedByType": { + "type": "string", + "description": "The type of identity that last modified the resource.", + "enum": [ + "User", + "Application", + "ManagedIdentity", + "Key" + ], + "x-ms-enum": { + "name": "createdByType", + "modelAsString": true + } + }, + "lastModifiedAt": { + "type": "string", + "format": "date-time", + "description": "The timestamp of resource last modification (UTC)" + } + }, + "readOnly": true + } + }, + "parameters": { + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client Api Version." + }, + "LocationParameter": { + "name": "location", + "in": "path", + "description": "The name of Azure region.", + "required": true, + "type": "string", + "minLength": 1, + "x-ms-parameter-location": "method" + }, + "OperationIdParameter": { + "name": "operationId", + "in": "path", + "description": "The ID of an ongoing async operation.", + "required": true, + "type": "string", + "minLength": 1, + "x-ms-parameter-location": "method" + }, + "ResourceGroupNameParameter": { + "name": "resourceGroupName", + "in": "path", + "description": "The name of the resource group. The name is case insensitive.", + "required": true, + "type": "string", + "minLength": 1, + "maxLength": 90, + "x-ms-parameter-location": "method" + }, + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "required": true, + "type": "string", + "description": "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call." + } + } +} diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineRunCommandTests/TestVirtualMachineScaleSetVMRunCommand.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineRunCommandTests/TestVirtualMachineScaleSetVMRunCommand.json index e193cd8bbe37..3c1b655d16fc 100644 --- a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineRunCommandTests/TestVirtualMachineScaleSetVMRunCommand.json +++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineRunCommandTests/TestVirtualMachineScaleSetVMRunCommand.json @@ -3889,7 +3889,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2244/providers/Microsoft.Compute/virtualMachineScaleSets/vmsscrptestps2244/virtualmachines/0/runCommand?api-version=2018-06-01", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2244/providers/Microsoft.Compute/virtualMachineScaleSets/vmsscrptestps2244/virtualMachines/0/runCommand?api-version=2018-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIyNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3NjcnB0ZXN0cHMyMjQ0L3ZpcnR1YWxtYWNoaW5lcy8wL3J1bkNvbW1hbmQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"commandId\": \"RunPowerShellScript\",\r\n \"script\": [\r\n \"param(\",\r\n \" [string]$first,\",\r\n \" [string]$second\",\r\n \")\",\r\n \"Write-Host This is a sample script with parameters $first $second\",\r\n \"Write-Host \\\"Second line with escaped characters\\\"\"\r\n ],\r\n \"parameters\": [\r\n {\r\n \"name\": \"second\",\r\n \"value\": \"var2\"\r\n },\r\n {\r\n \"name\": \"first\",\r\n \"value\": \"var1\"\r\n }\r\n ]\r\n}", @@ -3971,7 +3971,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2244/providers/Microsoft.Compute/virtualMachineScaleSets/vmsscrptestps2244/virtualmachines/0/runCommand?api-version=2018-06-01", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2244/providers/Microsoft.Compute/virtualMachineScaleSets/vmsscrptestps2244/virtualMachines/0/runCommand?api-version=2018-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIyNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3NjcnB0ZXN0cHMyMjQ0L3ZpcnR1YWxtYWNoaW5lcy8wL3J1bkNvbW1hbmQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"commandId\": \"RunPowerShellScript\",\r\n \"script\": [\r\n \"param(\",\r\n \" [string]$first,\",\r\n \" [string]$second\",\r\n \")\",\r\n \"Write-Host This is a sample script with parameters $first $second\",\r\n \"Write-Host \\\"Second line with escaped characters\\\"\"\r\n ],\r\n \"parameters\": [\r\n {\r\n \"name\": \"second\",\r\n \"value\": \"var2\"\r\n },\r\n {\r\n \"name\": \"first\",\r\n \"value\": \"var1\"\r\n }\r\n ]\r\n}", @@ -4053,7 +4053,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2244/providers/Microsoft.Compute/virtualMachineScaleSets/vmsscrptestps2244/virtualmachines/0/runCommand?api-version=2018-06-01", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2244/providers/Microsoft.Compute/virtualMachineScaleSets/vmsscrptestps2244/virtualMachines/0/runCommand?api-version=2018-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIyNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3NjcnB0ZXN0cHMyMjQ0L3ZpcnR1YWxtYWNoaW5lcy8wL3J1bkNvbW1hbmQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"commandId\": \"RunPowerShellScript\",\r\n \"script\": [\r\n \"param(\",\r\n \" [string]$first,\",\r\n \" [string]$second\",\r\n \")\",\r\n \"Write-Host This is a sample script with parameters $first $second\",\r\n \"Write-Host \\\"Second line with escaped characters\\\"\"\r\n ],\r\n \"parameters\": [\r\n {\r\n \"name\": \"second\",\r\n \"value\": \"var2\"\r\n },\r\n {\r\n \"name\": \"first\",\r\n \"value\": \"var1\"\r\n }\r\n ]\r\n}", diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineScaleSetTests/TestVirtualMachineScaleSetRedeploy.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineScaleSetTests/TestVirtualMachineScaleSetRedeploy.json index 5a146121d516..4ad385b7e8fc 100644 --- a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineScaleSetTests/TestVirtualMachineScaleSetRedeploy.json +++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineScaleSetTests/TestVirtualMachineScaleSetRedeploy.json @@ -3439,7 +3439,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/crptestps2768/providers/Microsoft.Compute/virtualMachineScaleSets/vmsscrptestps2768/virtualmachines/2/redeploy?api-version=2018-04-01", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/crptestps2768/providers/Microsoft.Compute/virtualMachineScaleSets/vmsscrptestps2768/virtualMachines/2/redeploy?api-version=2018-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI3NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3NjcnB0ZXN0cHMyNzY4L3ZpcnR1YWxtYWNoaW5lcy8yL3JlZGVwbG95P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "POST", "RequestBody": "", @@ -3978,7 +3978,7 @@ "StatusCode": 409 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/crptestps2768/providers/Microsoft.Compute/virtualMachineScaleSets/vmsscrptestps2768/virtualmachines/2/performMaintenance?api-version=2018-04-01", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/crptestps2768/providers/Microsoft.Compute/virtualMachineScaleSets/vmsscrptestps2768/virtualMachines/2/performMaintenance?api-version=2018-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI3NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3NjcnB0ZXN0cHMyNzY4L3ZpcnR1YWxtYWNoaW5lcy8yL3BlcmZvcm1NYWludGVuYW5jZT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "POST", "RequestBody": "", diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageList.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageList.json index ae8cad7e8ece..6e7fb6c6488f 100644 --- a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageList.json +++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageList.json @@ -1,49 +1,45 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a78cbf9-50c0-4cb7-924b-08b390e6f4f3" + "0418209f-f25c-4b2f-951e-b47d7582246d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "16966" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-request-id": [ - "a51a4c4d-c809-41ca-aa12-844d59f9042c" + "06546137-32dc-4b47-9b8f-eaa00dd11080" ], "x-ms-correlation-request-id": [ - "a51a4c4d-c809-41ca-aa12-844d59f9042c" + "06546137-32dc-4b47-9b8f-eaa00dd11080" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012621Z:a51a4c4d-c809-41ca-aa12-844d59f9042c" + "EASTUS:20250602T214812Z:06546137-32dc-4b47-9b8f-eaa00dd11080" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,44 +47,50 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DCEE739DDABF4DBBA48A7DBCD69B5231 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:48:12Z" ], "Date": [ - "Sat, 14 Jul 2018 01:26:20 GMT" + "Mon, 02 Jun 2025 21:48:12 GMT" + ], + "Content-Length": [ + "94791" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"274dd4a6-9687-462d-9bee-4f973b07ce46\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"579d9c9d-4c83-4efc-8124-7eba65ed3356\",\r\n \"roleDefinitionId\": \"8c99c4ce-d744-4597-a2f0-0a0044d67560\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-03\",\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-03\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-03\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-03\",\r\n \"2022-08-01\",\r\n \"2022-03-03\",\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/VMApplications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/vmimages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups/capacityReservations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Israel Central\",\r\n \"Poland Central\",\r\n \"Malaysia West\",\r\n \"Italy North\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sharedGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-03\",\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-03\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-03\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-03\",\r\n \"2022-08-01\",\r\n \"2022-03-03\",\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/communityGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-03\",\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-03\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-03\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-03\",\r\n \"2022-08-01\",\r\n \"2022-03-03\",\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-03\",\r\n \"2024-03-03\",\r\n \"2023-07-03\",\r\n \"2022-08-03\",\r\n \"2022-03-03\",\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-03\",\r\n \"2024-03-03\",\r\n \"2023-07-03\",\r\n \"2022-08-03\",\r\n \"2022-03-03\",\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-03\",\r\n \"2024-03-03\",\r\n \"2023-07-03\",\r\n \"2022-08-03\",\r\n \"2022-03-03\",\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-03\",\r\n \"2024-03-03\",\r\n \"2023-07-03\",\r\n \"2022-08-03\",\r\n \"2022-03-03\",\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-03\",\r\n \"2024-03-03\",\r\n \"2023-07-03\",\r\n \"2022-08-03\",\r\n \"2022-03-03\",\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"payloadGroups\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-03\",\r\n \"2024-03-03\",\r\n \"2023-07-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/applications\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-03\",\r\n \"2024-03-03\",\r\n \"2023-07-03\",\r\n \"2022-08-03\",\r\n \"2022-03-03\",\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/applications/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-03\",\r\n \"2024-03-03\",\r\n \"2023-07-03\",\r\n \"2022-08-03\",\r\n \"2022-03-03\",\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-01-02\",\r\n \"2024-03-02\",\r\n \"2023-10-02\",\r\n \"2023-04-02\",\r\n \"2023-01-02\",\r\n \"2022-07-02\",\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-01-02\",\r\n \"2024-03-02\",\r\n \"2023-10-02\",\r\n \"2023-04-02\",\r\n \"2023-01-02\",\r\n \"2022-07-02\",\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-01-02\",\r\n \"2024-03-02\",\r\n \"2023-10-02\",\r\n \"2023-04-02\",\r\n \"2023-01-02\",\r\n \"2022-07-02\",\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-01-02\",\r\n \"2024-03-02\",\r\n \"2023-10-02\",\r\n \"2023-04-02\",\r\n \"2023-01-02\",\r\n \"2022-07-02\",\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-01-02\",\r\n \"2024-03-02\",\r\n \"2023-10-02\",\r\n \"2023-04-02\",\r\n \"2023-01-02\",\r\n \"2022-07-02\",\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints/diskRestorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-01-02\",\r\n \"2024-03-02\",\r\n \"2023-10-02\",\r\n \"2023-04-02\",\r\n \"2023-01-02\",\r\n \"2022-07-02\",\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/disks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-01-02\",\r\n \"2024-03-02\",\r\n \"2023-10-02\",\r\n \"2023-04-02\",\r\n \"2023-01-02\",\r\n \"2022-07-02\",\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-04\",\r\n \"2022-09-04\",\r\n \"2022-04-04\",\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roles\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-04\",\r\n \"2022-09-04\",\r\n \"2022-04-04\",\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-04\",\r\n \"2022-09-04\",\r\n \"2022-04-04\",\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/csoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-04\",\r\n \"2022-09-04\",\r\n \"2022-04-04\",\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsVersions\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-04\",\r\n \"2022-09-04\",\r\n \"2022-04-04\",\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsFamilies\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-04\",\r\n \"2022-09-04\",\r\n \"2022-04-04\",\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/publicIPAddresses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Jio India West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Qatar Central\",\r\n \"Sweden Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US 3\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diagnostics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Jio India West\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Jio India Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Qatar Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Australia Central 2\",\r\n \"New Zealand North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Italy North\",\r\n \"Poland Central\",\r\n \"Sweden Central\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Mexico Central\",\r\n \"Brazil Southeast\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-02-01-preview\",\r\n \"2024-06-01-preview\",\r\n \"2024-03-01-preview\",\r\n \"2021-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/diagnosticOperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Jio India West\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Jio India Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Qatar Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Australia Central 2\",\r\n \"New Zealand North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Italy North\",\r\n \"Poland Central\",\r\n \"Sweden Central\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Mexico Central\",\r\n \"Brazil Southeast\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-02-01-preview\",\r\n \"2024-06-01-preview\",\r\n \"2024-03-01-preview\",\r\n \"2021-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/placementScores\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Jio India West\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Jio India Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Qatar Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Australia Central 2\",\r\n \"New Zealand North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Italy North\",\r\n \"Poland Central\",\r\n \"Sweden Central\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Mexico Central\",\r\n \"Brazil Southeast\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-02-01-preview\",\r\n \"2024-06-01-preview\",\r\n \"2024-03-01-preview\",\r\n \"2021-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/placementRecommendations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Jio India West\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Jio India Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Qatar Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Australia Central 2\",\r\n \"New Zealand North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Italy North\",\r\n \"Poland Central\",\r\n \"Sweden Central\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Mexico Central\",\r\n \"Brazil Southeast\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-02-01-preview\",\r\n \"2024-06-01-preview\",\r\n \"2024-03-01-preview\",\r\n \"2021-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizeRecommendations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Jio India West\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Jio India Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Qatar Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Australia Central 2\",\r\n \"New Zealand North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Italy North\",\r\n \"Poland Central\",\r\n \"Sweden Central\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Mexico Central\",\r\n \"Brazil Southeast\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-11-01\",\r\n \"2024-07-01\",\r\n \"2024-03-01\",\r\n \"2023-09-01\",\r\n \"2023-07-01\",\r\n \"2023-03-01\",\r\n \"2022-11-01\",\r\n \"2022-08-01\",\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/serviceArtifacts\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Malaysia West\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-03\",\r\n \"2024-03-03\",\r\n \"2023-07-03\",\r\n \"2022-08-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e275b1eb-1ef1-4203-a934-04fb53b3a8e8" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5bac902c-44dd-49fd-83ef-8d9e01c7f239" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike-database\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike-database\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alces-flight-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alces-flight-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appspace\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appspace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aptean-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aptean-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aqua-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aqua-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlassian\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlassian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brainshare-it\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/brainshare-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cbreplicator\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cbreplicator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhub-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhub-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudify\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudify\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cortex-ag\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cortex-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crate-io\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/crate-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastbanctech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastbanctech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ekran-system-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ekran-system-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elementrem\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elementrem\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genesys-source\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/genesys-source\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gordic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gordic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"humanlogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/humanlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mactores_inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mactores_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maketv\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/maketv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsec-zrt\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsec-zrt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.DscPolicy2.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.DscPolicy2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftoxa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftoxa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msrazuresapservices\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/msrazuresapservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsil\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsil\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nubeva-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nubeva-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opsview-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opsview-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scsk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scsk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shieldx-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/shieldx-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sidm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sidm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplygon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplygon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusiondashboard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusiondashboard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tokyosystemhouse\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tokyosystemhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velostrata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velostrata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velostrata-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velostrata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vintegris\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vintegris\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waves\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/waves\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workspot\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/workspot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "151660" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -97,65 +99,73 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f9cefe57-6d7d-423a-bcb5-35422fef9c50_131747220908267077" + "f9cefe57-6d7d-423a-bcb5-35422fef9c50_133922693564388247" ], "x-ms-request-id": [ - "ee10e762-e61a-43b6-b2c2-6adc4b54cf62" - ], - "Cache-Control": [ - "no-cache" + "06ba7350-e745-4b75-9cc1-059c78324f1a" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8cb003fe-4ee4-43ea-87e4-309de769d5eb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "daf502db-cefb-440b-b920-00d1e954b8fe" + "a758d95e-537a-44bf-8b3f-6966a56d5c0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012622Z:daf502db-cefb-440b-b920-00d1e954b8fe" + "EASTUS2:20250602T214812Z:a758d95e-537a-44bf-8b3f-6966a56d5c0e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB41F59B83B841F09A5CC0384452E087 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:48:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:22 GMT" + "Mon, 02 Jun 2025 21:48:12 GMT" + ], + "Content-Length": [ + "530726" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365Security.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365Security.Kevlar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1653036178719\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1653036178719\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evsbroadcastequipment1693315403643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evsbroadcastequipment1693315403643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abinitiosoftwarellc1677006784871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abinitiosoftwarellc1677006784871\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"faddomltd1673360856547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/faddomltd1673360856547\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adeoimagingo1682623715346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adeoimagingo1682623715346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celebaltechnologiesprivatelimited1667842096083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/celebaltechnologiesprivatelimited1667842096083\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zeetim1660843138752\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zeetim1660843138752\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elaniaresources1648486385938\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elaniaresources1648486385938\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tolgee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tolgee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ridgesecuritytechnologyinc1670890478389\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ridgesecuritytechnologyinc1670890478389\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudgtiou1724737530190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudgtiou1724737530190\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.PrivateTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.PrivateTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"askomspzoo1725359918536\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/askomspzoo1725359918536\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"novisystemsinc1664197608642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/novisystemsinc1664197608642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tcginformatikag1604414835514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tcginformatikag1604414835514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications_ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications_ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"utimacoisgmbh1676995905654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/utimacoisgmbh1676995905654\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"k-businesscomag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/k-businesscomag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yendigital\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yendigital\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ortus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ortus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cotechnoe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cotechnoe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions.Internal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"runailabsltd1647779544073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/runailabsltd1647779544073\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hexaware-technologies-1485696\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hexaware-technologies-1485696\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kasmtechnologiesllc1747773134895\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kasmtechnologiesllc1747773134895\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bjs-devops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bjs-devops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"technidoosolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/technidoosolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.HardwareHealthService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.HardwareHealthService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commscopeinc1692367319930\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commscopeinc1692367319930\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netskopebwan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netskopebwan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pctestcpppub8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pctestcpppub8\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.HybridContainerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.HybridContainerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"linkshadowlimited1688362969670\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/linkshadowlimited1688362969670\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jet-tech-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jet-tech-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwaretailor1609753491333\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwaretailor1609753491333\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kenmeitechnologies1707926434780\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kenmeitechnologies1707926434780\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wassa1725441148252\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wassa1725441148252\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_commercial_marketplace_services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_commercial_marketplace_services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SCOMMI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SCOMMI\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdalsecurity-4649307\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdalsecurity-4649307\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globaldataanalyticsptyltdtatapeark1636285238780\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globaldataanalyticsptyltdtatapeark1636285238780\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybermaxxllc1721061627123\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybermaxxllc1721061627123\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSExtTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIRCore.CAPSExtTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe.serviceguard.ha.dr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe.serviceguard.ha.dr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crowdboticscorporation1682618353390\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crowdboticscorporation1682618353390\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enghouseinteractiveab1591177812575\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enghouseinteractiveab1591177812575\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcheckltd1695809167331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcheckltd1695809167331\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Elastic.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Elastic.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mango_solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mango_solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itac1728588411219\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itac1728588411219\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SCIM.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SCIM.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ebatinca1717965618562\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ebatinca1717965618562\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphiantinc1622651764677\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphiantinc1622651764677\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ultoriaedesenvolvimentodesoftwareltda1662599967069\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ultoriaedesenvolvimentodesoftwareltda1662599967069\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swxtchiollc1614108926893\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swxtchiollc1614108926893\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"presightaiholdingplc1721897478652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/presightaiholdingplc1721897478652\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"phonexiasro1585942477821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/phonexiasro1585942477821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elimnet1678245663131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elimnet1678245663131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kongsbergdigitalas1656311721334\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kongsbergdigitalas1656311721334\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecosmob-tech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecosmob-tech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmconsulting1691681668032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmconsulting1691681668032\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry1736978014039\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry1736978014039\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rockwellautomationinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rockwellautomationinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azosistechnologiesprivatelimited1678602118439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azosistechnologiesprivatelimited1678602118439\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikandevelopmentnv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikandevelopmentnv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"erockyenterprisesoftwarefoundationinc1653071250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/erockyenterprisesoftwarefoundationinc1653071250513\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CortexAG\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CortexAG\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rinnelabs1694698542130\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rinnelabs1694698542130\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicroinc1646754541828\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicroinc1646754541828\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zultysinc1596831546163\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tosiboxoy1646313791207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tosiboxoy1646313791207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"publicworksauthority-ashghal-1726120801616\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/publicworksauthority-ashghal-1726120801616\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bui\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bui\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"callabacloud1655146409258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/callabacloud1655146409258\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"it-conductorinc1709070852352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/it-conductorinc1709070852352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"madarsonitllc1614702968211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/madarsonitllc1614702968211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"claroty1709722359369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/claroty1709722359369\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mphasis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mphasis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nlmaticscorp1686371242615\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nlmaticscorp1686371242615\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextfoam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextfoam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"amestofortytwoas1653635920536\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/amestofortytwoas1653635920536\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filingcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filingcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"backupassure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/backupassure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altratechnologiesptyltd1719876965699\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altratechnologiesptyltd1719876965699\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aqtraplatformllc1657880532038\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aqtraplatformllc1657880532038\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"threatmodelersoftwareinc1678908538740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/threatmodelersoftwareinc1678908538740\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modulosag1662472793092\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modulosag1662472793092\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ssctechnologiesinc1627569348038\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ssctechnologiesinc1627569348038\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testtestindustryexperiencestest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testtestindustryexperiencestest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-canada-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-canada-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quibiqgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quibiqgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasquaredusainc1681613080256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasquaredusainc1681613080256\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cpacketnetworks1719269615814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cpacketnetworks1719269615814\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gyoutsourcingparalatamsociedadanonima1693102395423\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gyoutsourcingparalatamsociedadanonima1693102395423\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentextglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentextglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"contosomarketplacetestoffers1689257433139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/contosomarketplacetestoffers1689257433139\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"calnexsolutionsplc1646835041441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/calnexsolutionsplc1646835041441\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ateme1601986935870\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ateme1601986935870\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eisoftwaretechnologyhongkongcolimited1722223098317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eisoftwaretechnologyhongkongcolimited1722223098317\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aurachainag1694682885402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aurachainag1694682885402\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguaziosystemsinc1642090150854\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguaziosystemsinc1642090150854\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"admindroidsoftwares\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/admindroidsoftwares\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightbitslabsinc1670948060485\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightbitslabsinc1670948060485\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1655452468737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1655452468737\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"musarubrausllc1671236565460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/musarubrausllc1671236565460\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"declarationsoftware1674733568950\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/declarationsoftware1674733568950\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ServicesHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ServicesHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto-si1654889826459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto-si1654889826459\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-visionioinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-visionioinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xpdeep1718714414789\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xpdeep1718714414789\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comtelspa1649256695779\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comtelspa1649256695779\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dablabsinc1654806039152\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dablabsinc1654806039152\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enteruptors10232023052922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enteruptors10232023052922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cad4devopsinc1662079207461\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cad4devopsinc1662079207461\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AksArcForLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AksArcForLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardidymanager\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardidymanager\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eliamarzia1667381463185\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eliamarzia1667381463185\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tosibox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tosibox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spglobalmarketintelligence1596223440363\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spglobalmarketintelligence1596223440363\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thepartnermasters1673401089019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thepartnermasters1673401089019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.PingMesh.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.PingMesh.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"homeofficeimprovementsltd1629905933258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/homeofficeimprovementsltd1629905933258\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elmcomputing1669646908295\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elmcomputing1669646908295\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OSTelemetry.Cirrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OSTelemetry.Cirrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"articentgroupllc1635512619530\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/articentgroupllc1635512619530\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybercxptyltd1590132359004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybercxptyltd1590132359004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcticwolfnetworks1680048607525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcticwolfnetworks1680048607525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2812187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/2812187\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"violetrobotlimited1679388052172\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/violetrobotlimited1679388052172\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"analytiumltd1582389146376\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/analytiumltd1582389146376\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gajshieldinfotechindiapvtltd1693211201273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gajshieldinfotechindiapvtltd1693211201273\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dcassociatesgroupinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dcassociatesgroupinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inventeccorp1645697962291\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inventeccorp1645697962291\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netskope\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netskope\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eigenlimited1610374015589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eigenlimited1610374015589\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crestdatasystemsprivatelimited1700646988325\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crestdatasystemsprivatelimited1700646988325\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"routineai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/routineai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacticsltd1591001866957\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacticsltd1591001866957\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dbsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dbsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquilaltd1636632578012\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquilaltd1636632578012\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Spektra.Cloudlabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Spektra.Cloudlabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.MeshVPN.Internal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.MeshVPN.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caeves0001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/caeves0001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudmaker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudmaker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasmartaiprivatelimited1682323573958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasmartaiprivatelimited1682323573958\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ixptyltd1586433755284\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ixptyltd1586433755284\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ekinopsfrance1583498025383\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ekinopsfrance1583498025383\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iqsuite-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iqsuite-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cendio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cendio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalateams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalateams\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boxarr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boxarr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redhat-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redhat-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adminwaresoftwareprivatelimited1613149497364\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adminwaresoftwareprivatelimited1613149497364\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bunkerity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bunkerity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynamicweb-solutions-asia-4636753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynamicweb-solutions-asia-4636753\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ckchainparaamricalatinayelcaribel-net1664396707594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ckchainparaamricalatinayelcaribel-net1664396707594\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallaroolabs1649097394131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallaroolabs1649097394131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1614663853766\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1614663853766\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Watson\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Watson\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seatablegmbh1672668832676\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seatablegmbh1672668832676\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtbusinessvalidation1685730553911\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtbusinessvalidation1685730553911\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"anarion-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/anarion-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stardogunioninc1706307162993\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stardogunioninc1706307162993\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbluellc1705690815510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbluellc1705690815510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"myhsm1591964058742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/myhsm1591964058742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciena1654095655352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciena1654095655352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adiom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adiom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enclaivegmbh1643578052639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enclaivegmbh1643578052639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kamiwaza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kamiwaza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opticcaconsultinginc1604521372438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opticcaconsultinginc1604521372438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"whizhacktechnologiespltd1665139209828\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/whizhacktechnologiespltd1665139209828\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nmcloudsolutionsllc1645603292959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nmcloudsolutionsllc1645603292959\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"grist\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/grist\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inductiveautomationllc1675268212292\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inductiveautomationllc1675268212292\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comforteag1690799379662\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comforteag1690799379662\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ennetixinc1663880176969\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ennetixinc1663880176969\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techilatechnologiesltd1666269025720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techilatechnologiesltd1666269025720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratuson\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratuson\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"x-margininc1678098868153\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/x-margininc1678098868153\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntegralinc1579229654467\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntegralinc1579229654467\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ir\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ir\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zainabmarket\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zainabmarket\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"upstage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/upstage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ligadatainformationtechnologycollc1692093528909\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ligadatainformationtechnologycollc1692093528909\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airspannetworks1685633374715\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/airspannetworks1685633374715\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureVirtualDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureVirtualDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"info-inlet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/info-inlet-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyphercorinc1687437871535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyphercorinc1687437871535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bansirllc1619470302579\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bansirllc1619470302579\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1685409837420\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1685409837420\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"turtletraction.oss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/turtletraction.oss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lcmcon1687976613543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lcmcon1687976613543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1704334229030\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1704334229030\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yeastar1695699937035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yeastar1695699937035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abcostingprodutoseserviosltda1657246951521\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abcostingprodutoseserviosltda1657246951521\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"texcio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/texcio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudimg1647283583153\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudimg1647283583153\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftazenpcps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftazenpcps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dftworksllc1665199028638\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dftworksllc1665199028638\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sigaotsolutionsinc1703353271830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sigaotsolutionsinc1703353271830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"technomanagement1663490401500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/technomanagement1663490401500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uptycs-cnapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uptycs-cnapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacificdataintegrators1738256099128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacificdataintegrators1738256099128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextarp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Reliability.Watson\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Reliability.Watson\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metric-insights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/metric-insights\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SCOMMIServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SCOMMIServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bcloudllc1671615348068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bcloudllc1671615348068\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midrangecloudsolutionsllc1683714453763\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midrangecloudsolutionsllc1683714453763\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-gaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arqitlimited1676992699665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arqitlimited1676992699665\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saharacombinedforgeneraltrading1592917520835\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saharacombinedforgeneraltrading1592917520835\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"excelenteinc1620934446334\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/excelenteinc1620934446334\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diveplanecorporation1712251239175\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diveplanecorporation1712251239175\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1730358365770\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1730358365770\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStackHCI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStackHCI\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"well-linktechpteltd1720676101290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/well-linktechpteltd1720676101290\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"c3iotinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/c3iotinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"persz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/persz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"interoperabilitybidcoincdbalyniate1685407264923\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/interoperabilitybidcoincdbalyniate1685407264923\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse1721900171446\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse1721900171446\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1597404694066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1597404694066\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arctera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arctera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"curvc1664848996592\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/curvc1664848996592\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1731658013774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1731658013774\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"grainite1677100649276\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/grainite1677100649276\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dedalusspa1661878333696\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dedalusspa1661878333696\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"printplus_ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/printplus_ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bedatadrivenbv1612942138209\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bedatadrivenbv1612942138209\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphinxindusanalyticsopcprivatelimited1702362435306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphinxindusanalyticsopcprivatelimited1702362435306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unstructured1691024866136\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unstructured1691024866136\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"entelectsolutionsptyltd1584988532030\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/entelectsolutionsptyltd1584988532030\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextcloudgmbh1597841818906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextcloudgmbh1597841818906\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blpindustryaiprivatelimited1694516670498\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blpindustryaiprivatelimited1694516670498\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automaicorporation1684540889707\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automaicorporation1684540889707\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clearvisibility1695136446164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clearvisibility1695136446164\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bitcorpsrl1640768933322\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bitcorpsrl1640768933322\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cosmian1582023228706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cosmian1582023228706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlabinc1659373855767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlabinc1659373855767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vailley-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vailley-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cirruslinksolutions1598993297919\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cirruslinksolutions1598993297919\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"envision_blockchain-5199407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/envision_blockchain-5199407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"giggso1725717492811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/giggso1725717492811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"musarubrausllc1643827029255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/musarubrausllc1643827029255\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unify-cloud-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unify-cloud-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softserveinc1605804530752\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softserveinc1605804530752\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emqtechnologiesincorporated1678779968155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/emqtechnologiesincorporated1678779968155\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwarealliancelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwarealliancelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pandorafms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pandorafms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsimages\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsimages\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivtree1620220752792\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivtree1620220752792\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dockerinc1694120899427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dockerinc1694120899427\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"holmsecurityswedenab1639511288603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/holmsecurityswedenab1639511288603\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spinsystemsinc1690229879053\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spinsystemsinc1690229879053\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"anapaya\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/anapaya\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"m-starsimulationsllc1683142212605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/m-starsimulationsllc1683142212605\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidterrallc1675287658838\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidterrallc1675287658838\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"c1sttechnologiesllc1689876688401\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/c1sttechnologiesllc1689876688401\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Edge.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Edge.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itdevtechllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itdevtechllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"slotix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/slotix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsCodeIntegrity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WindowsCodeIntegrity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voyageaiinnovationsinc1718340344903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voyageaiinnovationsinc1718340344903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"keysight-technologies-ixvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/keysight-technologies-ixvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firsteigen1646266544784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firsteigen1646266544784\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1667570284386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1667570284386\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecogeneticllc1676924558438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecogeneticllc1676924558438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krontech1689879437079\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/krontech1689879437079\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wsusainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wsusainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonksuruinc1697403499772\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonksuruinc1697403499772\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decyphertek\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/decyphertek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hoonartekwurksprivatelimited1627292867821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hoonartekwurksprivatelimited1627292867821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcvideo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcvideo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reliancyllc1588113249666\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reliancyllc1588113249666\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.ArcVirtualization\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.ArcVirtualization\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qarbine1618349238434\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qarbine1618349238434\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xplgltd1653211163102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xplgltd1653211163102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tilleredlimited1655688918280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tilleredlimited1655688918280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vasion1701746527592\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vasion1701746527592\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"indiecrew-studio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/indiecrew-studio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neccorporationofamerica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neccorporationofamerica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neonforge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neonforge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infinitumsa1629294824649\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infinitumsa1629294824649\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ai-opsllc1593527598862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ai-opsllc1593527598862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"54cuatro1595867609214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/54cuatro1595867609214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drzcorporation1687530635641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drzcorporation1687530635641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Sentinel.SapAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Sentinel.SapAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"active-integration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/active-integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elisity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elisity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"purplecubeinc1680669832842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/purplecubeinc1680669832842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.HybridFabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.HybridFabric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-australia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-australia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globant\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwareagusainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwareagusainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1720148908856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1720148908856\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataedo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataedo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudforttechnology1676310975446\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudforttechnology1676310975446\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"insightsoftwarecomlimited1584800919871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/insightsoftwarecomlimited1584800919871\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1689761683063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1689761683063\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bevywisenetworksllp1677848977927\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bevywisenetworksllp1677848977927\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-asperia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-asperia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"civicanorthamerica1706115853175\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/civicanorthamerica1706115853175\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mirantis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mirantis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s-ins-microsoftpartner-usa-ny-armonk-1627616993058\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s-ins-microsoftpartner-usa-ny-armonk-1627616993058\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omnissallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/omnissallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aibusinessschoolag1712156537216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aibusinessschoolag1712156537216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_gps_americas_code-with1694019817347\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_gps_americas_code-with1694019817347\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontotextad1692361256062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontotextad1692361256062\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shanghaiweilitechnologycoltd1645150733082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shanghaiweilitechnologycoltd1645150733082\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realloadptyltd1725868033842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/realloadptyltd1725868033842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cgg1698165761764\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cgg1698165761764\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cubebackupinc1662619479161\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cubebackupinc1662619479161\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collibrainctin80-09241681732799250972\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collibrainctin80-09241681732799250972\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loamics-fr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/loamics-fr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"medcurioinc1655396355237\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/medcurioinc1655396355237\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veraxai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veraxai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Security.CRED.Defender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Security.CRED.Defender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synergisttechnologyllc1718233086249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synergisttechnologyllc1718233086249\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itecosystemssolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itecosystemssolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"einmind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/einmind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stelodata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stelodata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-llc-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-llc-adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"supportedimagesllc1615494954880\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/supportedimagesllc1615494954880\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcinformatique1681216831560\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcinformatique1681216831560\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasarai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasarai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"keysighttechnologies_cyperf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/keysighttechnologies_cyperf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSStgBvt20\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIRCore.CAPSStgBvt20\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akinsit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akinsit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciphertechsinc1676666082978\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciphertechsinc1676666082978\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"suseirelandltd1692213356027\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/suseirelandltd1692213356027\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9000\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/9000\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlettpackardenterprise1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlettpackardenterprise1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dualitytechnologiesinc1673786653838\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dualitytechnologiesinc1673786653838\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"belindacz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/belindacz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohirriminc1663792273127\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohirriminc1663792273127\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestackinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestackinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyolosecurityltd1726775987480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyolosecurityltd1726775987480\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evorine1660210935094\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evorine1660210935094\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neverfailcontinuouscontrolsinc1600463582767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neverfailcontinuouscontrolsinc1600463582767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docshifter1673950324990\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/docshifter1673950324990\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datprof\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datprof\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevancelabinc1697784679917\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevancelabinc1697784679917\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HSE.Infra.Internal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HSE.Infra.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yaseensmarketltd03032025023044\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yaseensmarketltd03032025023044\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infotectsecuritypteltd1584534959776\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infotectsecuritypteltd1584534959776\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litecho1652270712947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litecho1652270712947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"criblinc1673975616879\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/criblinc1673975616879\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"supernainc1642621287664\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/supernainc1642621287664\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"acplsystemspvtltd1734432892724\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/acplsystemspvtltd1734432892724\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"siemensplmsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/siemensplmsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1685614597565\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1685614597565\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"terminusdb1606769310168\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/terminusdb1606769310168\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"keysight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/keysight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redhat1627408356675\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redhat1627408356675\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocksavagetechnologyinc1713893864282\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocksavagetechnologyinc1713893864282\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"africamediaconsortiumllc1670411800267\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/africamediaconsortiumllc1670411800267\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudriches\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudriches\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SiteRecovery.Dra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SiteRecovery.Dra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Tanium.Client\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Tanium.Client\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.RecoveryServices.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.RecoveryServices.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rightdatainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rightdatainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visokiouklimited1661943152060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visokiouklimited1661943152060\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azure-hpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azure-hpc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datamasquelimited1651546259207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datamasquelimited1651546259207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"phitr-ai-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/phitr-ai-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kCloudHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kCloudHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jinaai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jinaai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1695609141511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1695609141511\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swirlcorporation1684335149355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swirlcorporation1684335149355\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paratools-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paratools-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fosterfindlayassociateslimited1724322170979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fosterfindlayassociateslimited1724322170979\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waterflowtechnologypvtltd1729501777501\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/waterflowtechnologypvtltd1729501777501\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profeciait1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profeciait1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1650441978315\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1650441978315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numenta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numenta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codeingenierainformticasl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codeingenierainformticasl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"levelblue\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/levelblue\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shapelets1647335373345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shapelets1647335373345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"assureddataprotectioninc1667911107164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/assureddataprotectioninc1667911107164\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSExtBvt.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIRCore.CAPSExtBvt.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3mdincdbadenaliadvancedintegration1720428393061\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/3mdincdbadenaliadvancedintegration1720428393061\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinkuplabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinkuplabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidefoundation1692080730903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidefoundation1692080730903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataphion1595790857048\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataphion1595790857048\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"salient\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/salient\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphi-consulting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphi-consulting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zaintechsolutionsfz-llc1692862657242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zaintechsolutionsfz-llc1692862657242\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365Security.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365Security.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"andampgmbh1675347912177\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/andampgmbh1675347912177\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.Orchestration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.Orchestration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hexaeightopcprivatelimited1653195738074\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hexaeightopcprivatelimited1653195738074\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataevolvesolutionsopcprivatelimited1673336394359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataevolvesolutionsopcprivatelimited1673336394359\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"on2it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/on2it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vfunctiontechnologiesltd1665073911806\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vfunctiontechnologiesltd1665073911806\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"callwaretechnologiesinc1657114750733\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/callwaretechnologiesinc1657114750733\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"frizb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/frizb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vianai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vianai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cacheguardtechnologieslimited1681804059471\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cacheguardtechnologieslimited1681804059471\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"piqwanasac1670892237457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/piqwanasac1670892237457\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemceisi123456\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemceisi123456\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoviewsystemsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoviewsystemsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corememlimited1599075556346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corememlimited1599075556346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mongodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mongodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crayon-group-as-1129016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crayon-group-as-1129016\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pcloudhosting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pcloudhosting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Cirrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FleetDiagnostics.Cirrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corememlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corememlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365AzsecpackAutoconfig.CentralNamespaceConfigure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365AzsecpackAutoconfig.CentralNamespaceConfigure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moxainc1660788982930\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moxainc1660788982930\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"in4it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/in4it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"philterdllc1687189098111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/philterdllc1687189098111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginuity-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginuity-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"experollc1644352127859\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/experollc1644352127859\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"epicyclelimited1653984451703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/epicyclelimited1653984451703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"optimitiveslu1618318884537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/optimitiveslu1618318884537\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivanti-vadc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivanti-vadc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kpmglowergulflimited1744019197011\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kpmglowergulflimited1744019197011\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubilityai1599391188425\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubilityai1599391188425\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIR.RC.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIR.RC.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veripark_solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veripark_solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TeamViewer.AzureVMExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TeamViewer.AzureVMExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonatypeinc1724257499617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonatypeinc1724257499617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shardsecureinc1594847380725\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shardsecureinc1594847380725\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinetfederal1695393143380\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinetfederal1695393143380\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"komprise_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/komprise_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"praelexis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/praelexis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catswords\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catswords\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zetarisptyltd1653890360235\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zetarisptyltd1653890360235\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hostingcontrollerinc1656315491972\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hostingcontrollerinc1656315491972\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fano_labs_limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fano_labs_limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"capaxdiscovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/capaxdiscovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataeazesystemspvtltd1720620091242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataeazesystemspvtltd1720620091242\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alaiso\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alaiso\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swiftroofestimatingservicesltd1695806680945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swiftroofestimatingservicesltd1695806680945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"weidmllerinterfacegmbhcokg1593785027047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/weidmllerinterfacegmbhcokg1593785027047\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pingcapusinc1721021923990\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pingcapusinc1721021923990\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pkisolutionsllc1679597045863\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pkisolutionsllc1679597045863\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuvemnestllc1695391252715\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuvemnestllc1695391252715\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"amperecomputingllc1649288430919\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/amperecomputingllc1649288430919\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dispersiveholdingsinc1653422231259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dispersiveholdingsinc1653422231259\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neonforgellc1660679895021\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neonforgellc1660679895021\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"latentaiinc1680819096432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/latentaiinc1680819096432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies1699381160543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies1699381160543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"askforcloudllc1651766049149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/askforcloudllc1651766049149\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelprojects1681819643206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelprojects1681819643206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exadelinc1675271740487\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exadelinc1675271740487\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HSE.Infra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HSE.Infra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcorporation1687208452115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcorporation1687208452115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudframeinc1615321281795\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudframeinc1615321281795\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"impactbusinessinformationsolutions1729610964134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/impactbusinessinformationsolutions1729610964134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maya_data_ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maya_data_ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgeaiinc1716488540630\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgeaiinc1716488540630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cacheguardtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cacheguardtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orienlabsllc1678315026142\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orienlabsllc1678315026142\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"legacyboxltd1599224386505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/legacyboxltd1599224386505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentraltd1702900353613\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentraltd1702900353613\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vocallsincsro1689854055826\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vocallsincsro1689854055826\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"polverio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/polverio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureVirtualDesktop-CICD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureVirtualDesktop-CICD\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globallinkingsolutionsinc1673581558566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globallinkingsolutionsinc1673581558566\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplifier\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplifier\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"agrozgroupsdnbhd1700628095587\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/agrozgroupsdnbhd1700628095587\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunrisesoftwaregmbh1600691313341\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunrisesoftwaregmbh1600691313341\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aldercapitalllc1682703876147\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aldercapitalllc1682703876147\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathildetechnologyhongkonglimited1669113447021\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathildetechnologyhongkonglimited1669113447021\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"entrenamientoinformticoavanzadosadecv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/entrenamientoinformticoavanzadosadecv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synologyinc1715323237857\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synologyinc1715323237857\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kockpitanalyticspvtltd1645177427945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kockpitanalyticspvtltd1645177427945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appsentinelsprivatelimited1682860922767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appsentinelsprivatelimited1682860922767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dcdobrasil1651841970501\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dcdobrasil1651841970501\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OSTelemetry.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OSTelemetry.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elegantcodesolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elegantcodesolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ilinksystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ilinksystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gottaphish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gottaphish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sedetos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sedetos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cdatajapan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cdatajapan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nirvaha1688048738599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nirvaha1688048738599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubisense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"finticsas1604875530254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/finticsas1604875530254\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sorba-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sorba-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seesharpsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seesharpsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conclavecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/conclavecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nexusfrontiertechlimited1660561594678\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nexusfrontiertechlimited1660561594678\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"presciencedecisionsolutionspvtltd1717148574997\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/presciencedecisionsolutionspvtltd1717148574997\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsasecurity1687281258544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsasecurity1687281258544\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"510713407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/510713407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"developmenthub2024\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/developmenthub2024\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"motifworks-azure-apps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/motifworks-azure-apps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swisssecurityhubag1684863672907\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swisssecurityhubag1684863672907\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Tenable.NessusAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Tenable.NessusAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.Observability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.Observability\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rackspace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rackspace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"optimatechlimited1688074981368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/optimatechlimited1688074981368\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maaztechnologies1728726102718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maaztechnologies1728726102718\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.PrivateTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC.PrivateTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"n2wsoftwareinc1657117813969\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/n2wsoftwareinc1657117813969\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"risecorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/risecorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"myriadtechnologiesptyltd-2094736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/myriadtechnologiesptyltd-2094736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds1685464784065\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds1685464784065\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindbreezegmbh1657087507223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindbreezegmbh1657087507223\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sahasholdingpvtltd2024\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sahasholdingpvtltd2024\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sixninesit1663769336580\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sixninesit1663769336580\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.MeshVPN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.MeshVPN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zamanconsultancylimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zamanconsultancylimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visionaize\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visionaize\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nets1664415757656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nets1664415757656\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OSTelemetry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OSTelemetry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graxinc1618409175503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graxinc1618409175503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ghes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ghes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comaticag1663321091033\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comaticag1663321091033\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buildpiper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/buildpiper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netprotrinity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netprotrinity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"braincube\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/braincube\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"compsolglobalinc1634128357503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/compsolglobalinc1634128357503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caloudicorporation1685526807944\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/caloudicorporation1685526807944\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cogstacklimited1697736441051\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cogstacklimited1697736441051\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcircleinc1727251401364\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcircleinc1727251401364\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalynxptyltd1629960622072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalynxptyltd1629960622072\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"precisoftlimitada1689031175058\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/precisoftlimitada1689031175058\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pcigeomaticsenterprisesinc1619717739720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pcigeomaticsenterprisesinc1619717739720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Xitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Xitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reductsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reductsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automonxltd1601306138716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automonxltd1601306138716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1touchio1627313187723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1touchio1627313187723\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tooljetsolutioninc1679496832216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tooljetsolutioninc1679496832216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sigsenztechnologiespvtltd1646072485417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sigsenztechnologiespvtltd1646072485417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maryamsmarket\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maryamsmarket\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genzeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genzeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"distylai1705447332869\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/distylai1705447332869\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sprinxsystemsas1582034211947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sprinxsystemsas1582034211947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Chaos.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Chaos.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reductstorellc1689939980623\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reductstorellc1689939980623\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"superhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/superhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thenielsencompany1584587184924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thenielsencompany1584587184924\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hexagonmanufacturingintelligence1586372099540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hexagonmanufacturingintelligence1586372099540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaleaiinc1703010376105\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaleaiinc1703010376105\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"walacorcorporation1689871416413\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/walacorcorporation1689871416413\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"in-biotprivatelimited1592297269046\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/in-biotprivatelimited1592297269046\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.ProxyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.ProxyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1672212957491\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1672212957491\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peplinkpepwavelimited1664796707280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/peplinkpepwavelimited1664796707280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tribe29gmbh1665582614827\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tribe29gmbh1665582614827\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"surepassidcorp1620848967359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/surepassidcorp1620848967359\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"businessimagingsystemsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/businessimagingsystemsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdomesolutionsprivatelimited1708671149622\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdomesolutionsprivatelimited1708671149622\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacbytelimited1655770796006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacbytelimited1655770796006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ansit-comgmbh1688555996538\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ansit-comgmbh1688555996538\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"c-phrasetechnologiesswedenab1674654373407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/c-phrasetechnologiesswedenab1674654373407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"100101010000\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/100101010000\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1654668554142\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1654668554142\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semanticai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semanticai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"coalescesolutionsllc1649284093713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/coalescesolutionsllc1649284093713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brainwaredwc-llc1669095990764\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brainwaredwc-llc1669095990764\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-isv-eng\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-isv-eng\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bynetdatacommunicationsltd1658928488221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bynetdatacommunicationsltd1658928488221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cteranetworksltd1651947437632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cteranetworksltd1651947437632\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerotrustedaillc1672945594749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerotrustedaillc1672945594749\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consoleworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/consoleworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"google-cloud-alloydb-omni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/google-cloud-alloydb-omni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperionsystemsengineeringltd1692960786190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperionsystemsengineeringltd1692960786190\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubika\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubika\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netticacorporation1696242544587\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netticacorporation1696242544587\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.HCI.Alerts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.HCI.Alerts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitedsecurityprovidersag1683803318933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitedsecurityprovidersag1683803318933\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"answerrocket1683647523767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/answerrocket1683647523767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"schmitzrzconsultgmbh1654870156925\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/schmitzrzconsultgmbh1654870156925\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft.o3fnet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft.o3fnet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f16f97ca-fe88-47c9-b264-40184fb39a73" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike-database\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike-database\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alces-flight-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alces-flight-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appspace\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appspace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aptean-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aptean-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aqua-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aqua-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlassian\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlassian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brainshare-it\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/brainshare-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cbreplicator\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cbreplicator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhub-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhub-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudify\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudify\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cortex-ag\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cortex-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crate-io\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/crate-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastbanctech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastbanctech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ekran-system-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ekran-system-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elementrem\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elementrem\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genesys-source\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/genesys-source\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gordic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gordic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"humanlogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/humanlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mactores_inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mactores_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maketv\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/maketv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsec-zrt\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsec-zrt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.DscPolicy2.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.DscPolicy2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftoxa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftoxa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msrazuresapservices\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/msrazuresapservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsil\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsil\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nubeva-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nubeva-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opsview-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opsview-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scsk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scsk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shieldx-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/shieldx-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sidm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sidm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplygon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplygon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusiondashboard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusiondashboard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tokyosystemhouse\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tokyosystemhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velostrata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velostrata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velostrata-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velostrata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vintegris\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vintegris\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waves\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/waves\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workspot\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/workspot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "151660" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -164,65 +174,73 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f9cefe57-6d7d-423a-bcb5-35422fef9c50_131747220908267077" + "f9cefe57-6d7d-423a-bcb5-35422fef9c50_133922693564388247" ], "x-ms-request-id": [ - "56f57754-7f66-4aab-8e52-6cd6896cafba" - ], - "Cache-Control": [ - "no-cache" + "cca17604-05bb-48a2-b3b9-af31184ad249" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d5d97418-3265-4ebf-8d36-ed6377348bfc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14762" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "675f3c34-ad60-4d35-bf0c-b81b53438fa1" + "845dbbff-de24-4091-bcec-fefd951e6318" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012702Z:675f3c34-ad60-4d35-bf0c-b81b53438fa1" + "EASTUS:20250602T215240Z:845dbbff-de24-4091-bcec-fefd951e6318" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2D6FE0819E4640A28390961A4D0845B4 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:52:40Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:01 GMT" + "Mon, 02 Jun 2025 21:52:40 GMT" + ], + "Content-Length": [ + "530726" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365Security.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365Security.Kevlar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1653036178719\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1653036178719\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evsbroadcastequipment1693315403643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evsbroadcastequipment1693315403643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abinitiosoftwarellc1677006784871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abinitiosoftwarellc1677006784871\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"faddomltd1673360856547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/faddomltd1673360856547\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adeoimagingo1682623715346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adeoimagingo1682623715346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celebaltechnologiesprivatelimited1667842096083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/celebaltechnologiesprivatelimited1667842096083\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zeetim1660843138752\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zeetim1660843138752\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elaniaresources1648486385938\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elaniaresources1648486385938\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tolgee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tolgee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ridgesecuritytechnologyinc1670890478389\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ridgesecuritytechnologyinc1670890478389\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudgtiou1724737530190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudgtiou1724737530190\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.PrivateTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.PrivateTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"askomspzoo1725359918536\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/askomspzoo1725359918536\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"novisystemsinc1664197608642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/novisystemsinc1664197608642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tcginformatikag1604414835514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tcginformatikag1604414835514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications_ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications_ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"utimacoisgmbh1676995905654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/utimacoisgmbh1676995905654\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"k-businesscomag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/k-businesscomag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yendigital\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yendigital\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ortus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ortus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cotechnoe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cotechnoe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions.Internal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"runailabsltd1647779544073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/runailabsltd1647779544073\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hexaware-technologies-1485696\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hexaware-technologies-1485696\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kasmtechnologiesllc1747773134895\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kasmtechnologiesllc1747773134895\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bjs-devops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bjs-devops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"technidoosolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/technidoosolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.HardwareHealthService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.HardwareHealthService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commscopeinc1692367319930\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commscopeinc1692367319930\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netskopebwan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netskopebwan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pctestcpppub8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pctestcpppub8\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.HybridContainerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.HybridContainerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"linkshadowlimited1688362969670\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/linkshadowlimited1688362969670\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jet-tech-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jet-tech-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwaretailor1609753491333\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwaretailor1609753491333\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kenmeitechnologies1707926434780\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kenmeitechnologies1707926434780\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wassa1725441148252\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wassa1725441148252\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_commercial_marketplace_services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_commercial_marketplace_services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SCOMMI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SCOMMI\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdalsecurity-4649307\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdalsecurity-4649307\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globaldataanalyticsptyltdtatapeark1636285238780\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globaldataanalyticsptyltdtatapeark1636285238780\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybermaxxllc1721061627123\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybermaxxllc1721061627123\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSExtTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIRCore.CAPSExtTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe.serviceguard.ha.dr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe.serviceguard.ha.dr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crowdboticscorporation1682618353390\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crowdboticscorporation1682618353390\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enghouseinteractiveab1591177812575\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enghouseinteractiveab1591177812575\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcheckltd1695809167331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcheckltd1695809167331\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Elastic.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Elastic.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mango_solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mango_solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itac1728588411219\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itac1728588411219\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SCIM.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SCIM.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ebatinca1717965618562\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ebatinca1717965618562\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphiantinc1622651764677\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphiantinc1622651764677\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ultoriaedesenvolvimentodesoftwareltda1662599967069\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ultoriaedesenvolvimentodesoftwareltda1662599967069\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swxtchiollc1614108926893\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swxtchiollc1614108926893\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"presightaiholdingplc1721897478652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/presightaiholdingplc1721897478652\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"phonexiasro1585942477821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/phonexiasro1585942477821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elimnet1678245663131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elimnet1678245663131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kongsbergdigitalas1656311721334\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kongsbergdigitalas1656311721334\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecosmob-tech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecosmob-tech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmconsulting1691681668032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmconsulting1691681668032\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry1736978014039\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry1736978014039\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rockwellautomationinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rockwellautomationinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azosistechnologiesprivatelimited1678602118439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azosistechnologiesprivatelimited1678602118439\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikandevelopmentnv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikandevelopmentnv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"erockyenterprisesoftwarefoundationinc1653071250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/erockyenterprisesoftwarefoundationinc1653071250513\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CortexAG\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CortexAG\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rinnelabs1694698542130\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rinnelabs1694698542130\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicroinc1646754541828\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicroinc1646754541828\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zultysinc1596831546163\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tosiboxoy1646313791207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tosiboxoy1646313791207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"publicworksauthority-ashghal-1726120801616\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/publicworksauthority-ashghal-1726120801616\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bui\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bui\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"callabacloud1655146409258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/callabacloud1655146409258\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"it-conductorinc1709070852352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/it-conductorinc1709070852352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"madarsonitllc1614702968211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/madarsonitllc1614702968211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"claroty1709722359369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/claroty1709722359369\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mphasis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mphasis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nlmaticscorp1686371242615\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nlmaticscorp1686371242615\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextfoam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextfoam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"amestofortytwoas1653635920536\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/amestofortytwoas1653635920536\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filingcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filingcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"backupassure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/backupassure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altratechnologiesptyltd1719876965699\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altratechnologiesptyltd1719876965699\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aqtraplatformllc1657880532038\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aqtraplatformllc1657880532038\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"threatmodelersoftwareinc1678908538740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/threatmodelersoftwareinc1678908538740\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modulosag1662472793092\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modulosag1662472793092\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ssctechnologiesinc1627569348038\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ssctechnologiesinc1627569348038\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testtestindustryexperiencestest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testtestindustryexperiencestest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-canada-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-canada-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quibiqgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quibiqgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasquaredusainc1681613080256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasquaredusainc1681613080256\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cpacketnetworks1719269615814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cpacketnetworks1719269615814\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gyoutsourcingparalatamsociedadanonima1693102395423\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gyoutsourcingparalatamsociedadanonima1693102395423\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentextglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentextglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"contosomarketplacetestoffers1689257433139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/contosomarketplacetestoffers1689257433139\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"calnexsolutionsplc1646835041441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/calnexsolutionsplc1646835041441\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ateme1601986935870\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ateme1601986935870\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eisoftwaretechnologyhongkongcolimited1722223098317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eisoftwaretechnologyhongkongcolimited1722223098317\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aurachainag1694682885402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aurachainag1694682885402\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguaziosystemsinc1642090150854\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguaziosystemsinc1642090150854\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"admindroidsoftwares\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/admindroidsoftwares\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightbitslabsinc1670948060485\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightbitslabsinc1670948060485\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1655452468737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1655452468737\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"musarubrausllc1671236565460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/musarubrausllc1671236565460\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"declarationsoftware1674733568950\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/declarationsoftware1674733568950\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ServicesHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ServicesHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto-si1654889826459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto-si1654889826459\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-visionioinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-visionioinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xpdeep1718714414789\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xpdeep1718714414789\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comtelspa1649256695779\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comtelspa1649256695779\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dablabsinc1654806039152\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dablabsinc1654806039152\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enteruptors10232023052922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enteruptors10232023052922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cad4devopsinc1662079207461\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cad4devopsinc1662079207461\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AksArcForLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AksArcForLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardidymanager\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardidymanager\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eliamarzia1667381463185\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eliamarzia1667381463185\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tosibox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tosibox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spglobalmarketintelligence1596223440363\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spglobalmarketintelligence1596223440363\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thepartnermasters1673401089019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thepartnermasters1673401089019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.PingMesh.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.PingMesh.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"homeofficeimprovementsltd1629905933258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/homeofficeimprovementsltd1629905933258\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elmcomputing1669646908295\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elmcomputing1669646908295\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OSTelemetry.Cirrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OSTelemetry.Cirrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"articentgroupllc1635512619530\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/articentgroupllc1635512619530\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybercxptyltd1590132359004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybercxptyltd1590132359004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcticwolfnetworks1680048607525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcticwolfnetworks1680048607525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2812187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/2812187\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"violetrobotlimited1679388052172\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/violetrobotlimited1679388052172\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"analytiumltd1582389146376\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/analytiumltd1582389146376\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gajshieldinfotechindiapvtltd1693211201273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gajshieldinfotechindiapvtltd1693211201273\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dcassociatesgroupinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dcassociatesgroupinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inventeccorp1645697962291\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inventeccorp1645697962291\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netskope\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netskope\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eigenlimited1610374015589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eigenlimited1610374015589\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crestdatasystemsprivatelimited1700646988325\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crestdatasystemsprivatelimited1700646988325\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"routineai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/routineai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacticsltd1591001866957\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacticsltd1591001866957\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dbsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dbsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquilaltd1636632578012\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquilaltd1636632578012\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Spektra.Cloudlabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Spektra.Cloudlabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.MeshVPN.Internal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.MeshVPN.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caeves0001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/caeves0001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudmaker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudmaker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasmartaiprivatelimited1682323573958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasmartaiprivatelimited1682323573958\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ixptyltd1586433755284\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ixptyltd1586433755284\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ekinopsfrance1583498025383\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ekinopsfrance1583498025383\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iqsuite-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iqsuite-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cendio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cendio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalateams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalateams\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boxarr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boxarr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redhat-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redhat-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adminwaresoftwareprivatelimited1613149497364\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adminwaresoftwareprivatelimited1613149497364\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bunkerity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bunkerity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynamicweb-solutions-asia-4636753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynamicweb-solutions-asia-4636753\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ckchainparaamricalatinayelcaribel-net1664396707594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ckchainparaamricalatinayelcaribel-net1664396707594\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallaroolabs1649097394131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallaroolabs1649097394131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1614663853766\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1614663853766\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Watson\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Watson\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seatablegmbh1672668832676\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seatablegmbh1672668832676\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtbusinessvalidation1685730553911\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtbusinessvalidation1685730553911\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"anarion-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/anarion-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stardogunioninc1706307162993\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stardogunioninc1706307162993\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbluellc1705690815510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbluellc1705690815510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"myhsm1591964058742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/myhsm1591964058742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciena1654095655352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciena1654095655352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adiom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adiom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enclaivegmbh1643578052639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enclaivegmbh1643578052639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kamiwaza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kamiwaza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opticcaconsultinginc1604521372438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opticcaconsultinginc1604521372438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"whizhacktechnologiespltd1665139209828\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/whizhacktechnologiespltd1665139209828\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nmcloudsolutionsllc1645603292959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nmcloudsolutionsllc1645603292959\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"grist\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/grist\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inductiveautomationllc1675268212292\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inductiveautomationllc1675268212292\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comforteag1690799379662\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comforteag1690799379662\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ennetixinc1663880176969\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ennetixinc1663880176969\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techilatechnologiesltd1666269025720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techilatechnologiesltd1666269025720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratuson\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratuson\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"x-margininc1678098868153\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/x-margininc1678098868153\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntegralinc1579229654467\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntegralinc1579229654467\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ir\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ir\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zainabmarket\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zainabmarket\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"upstage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/upstage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ligadatainformationtechnologycollc1692093528909\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ligadatainformationtechnologycollc1692093528909\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airspannetworks1685633374715\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/airspannetworks1685633374715\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureVirtualDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureVirtualDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"info-inlet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/info-inlet-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyphercorinc1687437871535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyphercorinc1687437871535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bansirllc1619470302579\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bansirllc1619470302579\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1685409837420\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1685409837420\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"turtletraction.oss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/turtletraction.oss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lcmcon1687976613543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lcmcon1687976613543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1704334229030\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1704334229030\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yeastar1695699937035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yeastar1695699937035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abcostingprodutoseserviosltda1657246951521\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abcostingprodutoseserviosltda1657246951521\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"texcio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/texcio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudimg1647283583153\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudimg1647283583153\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftazenpcps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftazenpcps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dftworksllc1665199028638\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dftworksllc1665199028638\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sigaotsolutionsinc1703353271830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sigaotsolutionsinc1703353271830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"technomanagement1663490401500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/technomanagement1663490401500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uptycs-cnapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uptycs-cnapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacificdataintegrators1738256099128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacificdataintegrators1738256099128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextarp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Reliability.Watson\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Reliability.Watson\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metric-insights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/metric-insights\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SCOMMIServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SCOMMIServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bcloudllc1671615348068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bcloudllc1671615348068\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midrangecloudsolutionsllc1683714453763\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midrangecloudsolutionsllc1683714453763\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-gaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arqitlimited1676992699665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arqitlimited1676992699665\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saharacombinedforgeneraltrading1592917520835\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saharacombinedforgeneraltrading1592917520835\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"excelenteinc1620934446334\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/excelenteinc1620934446334\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diveplanecorporation1712251239175\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diveplanecorporation1712251239175\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1730358365770\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1730358365770\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStackHCI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStackHCI\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"well-linktechpteltd1720676101290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/well-linktechpteltd1720676101290\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"c3iotinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/c3iotinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"persz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/persz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"interoperabilitybidcoincdbalyniate1685407264923\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/interoperabilitybidcoincdbalyniate1685407264923\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse1721900171446\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse1721900171446\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1597404694066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1597404694066\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arctera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arctera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"curvc1664848996592\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/curvc1664848996592\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1731658013774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1731658013774\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"grainite1677100649276\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/grainite1677100649276\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dedalusspa1661878333696\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dedalusspa1661878333696\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"printplus_ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/printplus_ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bedatadrivenbv1612942138209\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bedatadrivenbv1612942138209\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphinxindusanalyticsopcprivatelimited1702362435306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphinxindusanalyticsopcprivatelimited1702362435306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unstructured1691024866136\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unstructured1691024866136\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"entelectsolutionsptyltd1584988532030\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/entelectsolutionsptyltd1584988532030\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextcloudgmbh1597841818906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextcloudgmbh1597841818906\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blpindustryaiprivatelimited1694516670498\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blpindustryaiprivatelimited1694516670498\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automaicorporation1684540889707\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automaicorporation1684540889707\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clearvisibility1695136446164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clearvisibility1695136446164\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bitcorpsrl1640768933322\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bitcorpsrl1640768933322\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cosmian1582023228706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cosmian1582023228706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlabinc1659373855767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlabinc1659373855767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vailley-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vailley-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cirruslinksolutions1598993297919\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cirruslinksolutions1598993297919\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"envision_blockchain-5199407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/envision_blockchain-5199407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"giggso1725717492811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/giggso1725717492811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"musarubrausllc1643827029255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/musarubrausllc1643827029255\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unify-cloud-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unify-cloud-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softserveinc1605804530752\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softserveinc1605804530752\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emqtechnologiesincorporated1678779968155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/emqtechnologiesincorporated1678779968155\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwarealliancelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwarealliancelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pandorafms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pandorafms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsimages\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsimages\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivtree1620220752792\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivtree1620220752792\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dockerinc1694120899427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dockerinc1694120899427\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"holmsecurityswedenab1639511288603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/holmsecurityswedenab1639511288603\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spinsystemsinc1690229879053\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spinsystemsinc1690229879053\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"anapaya\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/anapaya\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"m-starsimulationsllc1683142212605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/m-starsimulationsllc1683142212605\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidterrallc1675287658838\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidterrallc1675287658838\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"c1sttechnologiesllc1689876688401\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/c1sttechnologiesllc1689876688401\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Edge.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Edge.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itdevtechllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itdevtechllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"slotix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/slotix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsCodeIntegrity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WindowsCodeIntegrity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voyageaiinnovationsinc1718340344903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voyageaiinnovationsinc1718340344903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"keysight-technologies-ixvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/keysight-technologies-ixvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firsteigen1646266544784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firsteigen1646266544784\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1667570284386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1667570284386\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecogeneticllc1676924558438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecogeneticllc1676924558438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krontech1689879437079\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/krontech1689879437079\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wsusainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wsusainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonksuruinc1697403499772\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonksuruinc1697403499772\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decyphertek\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/decyphertek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hoonartekwurksprivatelimited1627292867821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hoonartekwurksprivatelimited1627292867821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcvideo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcvideo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reliancyllc1588113249666\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reliancyllc1588113249666\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.ArcVirtualization\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.ArcVirtualization\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qarbine1618349238434\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qarbine1618349238434\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xplgltd1653211163102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xplgltd1653211163102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tilleredlimited1655688918280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tilleredlimited1655688918280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vasion1701746527592\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vasion1701746527592\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"indiecrew-studio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/indiecrew-studio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neccorporationofamerica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neccorporationofamerica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neonforge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neonforge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infinitumsa1629294824649\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infinitumsa1629294824649\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ai-opsllc1593527598862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ai-opsllc1593527598862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"54cuatro1595867609214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/54cuatro1595867609214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drzcorporation1687530635641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drzcorporation1687530635641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Sentinel.SapAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Sentinel.SapAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"active-integration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/active-integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elisity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elisity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"purplecubeinc1680669832842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/purplecubeinc1680669832842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.HybridFabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.HybridFabric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-australia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-australia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globant\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwareagusainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwareagusainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1720148908856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1720148908856\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataedo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataedo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudforttechnology1676310975446\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudforttechnology1676310975446\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"insightsoftwarecomlimited1584800919871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/insightsoftwarecomlimited1584800919871\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1689761683063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1689761683063\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bevywisenetworksllp1677848977927\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bevywisenetworksllp1677848977927\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-asperia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-asperia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"civicanorthamerica1706115853175\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/civicanorthamerica1706115853175\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mirantis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mirantis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s-ins-microsoftpartner-usa-ny-armonk-1627616993058\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s-ins-microsoftpartner-usa-ny-armonk-1627616993058\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omnissallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/omnissallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aibusinessschoolag1712156537216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aibusinessschoolag1712156537216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_gps_americas_code-with1694019817347\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_gps_americas_code-with1694019817347\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontotextad1692361256062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontotextad1692361256062\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shanghaiweilitechnologycoltd1645150733082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shanghaiweilitechnologycoltd1645150733082\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realloadptyltd1725868033842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/realloadptyltd1725868033842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cgg1698165761764\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cgg1698165761764\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cubebackupinc1662619479161\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cubebackupinc1662619479161\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collibrainctin80-09241681732799250972\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collibrainctin80-09241681732799250972\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loamics-fr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/loamics-fr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"medcurioinc1655396355237\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/medcurioinc1655396355237\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veraxai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veraxai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Security.CRED.Defender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Security.CRED.Defender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synergisttechnologyllc1718233086249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synergisttechnologyllc1718233086249\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itecosystemssolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itecosystemssolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"einmind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/einmind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stelodata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stelodata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-llc-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-llc-adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"supportedimagesllc1615494954880\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/supportedimagesllc1615494954880\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcinformatique1681216831560\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcinformatique1681216831560\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasarai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasarai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"keysighttechnologies_cyperf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/keysighttechnologies_cyperf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSStgBvt20\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIRCore.CAPSStgBvt20\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akinsit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akinsit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciphertechsinc1676666082978\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciphertechsinc1676666082978\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"suseirelandltd1692213356027\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/suseirelandltd1692213356027\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9000\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/9000\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlettpackardenterprise1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlettpackardenterprise1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dualitytechnologiesinc1673786653838\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dualitytechnologiesinc1673786653838\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"belindacz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/belindacz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohirriminc1663792273127\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohirriminc1663792273127\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestackinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestackinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyolosecurityltd1726775987480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyolosecurityltd1726775987480\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evorine1660210935094\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evorine1660210935094\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neverfailcontinuouscontrolsinc1600463582767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neverfailcontinuouscontrolsinc1600463582767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docshifter1673950324990\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/docshifter1673950324990\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datprof\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datprof\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevancelabinc1697784679917\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevancelabinc1697784679917\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HSE.Infra.Internal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HSE.Infra.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yaseensmarketltd03032025023044\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yaseensmarketltd03032025023044\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infotectsecuritypteltd1584534959776\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infotectsecuritypteltd1584534959776\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litecho1652270712947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litecho1652270712947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"criblinc1673975616879\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/criblinc1673975616879\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"supernainc1642621287664\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/supernainc1642621287664\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"acplsystemspvtltd1734432892724\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/acplsystemspvtltd1734432892724\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"siemensplmsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/siemensplmsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1685614597565\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1685614597565\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"terminusdb1606769310168\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/terminusdb1606769310168\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"keysight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/keysight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redhat1627408356675\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redhat1627408356675\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocksavagetechnologyinc1713893864282\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocksavagetechnologyinc1713893864282\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"africamediaconsortiumllc1670411800267\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/africamediaconsortiumllc1670411800267\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudriches\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudriches\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SiteRecovery.Dra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SiteRecovery.Dra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Tanium.Client\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Tanium.Client\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.RecoveryServices.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.RecoveryServices.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rightdatainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rightdatainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visokiouklimited1661943152060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visokiouklimited1661943152060\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azure-hpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azure-hpc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datamasquelimited1651546259207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datamasquelimited1651546259207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"phitr-ai-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/phitr-ai-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kCloudHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kCloudHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jinaai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jinaai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1695609141511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1695609141511\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swirlcorporation1684335149355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swirlcorporation1684335149355\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paratools-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paratools-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fosterfindlayassociateslimited1724322170979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fosterfindlayassociateslimited1724322170979\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waterflowtechnologypvtltd1729501777501\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/waterflowtechnologypvtltd1729501777501\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profeciait1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profeciait1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1650441978315\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1650441978315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numenta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numenta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codeingenierainformticasl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codeingenierainformticasl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"levelblue\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/levelblue\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shapelets1647335373345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shapelets1647335373345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"assureddataprotectioninc1667911107164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/assureddataprotectioninc1667911107164\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSExtBvt.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIRCore.CAPSExtBvt.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3mdincdbadenaliadvancedintegration1720428393061\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/3mdincdbadenaliadvancedintegration1720428393061\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinkuplabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinkuplabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidefoundation1692080730903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidefoundation1692080730903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataphion1595790857048\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataphion1595790857048\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"salient\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/salient\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphi-consulting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphi-consulting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zaintechsolutionsfz-llc1692862657242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zaintechsolutionsfz-llc1692862657242\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365Security.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365Security.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"andampgmbh1675347912177\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/andampgmbh1675347912177\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.Orchestration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.Orchestration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hexaeightopcprivatelimited1653195738074\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hexaeightopcprivatelimited1653195738074\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataevolvesolutionsopcprivatelimited1673336394359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataevolvesolutionsopcprivatelimited1673336394359\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"on2it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/on2it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vfunctiontechnologiesltd1665073911806\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vfunctiontechnologiesltd1665073911806\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"callwaretechnologiesinc1657114750733\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/callwaretechnologiesinc1657114750733\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"frizb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/frizb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vianai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vianai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cacheguardtechnologieslimited1681804059471\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cacheguardtechnologieslimited1681804059471\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"piqwanasac1670892237457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/piqwanasac1670892237457\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemceisi123456\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemceisi123456\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoviewsystemsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoviewsystemsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corememlimited1599075556346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corememlimited1599075556346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mongodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mongodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crayon-group-as-1129016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crayon-group-as-1129016\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pcloudhosting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pcloudhosting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Cirrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FleetDiagnostics.Cirrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corememlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corememlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365AzsecpackAutoconfig.CentralNamespaceConfigure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365AzsecpackAutoconfig.CentralNamespaceConfigure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moxainc1660788982930\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moxainc1660788982930\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"in4it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/in4it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"philterdllc1687189098111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/philterdllc1687189098111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginuity-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginuity-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"experollc1644352127859\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/experollc1644352127859\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"epicyclelimited1653984451703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/epicyclelimited1653984451703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"optimitiveslu1618318884537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/optimitiveslu1618318884537\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivanti-vadc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivanti-vadc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kpmglowergulflimited1744019197011\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kpmglowergulflimited1744019197011\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubilityai1599391188425\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubilityai1599391188425\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIR.RC.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIR.RC.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veripark_solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veripark_solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TeamViewer.AzureVMExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TeamViewer.AzureVMExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonatypeinc1724257499617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonatypeinc1724257499617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shardsecureinc1594847380725\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shardsecureinc1594847380725\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinetfederal1695393143380\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinetfederal1695393143380\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"komprise_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/komprise_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"praelexis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/praelexis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catswords\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catswords\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zetarisptyltd1653890360235\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zetarisptyltd1653890360235\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hostingcontrollerinc1656315491972\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hostingcontrollerinc1656315491972\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fano_labs_limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fano_labs_limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"capaxdiscovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/capaxdiscovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataeazesystemspvtltd1720620091242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataeazesystemspvtltd1720620091242\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alaiso\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alaiso\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swiftroofestimatingservicesltd1695806680945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swiftroofestimatingservicesltd1695806680945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"weidmllerinterfacegmbhcokg1593785027047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/weidmllerinterfacegmbhcokg1593785027047\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pingcapusinc1721021923990\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pingcapusinc1721021923990\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pkisolutionsllc1679597045863\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pkisolutionsllc1679597045863\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuvemnestllc1695391252715\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuvemnestllc1695391252715\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"amperecomputingllc1649288430919\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/amperecomputingllc1649288430919\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dispersiveholdingsinc1653422231259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dispersiveholdingsinc1653422231259\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neonforgellc1660679895021\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neonforgellc1660679895021\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"latentaiinc1680819096432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/latentaiinc1680819096432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies1699381160543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies1699381160543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"askforcloudllc1651766049149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/askforcloudllc1651766049149\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelprojects1681819643206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelprojects1681819643206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exadelinc1675271740487\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exadelinc1675271740487\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HSE.Infra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HSE.Infra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcorporation1687208452115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcorporation1687208452115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudframeinc1615321281795\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudframeinc1615321281795\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"impactbusinessinformationsolutions1729610964134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/impactbusinessinformationsolutions1729610964134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maya_data_ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maya_data_ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgeaiinc1716488540630\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgeaiinc1716488540630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cacheguardtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cacheguardtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orienlabsllc1678315026142\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orienlabsllc1678315026142\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"legacyboxltd1599224386505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/legacyboxltd1599224386505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentraltd1702900353613\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentraltd1702900353613\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vocallsincsro1689854055826\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vocallsincsro1689854055826\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"polverio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/polverio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureVirtualDesktop-CICD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureVirtualDesktop-CICD\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globallinkingsolutionsinc1673581558566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globallinkingsolutionsinc1673581558566\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplifier\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplifier\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"agrozgroupsdnbhd1700628095587\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/agrozgroupsdnbhd1700628095587\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunrisesoftwaregmbh1600691313341\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunrisesoftwaregmbh1600691313341\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aldercapitalllc1682703876147\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aldercapitalllc1682703876147\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathildetechnologyhongkonglimited1669113447021\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathildetechnologyhongkonglimited1669113447021\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"entrenamientoinformticoavanzadosadecv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/entrenamientoinformticoavanzadosadecv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synologyinc1715323237857\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synologyinc1715323237857\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kockpitanalyticspvtltd1645177427945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kockpitanalyticspvtltd1645177427945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appsentinelsprivatelimited1682860922767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appsentinelsprivatelimited1682860922767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dcdobrasil1651841970501\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dcdobrasil1651841970501\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OSTelemetry.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OSTelemetry.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elegantcodesolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elegantcodesolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ilinksystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ilinksystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gottaphish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gottaphish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sedetos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sedetos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cdatajapan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cdatajapan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nirvaha1688048738599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nirvaha1688048738599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubisense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"finticsas1604875530254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/finticsas1604875530254\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sorba-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sorba-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seesharpsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seesharpsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conclavecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/conclavecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nexusfrontiertechlimited1660561594678\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nexusfrontiertechlimited1660561594678\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"presciencedecisionsolutionspvtltd1717148574997\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/presciencedecisionsolutionspvtltd1717148574997\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsasecurity1687281258544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsasecurity1687281258544\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"510713407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/510713407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"developmenthub2024\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/developmenthub2024\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"motifworks-azure-apps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/motifworks-azure-apps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swisssecurityhubag1684863672907\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swisssecurityhubag1684863672907\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Tenable.NessusAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Tenable.NessusAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.Observability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.Observability\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rackspace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rackspace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"optimatechlimited1688074981368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/optimatechlimited1688074981368\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maaztechnologies1728726102718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maaztechnologies1728726102718\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.PrivateTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC.PrivateTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"n2wsoftwareinc1657117813969\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/n2wsoftwareinc1657117813969\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"risecorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/risecorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"myriadtechnologiesptyltd-2094736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/myriadtechnologiesptyltd-2094736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds1685464784065\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds1685464784065\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindbreezegmbh1657087507223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindbreezegmbh1657087507223\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sahasholdingpvtltd2024\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sahasholdingpvtltd2024\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sixninesit1663769336580\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sixninesit1663769336580\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.MeshVPN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.MeshVPN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zamanconsultancylimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zamanconsultancylimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visionaize\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visionaize\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nets1664415757656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nets1664415757656\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OSTelemetry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OSTelemetry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graxinc1618409175503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graxinc1618409175503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ghes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ghes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comaticag1663321091033\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comaticag1663321091033\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buildpiper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/buildpiper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netprotrinity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netprotrinity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"braincube\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/braincube\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"compsolglobalinc1634128357503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/compsolglobalinc1634128357503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caloudicorporation1685526807944\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/caloudicorporation1685526807944\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cogstacklimited1697736441051\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cogstacklimited1697736441051\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcircleinc1727251401364\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcircleinc1727251401364\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalynxptyltd1629960622072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalynxptyltd1629960622072\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"precisoftlimitada1689031175058\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/precisoftlimitada1689031175058\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pcigeomaticsenterprisesinc1619717739720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pcigeomaticsenterprisesinc1619717739720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Xitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Xitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reductsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reductsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automonxltd1601306138716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automonxltd1601306138716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1touchio1627313187723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1touchio1627313187723\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tooljetsolutioninc1679496832216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tooljetsolutioninc1679496832216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sigsenztechnologiespvtltd1646072485417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sigsenztechnologiespvtltd1646072485417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maryamsmarket\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maryamsmarket\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genzeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genzeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"distylai1705447332869\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/distylai1705447332869\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sprinxsystemsas1582034211947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sprinxsystemsas1582034211947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Chaos.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Chaos.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reductstorellc1689939980623\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reductstorellc1689939980623\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"superhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/superhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thenielsencompany1584587184924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thenielsencompany1584587184924\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hexagonmanufacturingintelligence1586372099540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hexagonmanufacturingintelligence1586372099540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaleaiinc1703010376105\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaleaiinc1703010376105\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"walacorcorporation1689871416413\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/walacorcorporation1689871416413\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"in-biotprivatelimited1592297269046\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/in-biotprivatelimited1592297269046\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.ProxyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.ProxyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1672212957491\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1672212957491\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peplinkpepwavelimited1664796707280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/peplinkpepwavelimited1664796707280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tribe29gmbh1665582614827\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tribe29gmbh1665582614827\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"surepassidcorp1620848967359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/surepassidcorp1620848967359\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"businessimagingsystemsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/businessimagingsystemsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdomesolutionsprivatelimited1708671149622\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdomesolutionsprivatelimited1708671149622\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacbytelimited1655770796006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacbytelimited1655770796006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ansit-comgmbh1688555996538\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ansit-comgmbh1688555996538\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"c-phrasetechnologiesswedenab1674654373407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/c-phrasetechnologiesswedenab1674654373407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"100101010000\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/100101010000\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1654668554142\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1654668554142\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semanticai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semanticai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"coalescesolutionsllc1649284093713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/coalescesolutionsllc1649284093713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brainwaredwc-llc1669095990764\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brainwaredwc-llc1669095990764\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-isv-eng\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-isv-eng\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bynetdatacommunicationsltd1658928488221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bynetdatacommunicationsltd1658928488221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cteranetworksltd1651947437632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cteranetworksltd1651947437632\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerotrustedaillc1672945594749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerotrustedaillc1672945594749\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consoleworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/consoleworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"google-cloud-alloydb-omni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/google-cloud-alloydb-omni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperionsystemsengineeringltd1692960786190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperionsystemsengineeringltd1692960786190\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubika\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubika\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netticacorporation1696242544587\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netticacorporation1696242544587\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.HCI.Alerts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.HCI.Alerts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitedsecurityprovidersag1683803318933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitedsecurityprovidersag1683803318933\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"answerrocket1683647523767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/answerrocket1683647523767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"schmitzrzconsultgmbh1654870156925\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/schmitzrzconsultgmbh1654870156925\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft.o3fnet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft.o3fnet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "dd0d5345-c783-4954-92e7-170d87d27a58" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike-database\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike-database\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alces-flight-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alces-flight-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appspace\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appspace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aptean-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aptean-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aqua-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aqua-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlassian\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlassian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brainshare-it\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/brainshare-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cbreplicator\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cbreplicator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhub-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhub-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudify\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudify\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cortex-ag\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cortex-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crate-io\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/crate-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastbanctech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastbanctech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ekran-system-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ekran-system-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elementrem\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elementrem\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genesys-source\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/genesys-source\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gordic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gordic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"humanlogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/humanlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mactores_inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mactores_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maketv\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/maketv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsec-zrt\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsec-zrt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.DscPolicy2.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.DscPolicy2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftoxa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftoxa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msrazuresapservices\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/msrazuresapservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsil\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsil\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nubeva-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nubeva-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opsview-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opsview-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scsk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scsk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shieldx-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/shieldx-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sidm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sidm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplygon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplygon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusiondashboard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusiondashboard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tokyosystemhouse\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tokyosystemhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velostrata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velostrata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velostrata-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velostrata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vintegris\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vintegris\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waves\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/waves\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workspot\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/workspot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "151660" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -231,65 +249,73 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f9cefe57-6d7d-423a-bcb5-35422fef9c50_131747220908267077" + "f9cefe57-6d7d-423a-bcb5-35422fef9c50_133922693564388247" ], "x-ms-request-id": [ - "baa6926f-732a-42f3-818a-a216a0e9a4cf" + "7ba5df5c-facc-475a-ac1e-08793c2d5f09" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2dfda178-9987-4868-93b6-95f950e3bd99" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14512" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "09f2f044-f6a2-4bdd-ae17-76171fe742a6" + "c44bc1b1-58b0-4888-9068-2e566cd0e6d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012734Z:09f2f044-f6a2-4bdd-ae17-76171fe742a6" + "EASTUS:20250602T215409Z:c44bc1b1-58b0-4888-9068-2e566cd0e6d5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2E6BD57A8D4141039D850D8AB280CB23 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:54:09Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:34 GMT" + "Mon, 02 Jun 2025 21:54:08 GMT" + ], + "Content-Length": [ + "530726" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365Security.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365Security.Kevlar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1653036178719\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1653036178719\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evsbroadcastequipment1693315403643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evsbroadcastequipment1693315403643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abinitiosoftwarellc1677006784871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abinitiosoftwarellc1677006784871\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"faddomltd1673360856547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/faddomltd1673360856547\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adeoimagingo1682623715346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adeoimagingo1682623715346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celebaltechnologiesprivatelimited1667842096083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/celebaltechnologiesprivatelimited1667842096083\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zeetim1660843138752\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zeetim1660843138752\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elaniaresources1648486385938\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elaniaresources1648486385938\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tolgee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tolgee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ridgesecuritytechnologyinc1670890478389\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ridgesecuritytechnologyinc1670890478389\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudgtiou1724737530190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudgtiou1724737530190\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.PrivateTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.PrivateTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"askomspzoo1725359918536\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/askomspzoo1725359918536\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"novisystemsinc1664197608642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/novisystemsinc1664197608642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tcginformatikag1604414835514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tcginformatikag1604414835514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications_ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications_ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"utimacoisgmbh1676995905654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/utimacoisgmbh1676995905654\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"k-businesscomag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/k-businesscomag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yendigital\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yendigital\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ortus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ortus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cotechnoe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cotechnoe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions.Internal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"runailabsltd1647779544073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/runailabsltd1647779544073\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hexaware-technologies-1485696\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hexaware-technologies-1485696\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kasmtechnologiesllc1747773134895\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kasmtechnologiesllc1747773134895\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bjs-devops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bjs-devops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"technidoosolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/technidoosolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.HardwareHealthService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.HardwareHealthService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commscopeinc1692367319930\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commscopeinc1692367319930\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netskopebwan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netskopebwan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pctestcpppub8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pctestcpppub8\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.HybridContainerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.HybridContainerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"linkshadowlimited1688362969670\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/linkshadowlimited1688362969670\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jet-tech-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jet-tech-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwaretailor1609753491333\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwaretailor1609753491333\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kenmeitechnologies1707926434780\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kenmeitechnologies1707926434780\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wassa1725441148252\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wassa1725441148252\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_commercial_marketplace_services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_commercial_marketplace_services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SCOMMI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SCOMMI\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdalsecurity-4649307\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdalsecurity-4649307\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globaldataanalyticsptyltdtatapeark1636285238780\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globaldataanalyticsptyltdtatapeark1636285238780\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybermaxxllc1721061627123\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybermaxxllc1721061627123\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSExtTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIRCore.CAPSExtTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe.serviceguard.ha.dr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe.serviceguard.ha.dr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crowdboticscorporation1682618353390\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crowdboticscorporation1682618353390\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enghouseinteractiveab1591177812575\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enghouseinteractiveab1591177812575\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcheckltd1695809167331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcheckltd1695809167331\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Elastic.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Elastic.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mango_solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mango_solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itac1728588411219\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itac1728588411219\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SCIM.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SCIM.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ebatinca1717965618562\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ebatinca1717965618562\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphiantinc1622651764677\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphiantinc1622651764677\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ultoriaedesenvolvimentodesoftwareltda1662599967069\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ultoriaedesenvolvimentodesoftwareltda1662599967069\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swxtchiollc1614108926893\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swxtchiollc1614108926893\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"presightaiholdingplc1721897478652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/presightaiholdingplc1721897478652\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"phonexiasro1585942477821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/phonexiasro1585942477821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elimnet1678245663131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elimnet1678245663131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kongsbergdigitalas1656311721334\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kongsbergdigitalas1656311721334\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecosmob-tech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecosmob-tech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmconsulting1691681668032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmconsulting1691681668032\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry1736978014039\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry1736978014039\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rockwellautomationinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rockwellautomationinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azosistechnologiesprivatelimited1678602118439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azosistechnologiesprivatelimited1678602118439\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikandevelopmentnv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikandevelopmentnv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"erockyenterprisesoftwarefoundationinc1653071250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/erockyenterprisesoftwarefoundationinc1653071250513\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CortexAG\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CortexAG\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rinnelabs1694698542130\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rinnelabs1694698542130\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicroinc1646754541828\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicroinc1646754541828\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zultysinc1596831546163\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tosiboxoy1646313791207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tosiboxoy1646313791207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"publicworksauthority-ashghal-1726120801616\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/publicworksauthority-ashghal-1726120801616\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bui\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bui\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"callabacloud1655146409258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/callabacloud1655146409258\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"it-conductorinc1709070852352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/it-conductorinc1709070852352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"madarsonitllc1614702968211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/madarsonitllc1614702968211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"claroty1709722359369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/claroty1709722359369\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mphasis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mphasis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nlmaticscorp1686371242615\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nlmaticscorp1686371242615\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextfoam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextfoam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"amestofortytwoas1653635920536\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/amestofortytwoas1653635920536\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filingcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filingcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"backupassure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/backupassure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altratechnologiesptyltd1719876965699\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altratechnologiesptyltd1719876965699\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aqtraplatformllc1657880532038\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aqtraplatformllc1657880532038\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"threatmodelersoftwareinc1678908538740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/threatmodelersoftwareinc1678908538740\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modulosag1662472793092\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modulosag1662472793092\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ssctechnologiesinc1627569348038\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ssctechnologiesinc1627569348038\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testtestindustryexperiencestest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testtestindustryexperiencestest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-canada-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-canada-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quibiqgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quibiqgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasquaredusainc1681613080256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasquaredusainc1681613080256\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cpacketnetworks1719269615814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cpacketnetworks1719269615814\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gyoutsourcingparalatamsociedadanonima1693102395423\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gyoutsourcingparalatamsociedadanonima1693102395423\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentextglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentextglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"contosomarketplacetestoffers1689257433139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/contosomarketplacetestoffers1689257433139\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"calnexsolutionsplc1646835041441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/calnexsolutionsplc1646835041441\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ateme1601986935870\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ateme1601986935870\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eisoftwaretechnologyhongkongcolimited1722223098317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eisoftwaretechnologyhongkongcolimited1722223098317\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aurachainag1694682885402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aurachainag1694682885402\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguaziosystemsinc1642090150854\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguaziosystemsinc1642090150854\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"admindroidsoftwares\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/admindroidsoftwares\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightbitslabsinc1670948060485\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightbitslabsinc1670948060485\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1655452468737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1655452468737\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"musarubrausllc1671236565460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/musarubrausllc1671236565460\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"declarationsoftware1674733568950\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/declarationsoftware1674733568950\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ServicesHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ServicesHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto-si1654889826459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto-si1654889826459\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-visionioinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-visionioinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xpdeep1718714414789\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xpdeep1718714414789\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comtelspa1649256695779\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comtelspa1649256695779\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dablabsinc1654806039152\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dablabsinc1654806039152\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enteruptors10232023052922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enteruptors10232023052922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cad4devopsinc1662079207461\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cad4devopsinc1662079207461\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AksArcForLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AksArcForLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardidymanager\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardidymanager\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eliamarzia1667381463185\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eliamarzia1667381463185\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tosibox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tosibox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spglobalmarketintelligence1596223440363\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spglobalmarketintelligence1596223440363\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thepartnermasters1673401089019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thepartnermasters1673401089019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.PingMesh.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.PingMesh.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"homeofficeimprovementsltd1629905933258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/homeofficeimprovementsltd1629905933258\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elmcomputing1669646908295\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elmcomputing1669646908295\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OSTelemetry.Cirrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OSTelemetry.Cirrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"articentgroupllc1635512619530\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/articentgroupllc1635512619530\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybercxptyltd1590132359004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybercxptyltd1590132359004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcticwolfnetworks1680048607525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcticwolfnetworks1680048607525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2812187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/2812187\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"violetrobotlimited1679388052172\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/violetrobotlimited1679388052172\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"analytiumltd1582389146376\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/analytiumltd1582389146376\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gajshieldinfotechindiapvtltd1693211201273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gajshieldinfotechindiapvtltd1693211201273\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dcassociatesgroupinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dcassociatesgroupinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inventeccorp1645697962291\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inventeccorp1645697962291\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netskope\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netskope\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eigenlimited1610374015589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eigenlimited1610374015589\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crestdatasystemsprivatelimited1700646988325\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crestdatasystemsprivatelimited1700646988325\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"routineai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/routineai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacticsltd1591001866957\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacticsltd1591001866957\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dbsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dbsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquilaltd1636632578012\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquilaltd1636632578012\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Spektra.Cloudlabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Spektra.Cloudlabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.MeshVPN.Internal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.MeshVPN.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caeves0001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/caeves0001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudmaker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudmaker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasmartaiprivatelimited1682323573958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasmartaiprivatelimited1682323573958\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ixptyltd1586433755284\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ixptyltd1586433755284\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ekinopsfrance1583498025383\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ekinopsfrance1583498025383\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iqsuite-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iqsuite-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cendio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cendio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalateams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalateams\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boxarr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boxarr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redhat-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redhat-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adminwaresoftwareprivatelimited1613149497364\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adminwaresoftwareprivatelimited1613149497364\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bunkerity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bunkerity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynamicweb-solutions-asia-4636753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynamicweb-solutions-asia-4636753\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ckchainparaamricalatinayelcaribel-net1664396707594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ckchainparaamricalatinayelcaribel-net1664396707594\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallaroolabs1649097394131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallaroolabs1649097394131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1614663853766\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1614663853766\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Watson\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Watson\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seatablegmbh1672668832676\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seatablegmbh1672668832676\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtbusinessvalidation1685730553911\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtbusinessvalidation1685730553911\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"anarion-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/anarion-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stardogunioninc1706307162993\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stardogunioninc1706307162993\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbluellc1705690815510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbluellc1705690815510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"myhsm1591964058742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/myhsm1591964058742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciena1654095655352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciena1654095655352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adiom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adiom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enclaivegmbh1643578052639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enclaivegmbh1643578052639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kamiwaza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kamiwaza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opticcaconsultinginc1604521372438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opticcaconsultinginc1604521372438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"whizhacktechnologiespltd1665139209828\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/whizhacktechnologiespltd1665139209828\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nmcloudsolutionsllc1645603292959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nmcloudsolutionsllc1645603292959\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"grist\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/grist\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inductiveautomationllc1675268212292\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inductiveautomationllc1675268212292\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comforteag1690799379662\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comforteag1690799379662\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ennetixinc1663880176969\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ennetixinc1663880176969\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techilatechnologiesltd1666269025720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techilatechnologiesltd1666269025720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratuson\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratuson\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"x-margininc1678098868153\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/x-margininc1678098868153\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntegralinc1579229654467\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntegralinc1579229654467\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ir\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ir\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zainabmarket\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zainabmarket\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"upstage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/upstage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ligadatainformationtechnologycollc1692093528909\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ligadatainformationtechnologycollc1692093528909\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airspannetworks1685633374715\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/airspannetworks1685633374715\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureVirtualDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureVirtualDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"info-inlet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/info-inlet-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyphercorinc1687437871535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyphercorinc1687437871535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bansirllc1619470302579\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bansirllc1619470302579\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1685409837420\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1685409837420\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"turtletraction.oss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/turtletraction.oss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lcmcon1687976613543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lcmcon1687976613543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1704334229030\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1704334229030\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yeastar1695699937035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yeastar1695699937035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abcostingprodutoseserviosltda1657246951521\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abcostingprodutoseserviosltda1657246951521\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"texcio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/texcio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudimg1647283583153\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudimg1647283583153\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftazenpcps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftazenpcps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dftworksllc1665199028638\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dftworksllc1665199028638\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sigaotsolutionsinc1703353271830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sigaotsolutionsinc1703353271830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"technomanagement1663490401500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/technomanagement1663490401500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uptycs-cnapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uptycs-cnapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacificdataintegrators1738256099128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacificdataintegrators1738256099128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextarp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Reliability.Watson\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Reliability.Watson\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metric-insights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/metric-insights\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SCOMMIServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SCOMMIServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bcloudllc1671615348068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bcloudllc1671615348068\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midrangecloudsolutionsllc1683714453763\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midrangecloudsolutionsllc1683714453763\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-gaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arqitlimited1676992699665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arqitlimited1676992699665\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saharacombinedforgeneraltrading1592917520835\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saharacombinedforgeneraltrading1592917520835\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"excelenteinc1620934446334\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/excelenteinc1620934446334\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diveplanecorporation1712251239175\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diveplanecorporation1712251239175\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1730358365770\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1730358365770\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStackHCI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStackHCI\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"well-linktechpteltd1720676101290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/well-linktechpteltd1720676101290\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"c3iotinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/c3iotinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"persz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/persz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"interoperabilitybidcoincdbalyniate1685407264923\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/interoperabilitybidcoincdbalyniate1685407264923\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse1721900171446\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse1721900171446\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1597404694066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1597404694066\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arctera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arctera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"curvc1664848996592\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/curvc1664848996592\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1731658013774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1731658013774\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"grainite1677100649276\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/grainite1677100649276\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dedalusspa1661878333696\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dedalusspa1661878333696\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"printplus_ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/printplus_ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bedatadrivenbv1612942138209\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bedatadrivenbv1612942138209\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphinxindusanalyticsopcprivatelimited1702362435306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphinxindusanalyticsopcprivatelimited1702362435306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unstructured1691024866136\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unstructured1691024866136\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"entelectsolutionsptyltd1584988532030\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/entelectsolutionsptyltd1584988532030\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextcloudgmbh1597841818906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextcloudgmbh1597841818906\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blpindustryaiprivatelimited1694516670498\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blpindustryaiprivatelimited1694516670498\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automaicorporation1684540889707\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automaicorporation1684540889707\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clearvisibility1695136446164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clearvisibility1695136446164\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bitcorpsrl1640768933322\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bitcorpsrl1640768933322\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cosmian1582023228706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cosmian1582023228706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlabinc1659373855767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlabinc1659373855767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vailley-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vailley-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cirruslinksolutions1598993297919\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cirruslinksolutions1598993297919\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"envision_blockchain-5199407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/envision_blockchain-5199407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"giggso1725717492811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/giggso1725717492811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"musarubrausllc1643827029255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/musarubrausllc1643827029255\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unify-cloud-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unify-cloud-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softserveinc1605804530752\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softserveinc1605804530752\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emqtechnologiesincorporated1678779968155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/emqtechnologiesincorporated1678779968155\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwarealliancelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwarealliancelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pandorafms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pandorafms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsimages\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsimages\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivtree1620220752792\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivtree1620220752792\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dockerinc1694120899427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dockerinc1694120899427\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"holmsecurityswedenab1639511288603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/holmsecurityswedenab1639511288603\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spinsystemsinc1690229879053\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spinsystemsinc1690229879053\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"anapaya\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/anapaya\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"m-starsimulationsllc1683142212605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/m-starsimulationsllc1683142212605\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidterrallc1675287658838\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidterrallc1675287658838\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"c1sttechnologiesllc1689876688401\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/c1sttechnologiesllc1689876688401\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Edge.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Edge.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itdevtechllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itdevtechllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"slotix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/slotix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsCodeIntegrity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WindowsCodeIntegrity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voyageaiinnovationsinc1718340344903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voyageaiinnovationsinc1718340344903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"keysight-technologies-ixvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/keysight-technologies-ixvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firsteigen1646266544784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firsteigen1646266544784\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1667570284386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1667570284386\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecogeneticllc1676924558438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecogeneticllc1676924558438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krontech1689879437079\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/krontech1689879437079\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wsusainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wsusainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonksuruinc1697403499772\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonksuruinc1697403499772\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decyphertek\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/decyphertek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hoonartekwurksprivatelimited1627292867821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hoonartekwurksprivatelimited1627292867821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcvideo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcvideo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reliancyllc1588113249666\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reliancyllc1588113249666\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.ArcVirtualization\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.ArcVirtualization\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qarbine1618349238434\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qarbine1618349238434\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xplgltd1653211163102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xplgltd1653211163102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tilleredlimited1655688918280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tilleredlimited1655688918280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vasion1701746527592\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vasion1701746527592\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"indiecrew-studio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/indiecrew-studio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neccorporationofamerica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neccorporationofamerica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neonforge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neonforge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infinitumsa1629294824649\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infinitumsa1629294824649\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ai-opsllc1593527598862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ai-opsllc1593527598862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"54cuatro1595867609214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/54cuatro1595867609214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drzcorporation1687530635641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drzcorporation1687530635641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Sentinel.SapAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Sentinel.SapAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"active-integration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/active-integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elisity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elisity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"purplecubeinc1680669832842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/purplecubeinc1680669832842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.HybridFabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.HybridFabric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-australia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-australia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globant\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwareagusainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwareagusainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1720148908856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1720148908856\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataedo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataedo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudforttechnology1676310975446\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudforttechnology1676310975446\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"insightsoftwarecomlimited1584800919871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/insightsoftwarecomlimited1584800919871\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1689761683063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1689761683063\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bevywisenetworksllp1677848977927\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bevywisenetworksllp1677848977927\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-asperia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-asperia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"civicanorthamerica1706115853175\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/civicanorthamerica1706115853175\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mirantis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mirantis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s-ins-microsoftpartner-usa-ny-armonk-1627616993058\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s-ins-microsoftpartner-usa-ny-armonk-1627616993058\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omnissallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/omnissallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aibusinessschoolag1712156537216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aibusinessschoolag1712156537216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_gps_americas_code-with1694019817347\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_gps_americas_code-with1694019817347\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontotextad1692361256062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontotextad1692361256062\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shanghaiweilitechnologycoltd1645150733082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shanghaiweilitechnologycoltd1645150733082\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realloadptyltd1725868033842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/realloadptyltd1725868033842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cgg1698165761764\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cgg1698165761764\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cubebackupinc1662619479161\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cubebackupinc1662619479161\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collibrainctin80-09241681732799250972\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collibrainctin80-09241681732799250972\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loamics-fr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/loamics-fr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"medcurioinc1655396355237\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/medcurioinc1655396355237\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veraxai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veraxai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Security.CRED.Defender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Security.CRED.Defender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synergisttechnologyllc1718233086249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synergisttechnologyllc1718233086249\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itecosystemssolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itecosystemssolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"einmind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/einmind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stelodata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stelodata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-llc-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-llc-adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"supportedimagesllc1615494954880\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/supportedimagesllc1615494954880\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcinformatique1681216831560\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcinformatique1681216831560\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasarai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasarai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"keysighttechnologies_cyperf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/keysighttechnologies_cyperf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSStgBvt20\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIRCore.CAPSStgBvt20\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akinsit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akinsit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciphertechsinc1676666082978\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciphertechsinc1676666082978\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"suseirelandltd1692213356027\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/suseirelandltd1692213356027\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9000\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/9000\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlettpackardenterprise1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlettpackardenterprise1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dualitytechnologiesinc1673786653838\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dualitytechnologiesinc1673786653838\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"belindacz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/belindacz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohirriminc1663792273127\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohirriminc1663792273127\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestackinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestackinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyolosecurityltd1726775987480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyolosecurityltd1726775987480\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evorine1660210935094\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evorine1660210935094\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neverfailcontinuouscontrolsinc1600463582767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neverfailcontinuouscontrolsinc1600463582767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docshifter1673950324990\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/docshifter1673950324990\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datprof\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datprof\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevancelabinc1697784679917\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevancelabinc1697784679917\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HSE.Infra.Internal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HSE.Infra.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yaseensmarketltd03032025023044\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yaseensmarketltd03032025023044\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infotectsecuritypteltd1584534959776\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infotectsecuritypteltd1584534959776\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litecho1652270712947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litecho1652270712947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"criblinc1673975616879\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/criblinc1673975616879\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"supernainc1642621287664\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/supernainc1642621287664\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"acplsystemspvtltd1734432892724\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/acplsystemspvtltd1734432892724\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"siemensplmsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/siemensplmsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1685614597565\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1685614597565\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"terminusdb1606769310168\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/terminusdb1606769310168\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"keysight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/keysight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redhat1627408356675\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redhat1627408356675\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocksavagetechnologyinc1713893864282\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocksavagetechnologyinc1713893864282\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"africamediaconsortiumllc1670411800267\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/africamediaconsortiumllc1670411800267\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudriches\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudriches\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SiteRecovery.Dra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SiteRecovery.Dra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Tanium.Client\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Tanium.Client\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.RecoveryServices.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.RecoveryServices.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rightdatainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rightdatainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visokiouklimited1661943152060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visokiouklimited1661943152060\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azure-hpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azure-hpc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datamasquelimited1651546259207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datamasquelimited1651546259207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"phitr-ai-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/phitr-ai-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kCloudHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kCloudHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jinaai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jinaai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1695609141511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1695609141511\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swirlcorporation1684335149355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swirlcorporation1684335149355\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paratools-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paratools-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fosterfindlayassociateslimited1724322170979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fosterfindlayassociateslimited1724322170979\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waterflowtechnologypvtltd1729501777501\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/waterflowtechnologypvtltd1729501777501\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profeciait1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profeciait1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1650441978315\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1650441978315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numenta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numenta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codeingenierainformticasl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codeingenierainformticasl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"levelblue\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/levelblue\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shapelets1647335373345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shapelets1647335373345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"assureddataprotectioninc1667911107164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/assureddataprotectioninc1667911107164\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSExtBvt.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIRCore.CAPSExtBvt.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3mdincdbadenaliadvancedintegration1720428393061\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/3mdincdbadenaliadvancedintegration1720428393061\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinkuplabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinkuplabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidefoundation1692080730903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidefoundation1692080730903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataphion1595790857048\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataphion1595790857048\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"salient\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/salient\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphi-consulting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphi-consulting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zaintechsolutionsfz-llc1692862657242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zaintechsolutionsfz-llc1692862657242\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365Security.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365Security.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"andampgmbh1675347912177\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/andampgmbh1675347912177\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.Orchestration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.Orchestration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hexaeightopcprivatelimited1653195738074\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hexaeightopcprivatelimited1653195738074\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataevolvesolutionsopcprivatelimited1673336394359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataevolvesolutionsopcprivatelimited1673336394359\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"on2it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/on2it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vfunctiontechnologiesltd1665073911806\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vfunctiontechnologiesltd1665073911806\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"callwaretechnologiesinc1657114750733\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/callwaretechnologiesinc1657114750733\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"frizb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/frizb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vianai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vianai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cacheguardtechnologieslimited1681804059471\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cacheguardtechnologieslimited1681804059471\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"piqwanasac1670892237457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/piqwanasac1670892237457\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemceisi123456\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemceisi123456\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoviewsystemsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoviewsystemsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corememlimited1599075556346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corememlimited1599075556346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mongodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mongodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crayon-group-as-1129016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crayon-group-as-1129016\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pcloudhosting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pcloudhosting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Cirrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FleetDiagnostics.Cirrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corememlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corememlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365AzsecpackAutoconfig.CentralNamespaceConfigure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365AzsecpackAutoconfig.CentralNamespaceConfigure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moxainc1660788982930\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moxainc1660788982930\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"in4it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/in4it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"philterdllc1687189098111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/philterdllc1687189098111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginuity-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginuity-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"experollc1644352127859\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/experollc1644352127859\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"epicyclelimited1653984451703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/epicyclelimited1653984451703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"optimitiveslu1618318884537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/optimitiveslu1618318884537\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivanti-vadc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivanti-vadc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kpmglowergulflimited1744019197011\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kpmglowergulflimited1744019197011\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubilityai1599391188425\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubilityai1599391188425\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIR.RC.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIR.RC.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veripark_solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veripark_solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TeamViewer.AzureVMExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TeamViewer.AzureVMExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonatypeinc1724257499617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonatypeinc1724257499617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shardsecureinc1594847380725\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shardsecureinc1594847380725\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinetfederal1695393143380\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinetfederal1695393143380\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"komprise_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/komprise_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"praelexis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/praelexis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catswords\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catswords\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zetarisptyltd1653890360235\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zetarisptyltd1653890360235\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hostingcontrollerinc1656315491972\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hostingcontrollerinc1656315491972\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fano_labs_limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fano_labs_limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"capaxdiscovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/capaxdiscovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataeazesystemspvtltd1720620091242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataeazesystemspvtltd1720620091242\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alaiso\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alaiso\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swiftroofestimatingservicesltd1695806680945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swiftroofestimatingservicesltd1695806680945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"weidmllerinterfacegmbhcokg1593785027047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/weidmllerinterfacegmbhcokg1593785027047\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pingcapusinc1721021923990\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pingcapusinc1721021923990\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pkisolutionsllc1679597045863\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pkisolutionsllc1679597045863\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuvemnestllc1695391252715\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuvemnestllc1695391252715\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"amperecomputingllc1649288430919\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/amperecomputingllc1649288430919\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dispersiveholdingsinc1653422231259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dispersiveholdingsinc1653422231259\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neonforgellc1660679895021\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neonforgellc1660679895021\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"latentaiinc1680819096432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/latentaiinc1680819096432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies1699381160543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies1699381160543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"askforcloudllc1651766049149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/askforcloudllc1651766049149\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelprojects1681819643206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelprojects1681819643206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exadelinc1675271740487\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exadelinc1675271740487\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HSE.Infra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HSE.Infra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcorporation1687208452115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcorporation1687208452115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudframeinc1615321281795\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudframeinc1615321281795\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"impactbusinessinformationsolutions1729610964134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/impactbusinessinformationsolutions1729610964134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maya_data_ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maya_data_ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgeaiinc1716488540630\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgeaiinc1716488540630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cacheguardtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cacheguardtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orienlabsllc1678315026142\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orienlabsllc1678315026142\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"legacyboxltd1599224386505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/legacyboxltd1599224386505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentraltd1702900353613\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentraltd1702900353613\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vocallsincsro1689854055826\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vocallsincsro1689854055826\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"polverio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/polverio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureVirtualDesktop-CICD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureVirtualDesktop-CICD\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globallinkingsolutionsinc1673581558566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globallinkingsolutionsinc1673581558566\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplifier\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplifier\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"agrozgroupsdnbhd1700628095587\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/agrozgroupsdnbhd1700628095587\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunrisesoftwaregmbh1600691313341\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunrisesoftwaregmbh1600691313341\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aldercapitalllc1682703876147\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aldercapitalllc1682703876147\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathildetechnologyhongkonglimited1669113447021\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathildetechnologyhongkonglimited1669113447021\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"entrenamientoinformticoavanzadosadecv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/entrenamientoinformticoavanzadosadecv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synologyinc1715323237857\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synologyinc1715323237857\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kockpitanalyticspvtltd1645177427945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kockpitanalyticspvtltd1645177427945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appsentinelsprivatelimited1682860922767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appsentinelsprivatelimited1682860922767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dcdobrasil1651841970501\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dcdobrasil1651841970501\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OSTelemetry.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OSTelemetry.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elegantcodesolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elegantcodesolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ilinksystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ilinksystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gottaphish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gottaphish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sedetos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sedetos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cdatajapan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cdatajapan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nirvaha1688048738599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nirvaha1688048738599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubisense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"finticsas1604875530254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/finticsas1604875530254\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sorba-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sorba-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seesharpsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seesharpsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conclavecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/conclavecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nexusfrontiertechlimited1660561594678\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nexusfrontiertechlimited1660561594678\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"presciencedecisionsolutionspvtltd1717148574997\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/presciencedecisionsolutionspvtltd1717148574997\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsasecurity1687281258544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsasecurity1687281258544\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"510713407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/510713407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"developmenthub2024\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/developmenthub2024\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"motifworks-azure-apps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/motifworks-azure-apps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swisssecurityhubag1684863672907\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swisssecurityhubag1684863672907\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Tenable.NessusAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Tenable.NessusAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.Observability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.Observability\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rackspace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rackspace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"optimatechlimited1688074981368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/optimatechlimited1688074981368\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maaztechnologies1728726102718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maaztechnologies1728726102718\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.PrivateTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC.PrivateTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"n2wsoftwareinc1657117813969\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/n2wsoftwareinc1657117813969\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"risecorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/risecorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"myriadtechnologiesptyltd-2094736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/myriadtechnologiesptyltd-2094736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds1685464784065\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds1685464784065\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindbreezegmbh1657087507223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindbreezegmbh1657087507223\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sahasholdingpvtltd2024\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sahasholdingpvtltd2024\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sixninesit1663769336580\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sixninesit1663769336580\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.MeshVPN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.MeshVPN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zamanconsultancylimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zamanconsultancylimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visionaize\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visionaize\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nets1664415757656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nets1664415757656\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OSTelemetry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OSTelemetry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graxinc1618409175503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graxinc1618409175503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ghes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ghes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comaticag1663321091033\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comaticag1663321091033\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buildpiper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/buildpiper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netprotrinity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netprotrinity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"braincube\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/braincube\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"compsolglobalinc1634128357503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/compsolglobalinc1634128357503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caloudicorporation1685526807944\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/caloudicorporation1685526807944\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cogstacklimited1697736441051\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cogstacklimited1697736441051\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcircleinc1727251401364\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcircleinc1727251401364\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalynxptyltd1629960622072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalynxptyltd1629960622072\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"precisoftlimitada1689031175058\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/precisoftlimitada1689031175058\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pcigeomaticsenterprisesinc1619717739720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pcigeomaticsenterprisesinc1619717739720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Xitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Xitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reductsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reductsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automonxltd1601306138716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automonxltd1601306138716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1touchio1627313187723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1touchio1627313187723\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tooljetsolutioninc1679496832216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tooljetsolutioninc1679496832216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sigsenztechnologiespvtltd1646072485417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sigsenztechnologiespvtltd1646072485417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maryamsmarket\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maryamsmarket\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genzeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genzeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"distylai1705447332869\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/distylai1705447332869\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sprinxsystemsas1582034211947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sprinxsystemsas1582034211947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Chaos.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Chaos.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reductstorellc1689939980623\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reductstorellc1689939980623\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"superhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/superhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thenielsencompany1584587184924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thenielsencompany1584587184924\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hexagonmanufacturingintelligence1586372099540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hexagonmanufacturingintelligence1586372099540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaleaiinc1703010376105\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaleaiinc1703010376105\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"walacorcorporation1689871416413\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/walacorcorporation1689871416413\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"in-biotprivatelimited1592297269046\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/in-biotprivatelimited1592297269046\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.ProxyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.ProxyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1672212957491\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1672212957491\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peplinkpepwavelimited1664796707280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/peplinkpepwavelimited1664796707280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tribe29gmbh1665582614827\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tribe29gmbh1665582614827\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"surepassidcorp1620848967359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/surepassidcorp1620848967359\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"businessimagingsystemsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/businessimagingsystemsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdomesolutionsprivatelimited1708671149622\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdomesolutionsprivatelimited1708671149622\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacbytelimited1655770796006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacbytelimited1655770796006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ansit-comgmbh1688555996538\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ansit-comgmbh1688555996538\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"c-phrasetechnologiesswedenab1674654373407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/c-phrasetechnologiesswedenab1674654373407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"100101010000\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/100101010000\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1654668554142\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1654668554142\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semanticai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semanticai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"coalescesolutionsllc1649284093713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/coalescesolutionsllc1649284093713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brainwaredwc-llc1669095990764\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brainwaredwc-llc1669095990764\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-isv-eng\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-isv-eng\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bynetdatacommunicationsltd1658928488221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bynetdatacommunicationsltd1658928488221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cteranetworksltd1651947437632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cteranetworksltd1651947437632\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerotrustedaillc1672945594749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerotrustedaillc1672945594749\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consoleworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/consoleworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"google-cloud-alloydb-omni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/google-cloud-alloydb-omni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperionsystemsengineeringltd1692960786190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperionsystemsengineeringltd1692960786190\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubika\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubika\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netticacorporation1696242544587\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netticacorporation1696242544587\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.HCI.Alerts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.HCI.Alerts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitedsecurityprovidersag1683803318933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitedsecurityprovidersag1683803318933\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"answerrocket1683647523767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/answerrocket1683647523767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"schmitzrzconsultgmbh1654870156925\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/schmitzrzconsultgmbh1654870156925\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft.o3fnet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft.o3fnet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "75e2960f-1821-4bab-af0b-8c84e965be65" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "6319a210-2e4b-4685-b396-ff179a92eb8b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike-database\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike-database\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alces-flight-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alces-flight-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appspace\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/appspace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aptean-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aptean-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aqua-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aqua-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlassian\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlassian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brainshare-it\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/brainshare-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cbreplicator\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cbreplicator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhub-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhub-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudify\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudify\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cortex-ag\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cortex-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crate-io\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/crate-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastbanctech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastbanctech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ekran-system-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ekran-system-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elementrem\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elementrem\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genesys-source\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/genesys-source\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gordic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gordic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"humanlogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/humanlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mactores_inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mactores_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maketv\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/maketv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsec-zrt\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsec-zrt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.DscPolicy2.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.DscPolicy2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftoxa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftoxa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msrazuresapservices\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/msrazuresapservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsil\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsil\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nubeva-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nubeva-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opsview-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/opsview-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scsk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/scsk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shieldx-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/shieldx-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sidm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sidm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplygon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplygon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusiondashboard\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusiondashboard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tokyosystemhouse\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tokyosystemhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velostrata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velostrata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velostrata-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/velostrata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vintegris\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vintegris\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waves\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/waves\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workspot\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/workspot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "151660" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -298,34953 +324,229069 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f9cefe57-6d7d-423a-bcb5-35422fef9c50_131747220908267077" + "f9cefe57-6d7d-423a-bcb5-35422fef9c50_133922693564388247" ], "x-ms-request-id": [ - "7ab197c3-0c36-472a-b0f4-321a31441620" - ], - "Cache-Control": [ - "no-cache" + "09c66204-d78b-4f05-8bab-c3e9da2dbec0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2db0b6e5-00cb-4c86-b43c-21796aee89bc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14483" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "01d43b2f-a1ce-448c-a2d1-732221c87346" + "19df3790-0740-437e-9ff8-88c749d73665" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012738Z:01d43b2f-a1ce-448c-a2d1-732221c87346" + "EASTUS2:20250602T215413Z:19df3790-0740-437e-9ff8-88c749d73665" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4952C578C92041AFB1E9423E4D3FCB1C Ref B: MNZ221060618053 Ref C: 2025-06-02T21:54:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:38 GMT" + "Mon, 02 Jun 2025 21:54:13 GMT" + ], + "Content-Length": [ + "530726" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365Security.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365Security.Kevlar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1653036178719\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1653036178719\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evsbroadcastequipment1693315403643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evsbroadcastequipment1693315403643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abinitiosoftwarellc1677006784871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abinitiosoftwarellc1677006784871\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"faddomltd1673360856547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/faddomltd1673360856547\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adeoimagingo1682623715346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adeoimagingo1682623715346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celebaltechnologiesprivatelimited1667842096083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/celebaltechnologiesprivatelimited1667842096083\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zeetim1660843138752\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zeetim1660843138752\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elaniaresources1648486385938\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elaniaresources1648486385938\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tolgee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tolgee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ridgesecuritytechnologyinc1670890478389\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ridgesecuritytechnologyinc1670890478389\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudgtiou1724737530190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudgtiou1724737530190\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.PrivateTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.PrivateTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"askomspzoo1725359918536\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/askomspzoo1725359918536\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"novisystemsinc1664197608642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/novisystemsinc1664197608642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tcginformatikag1604414835514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tcginformatikag1604414835514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications_ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications_ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"utimacoisgmbh1676995905654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/utimacoisgmbh1676995905654\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"k-businesscomag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/k-businesscomag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yendigital\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yendigital\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ortus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ortus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cotechnoe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cotechnoe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions.Internal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"runailabsltd1647779544073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/runailabsltd1647779544073\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hexaware-technologies-1485696\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hexaware-technologies-1485696\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kasmtechnologiesllc1747773134895\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kasmtechnologiesllc1747773134895\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bjs-devops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bjs-devops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"technidoosolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/technidoosolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.HardwareHealthService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.HardwareHealthService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commscopeinc1692367319930\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commscopeinc1692367319930\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netskopebwan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netskopebwan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pctestcpppub8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pctestcpppub8\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.HybridContainerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.HybridContainerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"linkshadowlimited1688362969670\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/linkshadowlimited1688362969670\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jet-tech-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jet-tech-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwaretailor1609753491333\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwaretailor1609753491333\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kenmeitechnologies1707926434780\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kenmeitechnologies1707926434780\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wassa1725441148252\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wassa1725441148252\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_commercial_marketplace_services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_commercial_marketplace_services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SCOMMI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SCOMMI\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdalsecurity-4649307\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdalsecurity-4649307\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globaldataanalyticsptyltdtatapeark1636285238780\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globaldataanalyticsptyltdtatapeark1636285238780\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybermaxxllc1721061627123\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybermaxxllc1721061627123\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSExtTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIRCore.CAPSExtTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe.serviceguard.ha.dr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe.serviceguard.ha.dr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crowdboticscorporation1682618353390\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crowdboticscorporation1682618353390\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enghouseinteractiveab1591177812575\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enghouseinteractiveab1591177812575\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcheckltd1695809167331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcheckltd1695809167331\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Elastic.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Elastic.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mango_solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mango_solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itac1728588411219\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itac1728588411219\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SCIM.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SCIM.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ebatinca1717965618562\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ebatinca1717965618562\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphiantinc1622651764677\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphiantinc1622651764677\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ultoriaedesenvolvimentodesoftwareltda1662599967069\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ultoriaedesenvolvimentodesoftwareltda1662599967069\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swxtchiollc1614108926893\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swxtchiollc1614108926893\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"presightaiholdingplc1721897478652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/presightaiholdingplc1721897478652\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"phonexiasro1585942477821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/phonexiasro1585942477821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elimnet1678245663131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elimnet1678245663131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kongsbergdigitalas1656311721334\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kongsbergdigitalas1656311721334\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecosmob-tech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecosmob-tech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmconsulting1691681668032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmconsulting1691681668032\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry1736978014039\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry1736978014039\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rockwellautomationinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rockwellautomationinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azosistechnologiesprivatelimited1678602118439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azosistechnologiesprivatelimited1678602118439\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikandevelopmentnv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikandevelopmentnv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"erockyenterprisesoftwarefoundationinc1653071250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/erockyenterprisesoftwarefoundationinc1653071250513\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CortexAG\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CortexAG\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rinnelabs1694698542130\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rinnelabs1694698542130\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicroinc1646754541828\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicroinc1646754541828\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zultysinc1596831546163\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tosiboxoy1646313791207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tosiboxoy1646313791207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"publicworksauthority-ashghal-1726120801616\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/publicworksauthority-ashghal-1726120801616\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bui\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bui\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"callabacloud1655146409258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/callabacloud1655146409258\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"it-conductorinc1709070852352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/it-conductorinc1709070852352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"madarsonitllc1614702968211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/madarsonitllc1614702968211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"claroty1709722359369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/claroty1709722359369\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mphasis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mphasis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nlmaticscorp1686371242615\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nlmaticscorp1686371242615\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextfoam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextfoam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"amestofortytwoas1653635920536\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/amestofortytwoas1653635920536\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filingcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filingcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"backupassure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/backupassure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altratechnologiesptyltd1719876965699\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altratechnologiesptyltd1719876965699\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aqtraplatformllc1657880532038\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aqtraplatformllc1657880532038\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"threatmodelersoftwareinc1678908538740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/threatmodelersoftwareinc1678908538740\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modulosag1662472793092\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modulosag1662472793092\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ssctechnologiesinc1627569348038\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ssctechnologiesinc1627569348038\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testtestindustryexperiencestest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testtestindustryexperiencestest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-canada-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-canada-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quibiqgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quibiqgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasquaredusainc1681613080256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasquaredusainc1681613080256\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cpacketnetworks1719269615814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cpacketnetworks1719269615814\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gyoutsourcingparalatamsociedadanonima1693102395423\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gyoutsourcingparalatamsociedadanonima1693102395423\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentextglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentextglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"contosomarketplacetestoffers1689257433139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/contosomarketplacetestoffers1689257433139\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"calnexsolutionsplc1646835041441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/calnexsolutionsplc1646835041441\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ateme1601986935870\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ateme1601986935870\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eisoftwaretechnologyhongkongcolimited1722223098317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eisoftwaretechnologyhongkongcolimited1722223098317\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aurachainag1694682885402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aurachainag1694682885402\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguaziosystemsinc1642090150854\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguaziosystemsinc1642090150854\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"admindroidsoftwares\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/admindroidsoftwares\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightbitslabsinc1670948060485\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightbitslabsinc1670948060485\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1655452468737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1655452468737\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"musarubrausllc1671236565460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/musarubrausllc1671236565460\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"declarationsoftware1674733568950\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/declarationsoftware1674733568950\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ServicesHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ServicesHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto-si1654889826459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto-si1654889826459\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-visionioinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-visionioinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xpdeep1718714414789\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xpdeep1718714414789\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comtelspa1649256695779\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comtelspa1649256695779\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dablabsinc1654806039152\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dablabsinc1654806039152\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enteruptors10232023052922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enteruptors10232023052922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cad4devopsinc1662079207461\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cad4devopsinc1662079207461\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AksArcForLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AksArcForLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardidymanager\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardidymanager\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eliamarzia1667381463185\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eliamarzia1667381463185\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tosibox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tosibox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spglobalmarketintelligence1596223440363\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spglobalmarketintelligence1596223440363\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thepartnermasters1673401089019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thepartnermasters1673401089019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.PingMesh.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.PingMesh.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"homeofficeimprovementsltd1629905933258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/homeofficeimprovementsltd1629905933258\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elmcomputing1669646908295\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elmcomputing1669646908295\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OSTelemetry.Cirrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OSTelemetry.Cirrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"articentgroupllc1635512619530\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/articentgroupllc1635512619530\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybercxptyltd1590132359004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybercxptyltd1590132359004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcticwolfnetworks1680048607525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcticwolfnetworks1680048607525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2812187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/2812187\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"violetrobotlimited1679388052172\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/violetrobotlimited1679388052172\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"analytiumltd1582389146376\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/analytiumltd1582389146376\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gajshieldinfotechindiapvtltd1693211201273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gajshieldinfotechindiapvtltd1693211201273\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dcassociatesgroupinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dcassociatesgroupinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inventeccorp1645697962291\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inventeccorp1645697962291\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netskope\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netskope\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eigenlimited1610374015589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eigenlimited1610374015589\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crestdatasystemsprivatelimited1700646988325\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crestdatasystemsprivatelimited1700646988325\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"routineai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/routineai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacticsltd1591001866957\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacticsltd1591001866957\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dbsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dbsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquilaltd1636632578012\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquilaltd1636632578012\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Spektra.Cloudlabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Spektra.Cloudlabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.MeshVPN.Internal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.MeshVPN.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caeves0001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/caeves0001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudmaker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudmaker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasmartaiprivatelimited1682323573958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasmartaiprivatelimited1682323573958\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ixptyltd1586433755284\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ixptyltd1586433755284\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ekinopsfrance1583498025383\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ekinopsfrance1583498025383\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iqsuite-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iqsuite-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cendio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cendio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalateams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalateams\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boxarr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boxarr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redhat-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redhat-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adminwaresoftwareprivatelimited1613149497364\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adminwaresoftwareprivatelimited1613149497364\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bunkerity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bunkerity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynamicweb-solutions-asia-4636753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynamicweb-solutions-asia-4636753\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ckchainparaamricalatinayelcaribel-net1664396707594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ckchainparaamricalatinayelcaribel-net1664396707594\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallaroolabs1649097394131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallaroolabs1649097394131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1614663853766\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1614663853766\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Watson\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Watson\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seatablegmbh1672668832676\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seatablegmbh1672668832676\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtbusinessvalidation1685730553911\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtbusinessvalidation1685730553911\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"anarion-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/anarion-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stardogunioninc1706307162993\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stardogunioninc1706307162993\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbluellc1705690815510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbluellc1705690815510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"myhsm1591964058742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/myhsm1591964058742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciena1654095655352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciena1654095655352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adiom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adiom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enclaivegmbh1643578052639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enclaivegmbh1643578052639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kamiwaza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kamiwaza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opticcaconsultinginc1604521372438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opticcaconsultinginc1604521372438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"whizhacktechnologiespltd1665139209828\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/whizhacktechnologiespltd1665139209828\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nmcloudsolutionsllc1645603292959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nmcloudsolutionsllc1645603292959\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"grist\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/grist\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inductiveautomationllc1675268212292\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inductiveautomationllc1675268212292\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comforteag1690799379662\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comforteag1690799379662\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ennetixinc1663880176969\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ennetixinc1663880176969\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techilatechnologiesltd1666269025720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techilatechnologiesltd1666269025720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratuson\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratuson\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"x-margininc1678098868153\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/x-margininc1678098868153\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntegralinc1579229654467\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntegralinc1579229654467\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ir\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ir\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zainabmarket\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zainabmarket\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"upstage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/upstage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ligadatainformationtechnologycollc1692093528909\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ligadatainformationtechnologycollc1692093528909\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airspannetworks1685633374715\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/airspannetworks1685633374715\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureVirtualDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureVirtualDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"info-inlet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/info-inlet-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyphercorinc1687437871535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyphercorinc1687437871535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bansirllc1619470302579\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bansirllc1619470302579\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1685409837420\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1685409837420\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"turtletraction.oss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/turtletraction.oss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lcmcon1687976613543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lcmcon1687976613543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1704334229030\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1704334229030\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yeastar1695699937035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yeastar1695699937035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abcostingprodutoseserviosltda1657246951521\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abcostingprodutoseserviosltda1657246951521\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"texcio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/texcio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudimg1647283583153\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudimg1647283583153\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftazenpcps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftazenpcps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dftworksllc1665199028638\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dftworksllc1665199028638\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sigaotsolutionsinc1703353271830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sigaotsolutionsinc1703353271830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"technomanagement1663490401500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/technomanagement1663490401500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uptycs-cnapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uptycs-cnapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacificdataintegrators1738256099128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacificdataintegrators1738256099128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextarp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Reliability.Watson\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Reliability.Watson\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metric-insights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/metric-insights\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SCOMMIServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SCOMMIServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bcloudllc1671615348068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bcloudllc1671615348068\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midrangecloudsolutionsllc1683714453763\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midrangecloudsolutionsllc1683714453763\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-gaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arqitlimited1676992699665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arqitlimited1676992699665\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saharacombinedforgeneraltrading1592917520835\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saharacombinedforgeneraltrading1592917520835\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"excelenteinc1620934446334\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/excelenteinc1620934446334\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diveplanecorporation1712251239175\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diveplanecorporation1712251239175\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1730358365770\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1730358365770\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStackHCI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStackHCI\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"well-linktechpteltd1720676101290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/well-linktechpteltd1720676101290\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"c3iotinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/c3iotinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"persz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/persz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"interoperabilitybidcoincdbalyniate1685407264923\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/interoperabilitybidcoincdbalyniate1685407264923\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse1721900171446\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse1721900171446\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1597404694066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1597404694066\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arctera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arctera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"curvc1664848996592\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/curvc1664848996592\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1731658013774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1731658013774\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"grainite1677100649276\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/grainite1677100649276\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dedalusspa1661878333696\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dedalusspa1661878333696\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"printplus_ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/printplus_ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bedatadrivenbv1612942138209\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bedatadrivenbv1612942138209\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphinxindusanalyticsopcprivatelimited1702362435306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphinxindusanalyticsopcprivatelimited1702362435306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unstructured1691024866136\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unstructured1691024866136\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"entelectsolutionsptyltd1584988532030\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/entelectsolutionsptyltd1584988532030\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextcloudgmbh1597841818906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextcloudgmbh1597841818906\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blpindustryaiprivatelimited1694516670498\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blpindustryaiprivatelimited1694516670498\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automaicorporation1684540889707\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automaicorporation1684540889707\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clearvisibility1695136446164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clearvisibility1695136446164\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bitcorpsrl1640768933322\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bitcorpsrl1640768933322\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cosmian1582023228706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cosmian1582023228706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlabinc1659373855767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlabinc1659373855767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vailley-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vailley-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cirruslinksolutions1598993297919\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cirruslinksolutions1598993297919\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"envision_blockchain-5199407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/envision_blockchain-5199407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"giggso1725717492811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/giggso1725717492811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"musarubrausllc1643827029255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/musarubrausllc1643827029255\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unify-cloud-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unify-cloud-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softserveinc1605804530752\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softserveinc1605804530752\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emqtechnologiesincorporated1678779968155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/emqtechnologiesincorporated1678779968155\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwarealliancelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwarealliancelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pandorafms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pandorafms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsimages\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsimages\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivtree1620220752792\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivtree1620220752792\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dockerinc1694120899427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dockerinc1694120899427\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"holmsecurityswedenab1639511288603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/holmsecurityswedenab1639511288603\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spinsystemsinc1690229879053\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spinsystemsinc1690229879053\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"anapaya\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/anapaya\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"m-starsimulationsllc1683142212605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/m-starsimulationsllc1683142212605\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidterrallc1675287658838\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidterrallc1675287658838\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"c1sttechnologiesllc1689876688401\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/c1sttechnologiesllc1689876688401\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Edge.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Edge.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itdevtechllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itdevtechllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"slotix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/slotix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsCodeIntegrity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WindowsCodeIntegrity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voyageaiinnovationsinc1718340344903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voyageaiinnovationsinc1718340344903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"keysight-technologies-ixvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/keysight-technologies-ixvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firsteigen1646266544784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firsteigen1646266544784\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1667570284386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1667570284386\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecogeneticllc1676924558438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecogeneticllc1676924558438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krontech1689879437079\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/krontech1689879437079\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wsusainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wsusainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonksuruinc1697403499772\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonksuruinc1697403499772\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decyphertek\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/decyphertek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hoonartekwurksprivatelimited1627292867821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hoonartekwurksprivatelimited1627292867821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcvideo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcvideo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reliancyllc1588113249666\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reliancyllc1588113249666\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.ArcVirtualization\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.ArcVirtualization\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qarbine1618349238434\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qarbine1618349238434\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xplgltd1653211163102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xplgltd1653211163102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tilleredlimited1655688918280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tilleredlimited1655688918280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vasion1701746527592\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vasion1701746527592\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"indiecrew-studio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/indiecrew-studio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neccorporationofamerica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neccorporationofamerica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neonforge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neonforge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infinitumsa1629294824649\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infinitumsa1629294824649\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ai-opsllc1593527598862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ai-opsllc1593527598862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"54cuatro1595867609214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/54cuatro1595867609214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drzcorporation1687530635641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drzcorporation1687530635641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Sentinel.SapAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Sentinel.SapAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"active-integration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/active-integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elisity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elisity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"purplecubeinc1680669832842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/purplecubeinc1680669832842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.HybridFabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.HybridFabric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-australia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-australia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globant\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwareagusainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwareagusainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1720148908856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1720148908856\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataedo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataedo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudforttechnology1676310975446\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudforttechnology1676310975446\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"insightsoftwarecomlimited1584800919871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/insightsoftwarecomlimited1584800919871\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1689761683063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1689761683063\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bevywisenetworksllp1677848977927\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bevywisenetworksllp1677848977927\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-asperia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-asperia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"civicanorthamerica1706115853175\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/civicanorthamerica1706115853175\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mirantis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mirantis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s-ins-microsoftpartner-usa-ny-armonk-1627616993058\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s-ins-microsoftpartner-usa-ny-armonk-1627616993058\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omnissallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/omnissallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aibusinessschoolag1712156537216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aibusinessschoolag1712156537216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_gps_americas_code-with1694019817347\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_gps_americas_code-with1694019817347\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontotextad1692361256062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontotextad1692361256062\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shanghaiweilitechnologycoltd1645150733082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shanghaiweilitechnologycoltd1645150733082\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realloadptyltd1725868033842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/realloadptyltd1725868033842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cgg1698165761764\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cgg1698165761764\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cubebackupinc1662619479161\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cubebackupinc1662619479161\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collibrainctin80-09241681732799250972\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collibrainctin80-09241681732799250972\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loamics-fr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/loamics-fr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"medcurioinc1655396355237\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/medcurioinc1655396355237\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veraxai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veraxai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Security.CRED.Defender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Security.CRED.Defender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synergisttechnologyllc1718233086249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synergisttechnologyllc1718233086249\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itecosystemssolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itecosystemssolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"einmind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/einmind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stelodata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stelodata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-llc-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-llc-adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"supportedimagesllc1615494954880\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/supportedimagesllc1615494954880\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcinformatique1681216831560\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcinformatique1681216831560\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasarai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasarai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"keysighttechnologies_cyperf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/keysighttechnologies_cyperf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSStgBvt20\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIRCore.CAPSStgBvt20\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akinsit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akinsit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciphertechsinc1676666082978\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciphertechsinc1676666082978\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"suseirelandltd1692213356027\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/suseirelandltd1692213356027\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9000\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/9000\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlettpackardenterprise1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlettpackardenterprise1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dualitytechnologiesinc1673786653838\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dualitytechnologiesinc1673786653838\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"belindacz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/belindacz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohirriminc1663792273127\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohirriminc1663792273127\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestackinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestackinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyolosecurityltd1726775987480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyolosecurityltd1726775987480\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evorine1660210935094\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evorine1660210935094\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neverfailcontinuouscontrolsinc1600463582767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neverfailcontinuouscontrolsinc1600463582767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docshifter1673950324990\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/docshifter1673950324990\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datprof\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datprof\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevancelabinc1697784679917\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevancelabinc1697784679917\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HSE.Infra.Internal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HSE.Infra.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yaseensmarketltd03032025023044\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yaseensmarketltd03032025023044\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infotectsecuritypteltd1584534959776\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infotectsecuritypteltd1584534959776\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litecho1652270712947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litecho1652270712947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"criblinc1673975616879\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/criblinc1673975616879\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"supernainc1642621287664\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/supernainc1642621287664\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"acplsystemspvtltd1734432892724\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/acplsystemspvtltd1734432892724\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"siemensplmsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/siemensplmsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1685614597565\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1685614597565\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"terminusdb1606769310168\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/terminusdb1606769310168\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"keysight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/keysight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redhat1627408356675\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redhat1627408356675\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocksavagetechnologyinc1713893864282\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocksavagetechnologyinc1713893864282\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"africamediaconsortiumllc1670411800267\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/africamediaconsortiumllc1670411800267\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudriches\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudriches\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SiteRecovery.Dra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SiteRecovery.Dra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Tanium.Client\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Tanium.Client\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.RecoveryServices.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.RecoveryServices.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rightdatainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rightdatainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visokiouklimited1661943152060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visokiouklimited1661943152060\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azure-hpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azure-hpc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datamasquelimited1651546259207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datamasquelimited1651546259207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"phitr-ai-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/phitr-ai-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kCloudHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kCloudHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jinaai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jinaai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1695609141511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1695609141511\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swirlcorporation1684335149355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swirlcorporation1684335149355\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paratools-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paratools-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fosterfindlayassociateslimited1724322170979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fosterfindlayassociateslimited1724322170979\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waterflowtechnologypvtltd1729501777501\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/waterflowtechnologypvtltd1729501777501\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profeciait1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profeciait1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1650441978315\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1650441978315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numenta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numenta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codeingenierainformticasl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codeingenierainformticasl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"levelblue\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/levelblue\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shapelets1647335373345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shapelets1647335373345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"assureddataprotectioninc1667911107164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/assureddataprotectioninc1667911107164\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSExtBvt.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIRCore.CAPSExtBvt.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3mdincdbadenaliadvancedintegration1720428393061\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/3mdincdbadenaliadvancedintegration1720428393061\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinkuplabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinkuplabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidefoundation1692080730903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidefoundation1692080730903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataphion1595790857048\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataphion1595790857048\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"salient\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/salient\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphi-consulting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphi-consulting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zaintechsolutionsfz-llc1692862657242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zaintechsolutionsfz-llc1692862657242\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365Security.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365Security.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"andampgmbh1675347912177\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/andampgmbh1675347912177\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.Orchestration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.Orchestration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hexaeightopcprivatelimited1653195738074\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hexaeightopcprivatelimited1653195738074\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataevolvesolutionsopcprivatelimited1673336394359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataevolvesolutionsopcprivatelimited1673336394359\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"on2it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/on2it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vfunctiontechnologiesltd1665073911806\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vfunctiontechnologiesltd1665073911806\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"callwaretechnologiesinc1657114750733\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/callwaretechnologiesinc1657114750733\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"frizb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/frizb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vianai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vianai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cacheguardtechnologieslimited1681804059471\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cacheguardtechnologieslimited1681804059471\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"piqwanasac1670892237457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/piqwanasac1670892237457\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemceisi123456\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemceisi123456\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoviewsystemsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoviewsystemsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corememlimited1599075556346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corememlimited1599075556346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mongodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mongodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crayon-group-as-1129016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crayon-group-as-1129016\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pcloudhosting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pcloudhosting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Cirrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FleetDiagnostics.Cirrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corememlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corememlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365AzsecpackAutoconfig.CentralNamespaceConfigure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365AzsecpackAutoconfig.CentralNamespaceConfigure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moxainc1660788982930\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moxainc1660788982930\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"in4it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/in4it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"philterdllc1687189098111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/philterdllc1687189098111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginuity-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginuity-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"experollc1644352127859\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/experollc1644352127859\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"epicyclelimited1653984451703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/epicyclelimited1653984451703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"optimitiveslu1618318884537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/optimitiveslu1618318884537\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivanti-vadc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivanti-vadc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kpmglowergulflimited1744019197011\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kpmglowergulflimited1744019197011\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubilityai1599391188425\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubilityai1599391188425\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIR.RC.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIR.RC.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veripark_solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veripark_solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TeamViewer.AzureVMExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TeamViewer.AzureVMExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonatypeinc1724257499617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonatypeinc1724257499617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shardsecureinc1594847380725\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shardsecureinc1594847380725\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinetfederal1695393143380\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinetfederal1695393143380\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"komprise_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/komprise_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"praelexis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/praelexis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catswords\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catswords\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zetarisptyltd1653890360235\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zetarisptyltd1653890360235\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hostingcontrollerinc1656315491972\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hostingcontrollerinc1656315491972\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fano_labs_limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fano_labs_limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"capaxdiscovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/capaxdiscovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataeazesystemspvtltd1720620091242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataeazesystemspvtltd1720620091242\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alaiso\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alaiso\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swiftroofestimatingservicesltd1695806680945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swiftroofestimatingservicesltd1695806680945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"weidmllerinterfacegmbhcokg1593785027047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/weidmllerinterfacegmbhcokg1593785027047\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pingcapusinc1721021923990\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pingcapusinc1721021923990\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pkisolutionsllc1679597045863\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pkisolutionsllc1679597045863\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuvemnestllc1695391252715\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuvemnestllc1695391252715\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"amperecomputingllc1649288430919\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/amperecomputingllc1649288430919\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dispersiveholdingsinc1653422231259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dispersiveholdingsinc1653422231259\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neonforgellc1660679895021\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neonforgellc1660679895021\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"latentaiinc1680819096432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/latentaiinc1680819096432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies1699381160543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies1699381160543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"askforcloudllc1651766049149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/askforcloudllc1651766049149\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelprojects1681819643206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelprojects1681819643206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exadelinc1675271740487\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exadelinc1675271740487\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HSE.Infra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HSE.Infra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcorporation1687208452115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcorporation1687208452115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudframeinc1615321281795\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudframeinc1615321281795\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"impactbusinessinformationsolutions1729610964134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/impactbusinessinformationsolutions1729610964134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maya_data_ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maya_data_ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgeaiinc1716488540630\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgeaiinc1716488540630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cacheguardtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cacheguardtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orienlabsllc1678315026142\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orienlabsllc1678315026142\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"legacyboxltd1599224386505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/legacyboxltd1599224386505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentraltd1702900353613\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentraltd1702900353613\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vocallsincsro1689854055826\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vocallsincsro1689854055826\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"polverio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/polverio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureVirtualDesktop-CICD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureVirtualDesktop-CICD\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globallinkingsolutionsinc1673581558566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globallinkingsolutionsinc1673581558566\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplifier\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplifier\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"agrozgroupsdnbhd1700628095587\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/agrozgroupsdnbhd1700628095587\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunrisesoftwaregmbh1600691313341\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunrisesoftwaregmbh1600691313341\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aldercapitalllc1682703876147\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aldercapitalllc1682703876147\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathildetechnologyhongkonglimited1669113447021\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathildetechnologyhongkonglimited1669113447021\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"entrenamientoinformticoavanzadosadecv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/entrenamientoinformticoavanzadosadecv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synologyinc1715323237857\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synologyinc1715323237857\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kockpitanalyticspvtltd1645177427945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kockpitanalyticspvtltd1645177427945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appsentinelsprivatelimited1682860922767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appsentinelsprivatelimited1682860922767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dcdobrasil1651841970501\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dcdobrasil1651841970501\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OSTelemetry.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OSTelemetry.Dev\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elegantcodesolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elegantcodesolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ilinksystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ilinksystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ciq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ciq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gottaphish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gottaphish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sedetos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sedetos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cdatajapan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cdatajapan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nirvaha1688048738599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nirvaha1688048738599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubisense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"finticsas1604875530254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/finticsas1604875530254\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sorba-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sorba-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seesharpsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seesharpsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conclavecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/conclavecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nexusfrontiertechlimited1660561594678\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nexusfrontiertechlimited1660561594678\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"presciencedecisionsolutionspvtltd1717148574997\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/presciencedecisionsolutionspvtltd1717148574997\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsasecurity1687281258544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsasecurity1687281258544\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"510713407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/510713407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"developmenthub2024\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/developmenthub2024\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"motifworks-azure-apps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/motifworks-azure-apps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swisssecurityhubag1684863672907\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swisssecurityhubag1684863672907\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Tenable.NessusAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Tenable.NessusAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.Observability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.Observability\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rackspace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rackspace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"optimatechlimited1688074981368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/optimatechlimited1688074981368\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maaztechnologies1728726102718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maaztechnologies1728726102718\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.PrivateTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC.PrivateTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"n2wsoftwareinc1657117813969\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/n2wsoftwareinc1657117813969\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"risecorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/risecorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"myriadtechnologiesptyltd-2094736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/myriadtechnologiesptyltd-2094736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds1685464784065\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds1685464784065\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindbreezegmbh1657087507223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindbreezegmbh1657087507223\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sahasholdingpvtltd2024\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sahasholdingpvtltd2024\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sixninesit1663769336580\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sixninesit1663769336580\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.MeshVPN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.MeshVPN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zamanconsultancylimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zamanconsultancylimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visionaize\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visionaize\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nets1664415757656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nets1664415757656\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OSTelemetry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OSTelemetry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graxinc1618409175503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graxinc1618409175503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ghes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ghes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comaticag1663321091033\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comaticag1663321091033\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buildpiper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/buildpiper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netprotrinity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netprotrinity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"braincube\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/braincube\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"compsolglobalinc1634128357503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/compsolglobalinc1634128357503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caloudicorporation1685526807944\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/caloudicorporation1685526807944\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cogstacklimited1697736441051\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cogstacklimited1697736441051\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcircleinc1727251401364\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcircleinc1727251401364\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalynxptyltd1629960622072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalynxptyltd1629960622072\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"precisoftlimitada1689031175058\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/precisoftlimitada1689031175058\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pcigeomaticsenterprisesinc1619717739720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pcigeomaticsenterprisesinc1619717739720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Xitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Xitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reductsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reductsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automonxltd1601306138716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automonxltd1601306138716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1touchio1627313187723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1touchio1627313187723\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tooljetsolutioninc1679496832216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tooljetsolutioninc1679496832216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sigsenztechnologiespvtltd1646072485417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sigsenztechnologiespvtltd1646072485417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maryamsmarket\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maryamsmarket\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genzeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genzeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"distylai1705447332869\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/distylai1705447332869\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sprinxsystemsas1582034211947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sprinxsystemsas1582034211947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Chaos.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Chaos.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reductstorellc1689939980623\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reductstorellc1689939980623\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"superhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/superhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thenielsencompany1584587184924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thenielsencompany1584587184924\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hexagonmanufacturingintelligence1586372099540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hexagonmanufacturingintelligence1586372099540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaleaiinc1703010376105\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaleaiinc1703010376105\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"walacorcorporation1689871416413\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/walacorcorporation1689871416413\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"in-biotprivatelimited1592297269046\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/in-biotprivatelimited1592297269046\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.ProxyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.ProxyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1672212957491\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1672212957491\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peplinkpepwavelimited1664796707280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/peplinkpepwavelimited1664796707280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tribe29gmbh1665582614827\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tribe29gmbh1665582614827\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"surepassidcorp1620848967359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/surepassidcorp1620848967359\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"businessimagingsystemsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/businessimagingsystemsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdomesolutionsprivatelimited1708671149622\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdomesolutionsprivatelimited1708671149622\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacbytelimited1655770796006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacbytelimited1655770796006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ansit-comgmbh1688555996538\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ansit-comgmbh1688555996538\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"c-phrasetechnologiesswedenab1674654373407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/c-phrasetechnologiesswedenab1674654373407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"100101010000\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/100101010000\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1654668554142\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1654668554142\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semanticai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semanticai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"coalescesolutionsllc1649284093713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/coalescesolutionsllc1649284093713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brainwaredwc-llc1669095990764\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brainwaredwc-llc1669095990764\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-isv-eng\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-isv-eng\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bynetdatacommunicationsltd1658928488221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bynetdatacommunicationsltd1658928488221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cteranetworksltd1651947437632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cteranetworksltd1651947437632\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerotrustedaillc1672945594749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerotrustedaillc1672945594749\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consoleworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/consoleworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"google-cloud-alloydb-omni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/google-cloud-alloydb-omni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperionsystemsengineeringltd1692960786190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperionsystemsengineeringltd1692960786190\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubika\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubika\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netticacorporation1696242544587\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netticacorporation1696242544587\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureStack.HCI.Alerts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureStack.HCI.Alerts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitedsecurityprovidersag1683803318933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitedsecurityprovidersag1683803318933\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"answerrocket1683647523767\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/answerrocket1683647523767\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"schmitzrzconsultgmbh1654870156925\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/schmitzrzconsultgmbh1654870156925\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft.o3fnet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft.o3fnet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Chef.Bootstrap.WindowsAzure/artifacttypes/vmimage/offers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvQ2hlZi5Cb290c3RyYXAuV2luZG93c0F6dXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Azure.Security.WindowsAttestation/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLlNlY3VyaXR5LldpbmRvd3NBdHRlc3RhdGlvbi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "eab538fb-9a5f-4ccd-bd97-df10e2c253cf" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f09851f4-75cb-4db1-a687-68ce1f1ec030" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "df633517-e94f-412e-8900-9d698238d40e_131746216718003997" + "7e8184a8-6a18-453f-8b53-6966b8c83c36_133880574819450503" ], "x-ms-request-id": [ - "f3b8e683-33b0-4fd6-908c-157ac47cb36b" - ], - "Cache-Control": [ - "no-cache" + "890758cb-3c8a-43fc-af66-d6c87c5c6845" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/60e04158-b59d-4b59-95c7-0c398921f391" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7e5426b6-c2e5-42dd-b5c3-728eff7c8036" + "b7491eba-7d6f-47ad-8488-a153b41558be" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012622Z:7e5426b6-c2e5-42dd-b5c3-728eff7c8036" + "EASTUS2:20250602T214813Z:b7491eba-7d6f-47ad-8488-a153b41558be" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A63AEB9774D247979BC234F81FCF8605 Ref B: MNZ221060608045 Ref C: 2025-06-02T21:48:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:22 GMT" + "Mon, 02 Jun 2025 21:48:12 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Dans.Windows.App/artifacttypes/vmimage/offers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvRGFucy5XaW5kb3dzLkFwcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.WindowsAdminCenter.Test/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3NBZG1pbkNlbnRlci5UZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bdc9df91-4e32-4ea0-9c80-c7ab29392bfa" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "34a67222-e6b7-406b-8df5-f5d2285703f0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "00e938a3-bee3-4b79-ab67-96b80cb0f2c5_131695516473688580" + "787fdfda-3b79-465d-bf7d-5998a250dccf_133899977342605241" ], "x-ms-request-id": [ - "0c53cd4b-33a8-451f-9c77-97fc59927582" - ], - "Cache-Control": [ - "no-cache" + "fa01b83d-5121-4222-9ce0-26a5ee2ecf23" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c117483c-aca5-4035-95b3-d7bc2c194215" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "5f44a2f7-d949-4a89-aa20-a6fe6bb17b2f" + "03b427fd-aa81-4a95-8bf1-aa09f00b9aaf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012622Z:5f44a2f7-d949-4a89-aa20-a6fe6bb17b2f" + "EASTUS:20250602T214813Z:03b427fd-aa81-4a95-8bf1-aa09f00b9aaf" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B2378314FCE44A798B35F04468A63A8 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:48:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:22 GMT" + "Mon, 02 Jun 2025 21:48:12 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Dans3.Windows.App/artifacttypes/vmimage/offers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvRGFuczMuV2luZG93cy5BcHAvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/SentinelOne.WindowsExtension.Test/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvU2VudGluZWxPbmUuV2luZG93c0V4dGVuc2lvbi5UZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "adba0302-a46b-4175-ae43-255ec1c96c3c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b65243a0-7762-45d5-9def-5ab7a81762f3" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b395cb54-2867-45f9-8274-c09f4b646834_131681403020548071" + "7a6b917d-87e4-400c-b1e5-75d6370352a0_133898297719451328" ], "x-ms-request-id": [ - "3e3d5cd7-7ccb-40cb-abf7-979260bbbe23" - ], - "Cache-Control": [ - "no-cache" + "b52d92a2-ac33-4446-a1e3-80da65858185" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8895f851-9ba4-405d-bc2a-930748632b70" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "6e5707da-3edc-48ac-bb76-b9f647d349f9" + "c1f11055-bed2-4f68-87b6-e552522cdb36" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012622Z:6e5707da-3edc-48ac-bb76-b9f647d349f9" + "EASTUS:20250602T214813Z:c1f11055-bed2-4f68-87b6-e552522cdb36" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 515775D25B8543DB8C2A7F1BDC38EA47 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:48:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:22 GMT" + "Mon, 02 Jun 2025 21:48:12 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Azure.WindowsFabric.Test/artifacttypes/vmimage/offers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLldpbmRvd3NGYWJyaWMuVGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Chef.Bootstrap.WindowsAzure/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvQ2hlZi5Cb290c3RyYXAuV2luZG93c0F6dXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "99d15f6a-882f-42f4-a2ee-ff1fa88f10cc" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "10379519-cf99-4093-8c29-7f70e7d64062" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "df633517-e94f-412e-8900-9d698238d40e_133838822608884411" ], "x-ms-request-id": [ - "b7222321-41b9-48b8-9350-3f266b183ef7" - ], - "Cache-Control": [ - "no-cache" + "13f466bf-41dc-45b0-9815-435cbb1d662f" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/caae4bf8-826d-4c8f-8104-153e8a7f1f3e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c0745bf4-0248-4c5b-975f-8c881729645f" + "38cd8bf6-0589-44b4-b62a-2c517b9b918d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012623Z:c0745bf4-0248-4c5b-975f-8c881729645f" + "EASTUS2:20250602T214813Z:38cd8bf6-0589-44b4-b62a-2c517b9b918d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5F93EC56C758440E92370EDB3FDFEF4D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:48:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:22 GMT" + "Mon, 02 Jun 2025 21:48:12 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Windows.AzureRemoteApp.Test/artifacttypes/vmimage/offers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MuQXp1cmVSZW1vdGVBcHAuVGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.WindowsAzure.Compute/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3NBenVyZS5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ac9cc503-945a-4cfd-a864-ecc0f23911dc" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "37582b01-d1d1-4dab-849c-23aab21cfecb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "557467d5-949f-4019-adce-8f2068dea71b" - ], - "Cache-Control": [ - "no-cache" + "37b15685-658b-4c64-ad48-d27a690d2995" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/74492b80-e428-4a66-9e94-db996c114f74" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "5e826d13-ba82-46c8-b139-d1093fe52766" + "3647609e-46e5-4722-a758-f131ed8a0993" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012623Z:5e826d13-ba82-46c8-b139-d1093fe52766" + "EASTUS2:20250602T214813Z:3647609e-46e5-4722-a758-f131ed8a0993" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6FF31461C28049F9A70BBB796E7C022B Ref B: MNZ221060608017 Ref C: 2025-06-02T21:48:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:23 GMT" + "Mon, 02 Jun 2025 21:48:13 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Windows.RemoteDesktop/artifacttypes/vmimage/offers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MuUmVtb3RlRGVza3RvcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.VisualStudio.WindowsAzure.DevTest/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlZpc3VhbFN0dWRpby5XaW5kb3dzQXp1cmUuRGV2VGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d046d42e-b3b8-4548-8f52-108c469aaafc" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5e058795-cd3c-4a47-8219-0f63fefc22d8" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c57ddea9-8784-4870-80a3-5a77f5e7cd56_131650733104140736" + "14f8a767-c8fe-422f-a848-a3b2ee3ae036_133897270518622060" ], "x-ms-request-id": [ - "ac5c17b4-341f-4230-bf99-0dadb7e3850c" - ], - "Cache-Control": [ - "no-cache" + "02d69e23-63de-4a64-a617-8c481d7fa368" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/47c51e5e-4866-4ff8-b29e-247c9b7941d0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "4d5b5d6f-34de-4450-b45c-5cd3aa9c2d03" + "d8fd243d-6aa0-4c23-aafd-4e408802304f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012623Z:4d5b5d6f-34de-4450-b45c-5cd3aa9c2d03" + "EASTUS:20250602T214813Z:d8fd243d-6aa0-4c23-aafd-4e408802304f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E47F803D6E834FE3B448BB5EFB5AE927 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:48:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:23 GMT" + "Mon, 02 Jun 2025 21:48:13 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.WindowsAzure.Compute/artifacttypes/vmimage/offers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3NBenVyZS5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Windows.Azure.Extensions/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MuQXp1cmUuRXh0ZW5zaW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7cae6401-10d8-4620-9f7e-f2ea50807960" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "2d083818-6bf6-446e-8b8b-f53e5031295d" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "6ffec9fb-a7ec-4331-a712-8dd39454d51e_133862850085267493" ], "x-ms-request-id": [ - "7fdf7015-2545-4722-8c00-472011689a81" - ], - "Cache-Control": [ - "no-cache" + "4ac5c9d3-fcbd-42ac-8e90-055878621687" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4e0dec50-ca16-478a-8de2-c8d47e352ceb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f9802f4a-0d28-4729-828d-27668e71aa19" + "9cb03294-5042-4d45-82bb-548304c62392" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012623Z:f9802f4a-0d28-4729-828d-27668e71aa19" + "EASTUS:20250602T214814Z:9cb03294-5042-4d45-82bb-548304c62392" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9C5807511E524AF18044347B9B3433F1 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:48:14Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:23 GMT" + "Mon, 02 Jun 2025 21:48:13 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "28a4a0d4-d34e-4933-8355-3858a4b0c382" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "9ce20f77-3e0d-4eca-933a-6fdd9c34097d" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corevmtestoffer04\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/corevmtestoffer04\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Windows-10\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "517" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "68165dee-c68c-4a63-81b6-5d4473e07143" - ], - "Cache-Control": [ - "no-cache" + "2e44b6f0-60a7-43e9-a33d-258feac742a8" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/61e78c91-28d5-4b65-9962-2aeed4a9e7e3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f7d15c20-a274-4c9a-b5b1-716645682f1d" + "8ddb61fd-a4db-4599-9d2a-b77f4b53a7fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012623Z:f7d15c20-a274-4c9a-b5b1-716645682f1d" + "EASTUS2:20250602T214814Z:8ddb61fd-a4db-4599-9d2a-b77f4b53a7fa" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8949D6CDEAE04C0192B833615055E276 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:48:14Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:23 GMT" + "Mon, 02 Jun 2025 21:48:13 GMT" + ], + "Content-Length": [ + "2363" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"office-365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Windows-10\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-10-20h2-vhd-client-prod-stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-10-20h2-vhd-client-prod-stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-11\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-ent-cpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows10preview\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows10preview\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows11preview\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows11preview-arm64\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/corevmtestoffer04/skus?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb3Jldm10ZXN0b2ZmZXIwNC9za3VzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "473001a1-dece-4f17-ae97-c364c094bec1" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "4928cbbe-7353-4894-9deb-de76be1e99e9" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corevmtestplan\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/corevmtestoffer04/Skus/corevmtestplan\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "284" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9999,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "de40cf32-4573-4b7a-825f-d3d2baa57264" - ], - "Cache-Control": [ - "no-cache" + "6314fcd3-233d-4cc5-94ee-72388628ca89" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4afc24d6-4183-49b3-8463-0082675cf058" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "49feb408-a144-44cf-963f-49d7d71d0d01" + "3368b8dc-f0d1-4f73-8770-4111991397de" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012623Z:49feb408-a144-44cf-963f-49d7d71d0d01" + "EASTUS2:20250602T214814Z:3368b8dc-f0d1-4f73-8770-4111991397de" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7C66538B33074829893E8F961B56A505 Ref B: MNZ221060608033 Ref C: 2025-06-02T21:48:14Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:23 GMT" + "Mon, 02 Jun 2025 21:48:13 GMT" + ], + "Content-Length": [ + "7315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1903-evd-o365pp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/1903-evd-o365pp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-evd-o365pp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/19h2-evd-o365pp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-evd-o365pp-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/19h2-evd-o365pp-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-evd-o365pp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/20h1-evd-o365pp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-evd-o365pp-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/20h1-evd-o365pp-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-evd-o365pp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/20h2-evd-o365pp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-evd-o365pp-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/20h2-evd-o365pp-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-evd-o365pp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/21h1-evd-o365pp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-evd-o365pp-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/21h1-evd-o365pp-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-evd-o365pp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/rs5-evd-o365pp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-evd-o365pp-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/rs5-evd-o365pp-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-avd-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-21h2-avd-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-avd-m365-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-21h2-avd-m365-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-avd-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-avd-m365-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-22h2-avd-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-22h2-avd-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-avd-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-23h2-avd-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-24h2-avd-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-24h2-avd-m365\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/corevmtestoffer04/skus/corevmtestplan/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb3Jldm10ZXN0b2ZmZXIwNC9za3VzL2NvcmV2bXRlc3RwbGFuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/1903-evd-o365pp/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvMTkwMy1ldmQtbzM2NXBwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "79677b7e-b9ef-4877-9988-91db77d241a3" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "0103fe67-127e-41df-b4a8-3d7a9a75cc8b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "065b5c21-0399-4a94-b1c2-1f48d3ec9fdb" - ], - "Cache-Control": [ - "no-cache" + "62fc71c3-9b22-43a9-bea3-5691b0841bd4" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f2c9117d-c695-4ffa-a588-e0c4055a4b30" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "37965858-5d09-4752-9212-0ac2ca069c9c" + "b9d14aa9-e15e-4a74-9ded-4130f3b819c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012624Z:37965858-5d09-4752-9212-0ac2ca069c9c" + "EASTUS2:20250602T214814Z:b9d14aa9-e15e-4a74-9ded-4130f3b819c8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C5B8B6F663AB4779804FFEC4127CCCB8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:48:14Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:23 GMT" + "Mon, 02 Jun 2025 21:48:14 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/19h2-evd-o365pp/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvMTloMi1ldmQtbzM2NXBwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "443c1f5c-ae8e-4dfd-a9f6-108e6592a857" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "e0558e05-ee7e-4179-b1b8-1a9ff19ea043" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RS3-Pro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/RS3-Pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RS3-ProN\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/RS3-ProN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rs4-pro\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rs4-pron\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pron\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "1047" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "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": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "5f659d80-8cf2-4938-8949-5f2bf3a8fe89" + "3455692b-19e6-4fa4-be67-2fa12ccaa78c" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/43a4df02-b8ba-4a1c-b556-8770a1943bdc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "0cf520de-23b9-487b-bb7c-41d41886567a" + "52c51a6e-fe9e-4d00-b240-1f32d7318405" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012624Z:0cf520de-23b9-487b-bb7c-41d41886567a" + "EASTUS:20250602T214814Z:52c51a6e-fe9e-4d00-b240-1f32d7318405" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7014116342C44DE0A9AA64E3BFC79058 Ref B: MNZ221060609047 Ref C: 2025-06-02T21:48:14Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:24 GMT" + "Mon, 02 Jun 2025 21:48:14 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/RS3-Pro/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvUlMzLVByby92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/19h2-evd-o365pp-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvMTloMi1ldmQtbzM2NXBwLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "abb5e141-5119-4b8c-b964-50570e73d0ee" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c62f728e-4db5-4b38-8de8-71aaf6ec1741" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"16299.431.41\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/RS3-Pro/Versions/16299.431.41\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"16299.492.43\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/RS3-Pro/Versions/16299.492.43\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "577" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7c3244c3-b675-49c3-ab5b-9bac8b317798" + "8b0b95da-465b-42f0-918f-dc756b2e9cc0" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e4262fd7-616e-440a-ba77-c668999b7714" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d3146196-aacf-4643-bf0a-19bb31034a70" + "d56a6121-3d7c-4e96-96b0-2382bf04a486" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012624Z:d3146196-aacf-4643-bf0a-19bb31034a70" + "EASTUS:20250602T214814Z:d56a6121-3d7c-4e96-96b0-2382bf04a486" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 819EBDE31C894657B131C9FCE5AAB909 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:48:14Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:24 GMT" + "Mon, 02 Jun 2025 21:48:14 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/RS3-Pro/versions/16299.431.41?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvUlMzLVByby92ZXJzaW9ucy8xNjI5OS40MzEuNDE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/20h1-evd-o365pp/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvMjBoMS1ldmQtbzM2NXBwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "97d9f7a2-f48c-4a97-9205-4f38b91c52ad" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "ebe8df28-a978-48cb-a023-98daa08a528b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"16299.431.41\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/RS3-Pro/Versions/16299.431.41\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "391" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43996" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "cf3407b4-b507-4166-aaf8-3ea850dff46a" + "9e0c594a-64a1-4a53-8344-11e2eb5e1758" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b5901595-97d1-4bce-bd0c-8e48680e04a8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9dc517de-577b-409e-899d-3d662bfdcaea" + "6dff137c-1d87-4a60-9fbb-8a5e47ba9ce1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012624Z:9dc517de-577b-409e-899d-3d662bfdcaea" + "EASTUS2:20250602T214815Z:6dff137c-1d87-4a60-9fbb-8a5e47ba9ce1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2ED11D0586E84FABBD856BB5E47DA21A Ref B: MNZ221060619009 Ref C: 2025-06-02T21:48:15Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:24 GMT" + "Mon, 02 Jun 2025 21:48:14 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/RS3-Pro/versions/16299.492.43?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvUlMzLVByby92ZXJzaW9ucy8xNjI5OS40OTIuNDM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/20h1-evd-o365pp-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvMjBoMS1ldmQtbzM2NXBwLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c31c11fc-4cc0-4be8-8e65-42190ecc45aa" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "9054e9cd-15f2-4b05-baa6-9d3787370f6c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"16299.492.43\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/RS3-Pro/Versions/16299.492.43\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "391" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43995" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "f0f4d99c-d64c-45f8-8775-e2aea299da08" + "b24eeb3a-1e6e-431a-8c20-2617c182cd19" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0dcf26b8-cbc0-404c-b7a3-cb273bd2c4f8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a9e85898-a463-4056-899e-8ee2ad1369fc" + "8c3e1e3d-3be0-4057-b93e-b83e4ba906c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012624Z:a9e85898-a463-4056-899e-8ee2ad1369fc" + "EASTUS:20250602T214815Z:8c3e1e3d-3be0-4057-b93e-b83e4ba906c6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 134C4D7D5D4545559295AD0D3A47AE54 Ref B: MNZ221060609037 Ref C: 2025-06-02T21:48:15Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:24 GMT" + "Mon, 02 Jun 2025 21:48:14 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/RS3-ProN/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvUlMzLVByb04vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/20h2-evd-o365pp/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvMjBoMi1ldmQtbzM2NXBwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3f1106c9-68f3-414e-be01-dca54c51a47d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "69c6200a-caa2-4247-912b-fa2189e09858" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"16299.431.41\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/RS3-ProN/Versions/16299.431.41\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"16299.492.43\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/RS3-ProN/Versions/16299.492.43\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "579" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43994" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "3565b85f-2bde-40f4-b73b-5d53da6d4982" + "76a7da79-3237-485f-a0f4-887af170a19f" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/754dc275-5ea1-4a5a-a3a2-c8a0297e2b26" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "981b459d-10c5-402e-b8df-6eae97183434" + "e15aa8d9-e3ab-49cd-9ec3-9f0eab6dcede" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012625Z:981b459d-10c5-402e-b8df-6eae97183434" + "EASTUS:20250602T214815Z:e15aa8d9-e3ab-49cd-9ec3-9f0eab6dcede" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CB489F409D7C422596C200DF000823DC Ref B: MNZ221060609007 Ref C: 2025-06-02T21:48:15Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:24 GMT" + "Mon, 02 Jun 2025 21:48:14 GMT" + ], + "Content-Length": [ + "613" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230411\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/20h2-evd-o365pp/Versions/19042.2846.230411\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/20h2-evd-o365pp/Versions/19042.2965.230509\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/RS3-ProN/versions/16299.431.41?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvUlMzLVByb04vdmVyc2lvbnMvMTYyOTkuNDMxLjQxP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/20h2-evd-o365pp/versions/19042.2846.230411?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvMjBoMi1ldmQtbzM2NXBwL3ZlcnNpb25zLzE5MDQyLjI4NDYuMjMwNDExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8d673d5a-62a5-4d61-8b86-3c336a9f944c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c8c7c81c-bbd3-4cc5-8631-c9e273173722" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"16299.431.41\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/RS3-ProN/Versions/16299.431.41\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "392" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "e6174d11-0399-4591-b991-a714bb7b8cc0" - ], - "Cache-Control": [ - "no-cache" + "00566037-6163-464b-8162-8fa1cca6df83" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/306cd51c-d170-4f31-9585-e25ac6403d26" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d84f7e8d-b6b7-46a3-ac22-f5e4e5229385" + "c4283fff-5fbc-4ff8-b87a-3435c2334af7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012625Z:d84f7e8d-b6b7-46a3-ac22-f5e4e5229385" + "EASTUS2:20250602T214815Z:c4283fff-5fbc-4ff8-b87a-3435c2334af7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9CB93250FCD2475EA1CE3F8616B817E4 Ref B: MNZ221060609031 Ref C: 2025-06-02T21:48:15Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:24 GMT" + "Mon, 02 Jun 2025 21:48:15 GMT" + ], + "Content-Length": [ + "1045" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230411\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/20h2-evd-o365pp/Versions/19042.2846.230411\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/RS3-ProN/versions/16299.492.43?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvUlMzLVByb04vdmVyc2lvbnMvMTYyOTkuNDkyLjQzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/20h2-evd-o365pp/versions/19042.2965.230509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvMjBoMi1ldmQtbzM2NXBwL3ZlcnNpb25zLzE5MDQyLjI5NjUuMjMwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b213316a-a30e-4a43-83d5-2e80d441e95d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "21a9dd8e-c667-4429-a0d0-24261349210a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"16299.492.43\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/RS3-ProN/Versions/16299.492.43\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "392" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "e4020f48-38ee-43e8-a2e8-b1c826af4f3b" + "70f71a31-1078-4bb6-a1fc-7e735d89609e" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9d46922a-52cb-47e6-a099-3ea27ebdbca4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "dac2b4f7-b7c8-4b3b-ba79-b307edcb6bdf" + "c95af988-7672-42a8-968e-f4f370294c5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012625Z:dac2b4f7-b7c8-4b3b-ba79-b307edcb6bdf" + "EASTUS:20250602T214815Z:c95af988-7672-42a8-968e-f4f370294c5e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0880BF239E4D432385834DE1127D98C3 Ref B: MNZ221060618037 Ref C: 2025-06-02T21:48:15Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:25 GMT" + "Mon, 02 Jun 2025 21:48:15 GMT" + ], + "Content-Length": [ + "1045" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/20h2-evd-o365pp/Versions/19042.2965.230509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs4-pro/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM0LXByby92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/20h2-evd-o365pp-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvMjBoMi1ldmQtbzM2NXBwLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "93a909bc-ab8c-4c40-9d19-d7fc9075dac9" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c3c795ff-4bd2-44e5-bcc0-17abadda0d79" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17134.112.43\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pro/Versions/17134.112.43\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17134.48.41\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pro/Versions/17134.48.41\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "575" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "6a17e376-44ba-436b-9554-a32351d004eb" - ], - "Cache-Control": [ - "no-cache" + "0c26b336-0509-4074-9a68-be95d559ab4d" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/79aed398-91ba-49cc-90ff-a10216032e1f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "70007cec-7b53-4027-9360-5b870eed232b" + "a26dedcb-a5a0-4696-90d0-0cb6809d683c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012625Z:70007cec-7b53-4027-9360-5b870eed232b" + "EASTUS:20250602T214815Z:a26dedcb-a5a0-4696-90d0-0cb6809d683c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4F855AAFD24C49F593E885D465C87D13 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:48:15Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:25 GMT" + "Mon, 02 Jun 2025 21:48:15 GMT" + ], + "Content-Length": [ + "619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230411\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/20h2-evd-o365pp-g2/Versions/19042.2846.230411\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/20h2-evd-o365pp-g2/Versions/19042.2965.230509\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs4-pro/versions/17134.112.43?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM0LXByby92ZXJzaW9ucy8xNzEzNC4xMTIuNDM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/20h2-evd-o365pp-g2/versions/19042.2846.230411?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvMjBoMi1ldmQtbzM2NXBwLWcyL3ZlcnNpb25zLzE5MDQyLjI4NDYuMjMwNDExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "beef065b-f070-4ad9-beb1-6fbba45d9101" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c76cf6dd-eeb7-4a0a-a144-4db91b56e0b3" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17134.112.43\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pro/Versions/17134.112.43\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "391" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7c1f690b-799f-46d2-8916-2cf66ad273f1" + "9519a8d7-5c61-4413-b832-94594046f283" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/36db2e2f-8d35-49c1-bf61-c30829835882" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "af371874-2658-40d5-8036-511b9b674fa9" + "3584b524-d09e-4771-b498-ccd2d373020d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012625Z:af371874-2658-40d5-8036-511b9b674fa9" + "EASTUS:20250602T214815Z:3584b524-d09e-4771-b498-ccd2d373020d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A76F38569426467999E2B62006A2332F Ref B: MNZ221060619047 Ref C: 2025-06-02T21:48:15Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:25 GMT" + "Mon, 02 Jun 2025 21:48:14 GMT" + ], + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230411\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/20h2-evd-o365pp-g2/Versions/19042.2846.230411\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs4-pro/versions/17134.48.41?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM0LXByby92ZXJzaW9ucy8xNzEzNC40OC40MT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/20h2-evd-o365pp-g2/versions/19042.2965.230509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvMjBoMi1ldmQtbzM2NXBwLWcyL3ZlcnNpb25zLzE5MDQyLjI5NjUuMjMwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a9a6b785-d370-4245-9016-c5559cfa9d91" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "29db4d1d-7b72-4f6f-93bf-60abd5c6a4ee" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17134.48.41\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pro/Versions/17134.48.41\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "389" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73996" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "5f8d11dc-5827-433e-b1e9-e6f71fd5ed25" - ], - "Cache-Control": [ - "no-cache" + "aa72272d-f2ba-4e6b-b258-a459f3309d6d" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/da3ab859-63df-46c8-a952-9bb5c20a4f64" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "fd6d10cb-f0f8-4b8e-934e-55cf86a7f1eb" + "d3001783-9007-4722-86fa-6127d967dec6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012625Z:fd6d10cb-f0f8-4b8e-934e-55cf86a7f1eb" + "EASTUS:20250602T214816Z:d3001783-9007-4722-86fa-6127d967dec6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 428C958D7ED94FE8BA6322E52A063DE4 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:48:15Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:25 GMT" + "Mon, 02 Jun 2025 21:48:15 GMT" + ], + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/20h2-evd-o365pp-g2/Versions/19042.2965.230509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs4-pron/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM0LXByb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/21h1-evd-o365pp/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvMjFoMS1ldmQtbzM2NXBwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b78761c3-3cea-4467-b0d7-196069897945" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "88329e19-0976-48f3-8a80-305388705021" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17134.112.43\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pron/Versions/17134.112.43\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17134.48.41\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pron/Versions/17134.48.41\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "577" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "1354132f-2292-46ff-b9e8-48e06e016738" + "d06f97ef-160f-4f7f-a512-836a831666f9" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/72f56bfc-d412-4dfa-9b7d-c53eeba7da1d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e546c520-7e89-4f8b-b46e-7bb86626667d" + "5b4c263f-f018-4a2d-8602-c667b52df7d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012625Z:e546c520-7e89-4f8b-b46e-7bb86626667d" + "EASTUS:20250602T214816Z:5b4c263f-f018-4a2d-8602-c667b52df7d7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E4FE0B24227147E9A5C90386C48E0BC4 Ref B: MNZ221060618029 Ref C: 2025-06-02T21:48:16Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:25 GMT" + "Mon, 02 Jun 2025 21:48:15 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs4-pron/versions/17134.112.43?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM0LXByb24vdmVyc2lvbnMvMTcxMzQuMTEyLjQzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/21h1-evd-o365pp-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvMjFoMS1ldmQtbzM2NXBwLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "43fe6dae-1d9e-494a-b3e9-8831662b3752" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8e560504-761a-4a2e-b4ec-67b806aacc21" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17134.112.43\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pron/Versions/17134.112.43\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "392" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43991" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9cdf904c-e2df-44e6-9546-c90ef089bfde" + "cc64100b-d488-4c09-bee0-061e2a89e0a1" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b209d049-d01e-4077-bed8-95e94f617631" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "449a90af-87b8-4dc3-bad6-b7424352406f" + "6ed66e76-934d-44bf-beee-da192863609b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012626Z:449a90af-87b8-4dc3-bad6-b7424352406f" + "EASTUS:20250602T214816Z:6ed66e76-934d-44bf-beee-da192863609b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5FEEEA74C84242A98D0E99440D5AB414 Ref B: MNZ221060608053 Ref C: 2025-06-02T21:48:16Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:25 GMT" + "Mon, 02 Jun 2025 21:48:15 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs4-pron/versions/17134.48.41?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM0LXByb24vdmVyc2lvbnMvMTcxMzQuNDguNDE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/rs5-evd-o365pp/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvcnM1LWV2ZC1vMzY1cHAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7d00fc6f-d32f-424a-a6a1-00112a84c846" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f6e20b3f-077d-43dc-ac71-0f81774ba08e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17134.48.41\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pron/Versions/17134.48.41\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "390" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43990" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ea53b42c-4086-44d3-88ec-d14961d9cf20_131719446558205916" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2d252d2c-62b3-45bb-b788-de9e54d3b8cd" + "7e82be48-f0f1-4380-8b25-3a504a152e6f" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/09020420-fff9-482a-a49e-02aeb3fd79fe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "5a97f427-8c60-40a4-9f25-292ade2f3caf" + "489f9334-2fd3-4e7a-b956-68877e02d9c9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012626Z:5a97f427-8c60-40a4-9f25-292ade2f3caf" + "EASTUS:20250602T214816Z:489f9334-2fd3-4e7a-b956-68877e02d9c9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3D8E5D29F9294008844EB8C040E0A596 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:48:16Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:26 GMT" + "Mon, 02 Jun 2025 21:48:16 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/rs5-evd-o365pp-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvcnM1LWV2ZC1vMzY1cHAtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "89384361-f985-4b27-af95-142ed882ef67" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8a72e5e0-e12b-467c-89df-6577d17f85a6" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Windows-HUB\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/Windows-HUB\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServerSemiAnnual\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "784" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "b325ca7d-8a0a-4311-bd8a-5daa97ed214a" + "0cca230e-a39b-4817-a6c8-f215c7bf56b9" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a16caa94-c461-408a-b3ac-26d008b66382" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b46d0e02-f95b-4979-b61f-373ff45cea0f" + "1d1e5d37-c2b0-46a5-8438-512448a065fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012626Z:b46d0e02-f95b-4979-b61f-373ff45cea0f" + "EASTUS2:20250602T214816Z:1d1e5d37-c2b0-46a5-8438-512448a065fd" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F13E1118902C495DBF21330068E006A7 Ref B: MNZ221060608033 Ref C: 2025-06-02T21:48:16Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:26 GMT" + "Mon, 02 Jun 2025 21:48:15 GMT" + ], + "Content-Length": [ + "633" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2114.2108100754\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/rs5-evd-o365pp-g2/Versions/17763.2114.2108100754\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2183.2109150158\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/rs5-evd-o365pp-g2/Versions/17763.2183.2109150158\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/rs5-evd-o365pp-g2/versions/17763.2114.2108100754?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvcnM1LWV2ZC1vMzY1cHAtZzIvdmVyc2lvbnMvMTc3NjMuMjExNC4yMTA4MTAwNzU0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "646f38a0-0f9f-4828-ada8-0d4af1a547b7" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "fc9a21ab-a1db-411f-8430-323c4ca4cd5e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Windows-HUB\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/Windows-HUB\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServerSemiAnnual\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "784" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "e7743570-9291-4af1-8cbe-ede1fc4ed245" - ], - "Cache-Control": [ - "no-cache" + "f381b1a0-5d36-48a7-9701-ab0d6e55fee5" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c8c0f48c-43ce-4f49-b00e-2fb52512b757" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14761" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e74d3eb4-4015-440d-a5bb-8cf24d338679" + "827e3e0d-472c-427e-9004-5c71b2439cbe" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012702Z:e74d3eb4-4015-440d-a5bb-8cf24d338679" + "EASTUS2:20250602T214816Z:827e3e0d-472c-427e-9004-5c71b2439cbe" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5B9BB13651A0440ABC3928787AF19EBD Ref B: MNZ221060610027 Ref C: 2025-06-02T21:48:16Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:01 GMT" + "Mon, 02 Jun 2025 21:48:16 GMT" + ], + "Content-Length": [ + "903" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2114.2108100754\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/rs5-evd-o365pp-g2/Versions/17763.2114.2108100754\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/Windows-HUB/skus?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3MtSFVCL3NrdXM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/rs5-evd-o365pp-g2/versions/17763.2183.2109150158?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvcnM1LWV2ZC1vMzY1cHAtZzIvdmVyc2lvbnMvMTc3NjMuMjE4My4yMTA5MTUwMTU4P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "912e7d7e-6414-4fcc-98bb-4233946b7882" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "869ab4c6-9723-4cc8-9843-261966d5db32" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Windows-10-HUB\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/Windows-HUB/Skus/Windows-10-HUB\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "277" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73994" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "255b5df9-5781-47c6-b5f9-35291731245b" + "d55acc25-43e2-498c-b304-58e1dbb9c63e" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a44d8b7c-2693-4de7-bc7c-f75115c21b1e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "67edd212-7d97-4edc-92e0-ff4a04af6bc8" + "d29c72a5-0315-4303-b29c-21dd3ef3e68a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012626Z:67edd212-7d97-4edc-92e0-ff4a04af6bc8" + "EASTUS:20250602T214816Z:d29c72a5-0315-4303-b29c-21dd3ef3e68a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4F585EF9EBC74D0FAFFCBE9C540E9C5D Ref B: MNZ221060618023 Ref C: 2025-06-02T21:48:16Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:26 GMT" + "Mon, 02 Jun 2025 21:48:16 GMT" + ], + "Content-Length": [ + "903" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2183.2109150158\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/rs5-evd-o365pp-g2/Versions/17763.2183.2109150158\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/Windows-HUB/skus?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3MtSFVCL3NrdXM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-21h2-avd-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjFoMi1hdmQtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e9c6a06e-a649-4cbf-8caf-171c066f56d7" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "2ee81de0-1d9e-4ce2-8489-01b2816b7481" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Windows-10-HUB\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/Windows-HUB/Skus/Windows-10-HUB\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "277" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15988,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "67619299-03ea-46a9-92bf-0cb9b1dd09f3" - ], - "Cache-Control": [ - "no-cache" + "4924a268-08a8-4e7f-a5b0-f82f333a90e4" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/18eabd7d-0fc0-4ee9-8bf6-580d100678ae" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14760" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "4c80db8d-79b7-4f32-af6e-12a164e3bbcf" + "959792e4-acd3-426b-beca-da7f2c6a9dbd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012702Z:4c80db8d-79b7-4f32-af6e-12a164e3bbcf" + "EASTUS2:20250602T214816Z:959792e4-acd3-426b-beca-da7f2c6a9dbd" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DFD429354E30433F9D0559C8E7CDFED6 Ref B: MNZ221060610029 Ref C: 2025-06-02T21:48:16Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:01 GMT" + "Mon, 02 Jun 2025 21:48:16 GMT" + ], + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-21h2-avd-m365/Versions/19044.4412.240514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240611\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-21h2-avd-m365/Versions/19044.4529.240611\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/Windows-HUB/skus/Windows-10-HUB/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3MtSFVCL3NrdXMvV2luZG93cy0xMC1IVUIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-21h2-avd-m365/versions/19044.4412.240514?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjFoMi1hdmQtbTM2NS92ZXJzaW9ucy8xOTA0NC40NDEyLjI0MDUxND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8d6dd1a9-6217-4b8a-9ca4-b7e6d1146246" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c3b25f69-7812-4e8f-9584-19f79d651eba" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73993" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "94c6ce54-8734-49a8-a26b-69630cd47b68" - ], - "Cache-Control": [ - "no-cache" + "26ba5164-bbf9-4961-b482-7cbf318fff58" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9f2e64dd-da61-427e-9027-285f4888243b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "43b5521f-c0d4-4cae-a93f-15523604347e" + "f3fcd3f2-504c-4a61-963a-f4e53b5da119" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012626Z:43b5521f-c0d4-4cae-a93f-15523604347e" + "EASTUS:20250602T214817Z:f3fcd3f2-504c-4a61-963a-f4e53b5da119" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 73BD870111314325BEFB32A58DDE078A Ref B: MNZ221060608019 Ref C: 2025-06-02T21:48:17Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:26 GMT" - ] - }, - "StatusCode": 200 - }, + "Mon, 02 Jun 2025 21:48:16 GMT" + ], + "Content-Length": [ + "1049" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-21h2-avd-m365/Versions/19044.4412.240514\"\r\n}", + "StatusCode": 200 + }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/Windows-HUB/skus/Windows-10-HUB/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3MtSFVCL3NrdXMvV2luZG93cy0xMC1IVUIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-21h2-avd-m365/versions/19044.4529.240611?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjFoMi1hdmQtbTM2NS92ZXJzaW9ucy8xOTA0NC40NTI5LjI0MDYxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0acc8615-d279-4b10-8120-e681ca9eb86e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "e8f9e3c7-5862-48eb-afea-ebc1c7ab08f5" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73992" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "79f84f31-a5f0-4a79-bedb-f0d646a1eef3" - ], - "Cache-Control": [ - "no-cache" + "79c28a95-9bc0-42b8-8302-e9e9ee893549" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/94b0c82c-0b85-47d3-9430-9f2a8f73725c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14759" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c55c233d-dd06-456e-b461-f9398048d17c" + "2b6bd8f4-3ab9-436c-8b7a-359497e22ea9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012702Z:c55c233d-dd06-456e-b461-f9398048d17c" + "EASTUS:20250602T214817Z:2b6bd8f4-3ab9-436c-8b7a-359497e22ea9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7099FC35DFE94A38A55A074C75FA9B17 Ref B: MNZ221060610053 Ref C: 2025-06-02T21:48:17Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:01 GMT" + "Mon, 02 Jun 2025 21:48:16 GMT" + ], + "Content-Length": [ + "1049" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240611\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-21h2-avd-m365/Versions/19044.4529.240611\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-21h2-avd-m365-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjFoMi1hdmQtbTM2NS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2a24f0f3-df36-400d-a998-a212a7095a8e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "172e8f74-5933-4ce9-ab4f-78d7551ddd0a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2008-R2-SP1-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-R2-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-Server-Core\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-Server-Core-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-with-Containers\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-with-RDSH\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-RDSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Nano-Server\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Nano-Server\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "3815" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15987,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43987" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "09646948-565a-453c-adbb-6ebe20dafa39" + "f2210275-3fa6-402d-b800-3f4747542e7f" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2ac844bd-9b7f-4ff4-89bb-06c7ccc60650" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "4bfbbe9d-bd9a-4693-b922-ee67ab643230" + "568cacf1-f79a-4097-b688-7640b8d32cf5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012626Z:4bfbbe9d-bd9a-4693-b922-ee67ab643230" + "EASTUS2:20250602T214817Z:568cacf1-f79a-4097-b688-7640b8d32cf5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F33063223CE44E10B879CF3D9BBD232F Ref B: MNZ221060608045 Ref C: 2025-06-02T21:48:17Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:26 GMT" + "Mon, 02 Jun 2025 21:48:17 GMT" + ], + "Content-Length": [ + "627" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-21h2-avd-m365-g2/Versions/19044.4412.240514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240611\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-21h2-avd-m365-g2/Versions/19044.4529.240611\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-21h2-avd-m365-g2/versions/19044.4412.240514?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjFoMi1hdmQtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC40NDEyLjI0MDUxND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f47aed3b-3ba2-4ad4-93bd-ce2c7aba86d6" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "ee384098-ec7e-4ac4-a29f-381e07eb2c28" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2008-R2-SP1-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-R2-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-Server-Core\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-Server-Core-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-with-Containers\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-with-RDSH\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-RDSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Nano-Server\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Nano-Server\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "3815" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73991" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "6a802b46-ad0b-4710-b21e-5458b1868d5b" - ], - "Cache-Control": [ - "no-cache" + "3fb528f2-f551-499f-8e86-06626ac32b1b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b1315e9c-8295-412f-ae81-1a3a9b075ca0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14758" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a927b24b-03a5-4b07-8812-af105648c094" + "037a0414-ab82-48ca-8ade-46268d9bf9a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012702Z:a927b24b-03a5-4b07-8812-af105648c094" + "EASTUS2:20250602T214817Z:037a0414-ab82-48ca-8ade-46268d9bf9a9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2332A292AE284ACEB98739BE96C51539 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:48:17Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:02 GMT" + "Mon, 02 Jun 2025 21:48:17 GMT" + ], + "Content-Length": [ + "1180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-21h2-avd-m365-g2/Versions/19044.4412.240514\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-21h2-avd-m365-g2/versions/19044.4529.240611?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjFoMi1hdmQtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC40NTI5LjI0MDYxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "496d937e-31d2-44d9-880b-5aadcd312b4f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "ec252879-b612-4f8e-a6b2-9b56632f4319" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170628\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170628\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20171217\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "3864" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73990" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9081598b-06d5-49ee-81fa-7d1cfe78f02b" + "a3ae9837-cba6-42af-9fe3-b74de55d7da0" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/113e5c90-b55f-401c-84b7-45cf024c6d0b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7918d03b-77e7-4af6-abfb-37394cd01960" + "e2a24307-bb47-46ec-bf0e-107bd2cbe61e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012627Z:7918d03b-77e7-4af6-abfb-37394cd01960" + "EASTUS:20250602T214817Z:e2a24307-bb47-46ec-bf0e-107bd2cbe61e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 70310DB5AF394769B23941142EFDC35E Ref B: MNZ221060619035 Ref C: 2025-06-02T21:48:17Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:26 GMT" + "Mon, 02 Jun 2025 21:48:17 GMT" + ], + "Content-Length": [ + "1180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240611\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-21h2-avd-m365-g2/Versions/19044.4529.240611\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-22h2-avd-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "04af3db8-43e9-4f35-8f9d-e62e01be4eff" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f13cfdd6-0307-4dff-bc2d-3d1b4f435a84" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170628\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170628\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20171217\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "3864" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15986,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43986" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7988972b-cee0-4ed1-8235-6e2064313ebb" - ], - "Cache-Control": [ - "no-cache" + "ce3bee7b-29f9-4539-91b3-f0e32a1df4ad" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4ad589f8-d32f-4e07-a9d6-7621e8749c66" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14757" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9baf4aea-2bbd-434f-9cba-77dbe3dc912f" + "49a7bcf4-3201-4a41-a9fb-81d18f00282d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012702Z:9baf4aea-2bbd-434f-9cba-77dbe3dc912f" + "EASTUS2:20250602T214817Z:49a7bcf4-3201-4a41-a9fb-81d18f00282d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F7FD818104884B9A8F46833B77B86D66 Ref B: MNZ221060609031 Ref C: 2025-06-02T21:48:17Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:02 GMT" + "Mon, 02 Jun 2025 21:48:17 GMT" + ], + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365/Versions/19045.5371.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365/Versions/19045.5487.250211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365/Versions/19045.5608.250311\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365/Versions/19045.5737.250408\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365/Versions/19045.5854.250513\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20170628?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MDYyOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-22h2-avd-m365/versions/19045.5371.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS92ZXJzaW9ucy8xOTA0NS41MzcxLjI1MDExNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "819021ab-6f0b-485c-b5f1-30d0e78c840f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "87b05386-38c0-43b0-bfe3-f20f4e1c7a1f" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170628\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170628\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12989,Microsoft.Compute/GetVMImageFromLocation30Min;73989" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "04ec5c17-7ca8-4449-8ca5-bc4dd00063cc" + "eddecba5-f033-49ff-917f-206bd6d6d0f8" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/754cb50f-c065-48fb-93ad-c5a47a08559f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9cb8c612-ca3a-4eb0-96d8-19196f24a9b1" + "22e50ab3-636b-45e7-a705-91bedb35e4e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012627Z:9cb8c612-ca3a-4eb0-96d8-19196f24a9b1" + "EASTUS:20250602T214818Z:22e50ab3-636b-45e7-a705-91bedb35e4e3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 20387474B67041758F7D26AD47498EEB Ref B: MNZ221060609007 Ref C: 2025-06-02T21:48:17Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:27 GMT" + "Mon, 02 Jun 2025 21:48:17 GMT" + ], + "Content-Length": [ + "1099" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-15T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365/Versions/19045.5371.250115\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20170628?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MDYyOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-22h2-avd-m365/versions/19045.5487.250211?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS92ZXJzaW9ucy8xOTA0NS41NDg3LjI1MDIxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "41b2b0cc-01ef-420a-bc58-e03d7ff11ff0" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3eb14ac0-9f09-404f-9d85-ebb68ac301df" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170628\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170628\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12988,Microsoft.Compute/GetVMImageFromLocation30Min;73988" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "4a91ff49-f61c-4108-83a5-ffb5d0fa3ccc" - ], - "Cache-Control": [ - "no-cache" + "a4df8fe1-6cc8-4dd7-add1-4dbdcd26dbbf" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c98d0632-e727-4f3c-a40d-0c5113445b32" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14756" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "fb5911a5-d050-4815-bab5-d0d20fe7a267" + "0724b966-839f-4b69-955b-dec2ea77b7f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012702Z:fb5911a5-d050-4815-bab5-d0d20fe7a267" + "EASTUS:20250602T214818Z:0724b966-839f-4b69-955b-dec2ea77b7f8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 82F4E5880900489A8FC76E373A0E267A Ref B: MNZ221060619051 Ref C: 2025-06-02T21:48:18Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:02 GMT" + "Mon, 02 Jun 2025 21:48:18 GMT" + ], + "Content-Length": [ + "1099" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-13T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365/Versions/19045.5487.250211\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MDcxMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-22h2-avd-m365/versions/19045.5608.250311?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS92ZXJzaW9ucy8xOTA0NS41NjA4LjI1MDMxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e8141c4d-106f-436e-aaf0-907c15f77057" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "d794ebd6-398d-4e97-9fc4-a241e4457d16" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12987,Microsoft.Compute/GetVMImageFromLocation30Min;73987" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "8cc0a85f-976b-4987-974c-c069dfdc4d8b" + "cb9c27e7-1980-4601-9aaa-ae20acde178e" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ebb97262-449c-48f9-a882-670bdb92e228" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "07b75b89-2dd2-4c93-b783-8334d04806a9" + "db9ee59d-6bc8-4638-a4d3-0e89003f79a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012627Z:07b75b89-2dd2-4c93-b783-8334d04806a9" + "EASTUS:20250602T214818Z:db9ee59d-6bc8-4638-a4d3-0e89003f79a5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 686AC67A4261460388052B67257A728C Ref B: MNZ221060608029 Ref C: 2025-06-02T21:48:18Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:27 GMT" + "Mon, 02 Jun 2025 21:48:17 GMT" + ], + "Content-Length": [ + "1099" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365/Versions/19045.5608.250311\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MDcxMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-22h2-avd-m365/versions/19045.5737.250408?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS92ZXJzaW9ucy8xOTA0NS41NzM3LjI1MDQwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ae613014-c422-4f29-a425-478a6ddba0ba" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a9a786e3-55d9-4e33-bb31-559ed1b8d5bf" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12986,Microsoft.Compute/GetVMImageFromLocation30Min;73986" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "67260f67-9567-4bbd-acf0-694b23cda09d" - ], - "Cache-Control": [ - "no-cache" + "425648a6-fd9f-4555-bed0-302f7d481b1c" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/deac655f-0b9e-4a3c-8b8f-dffccae7e719" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14755" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8470a1a9-ec6f-44b8-b2d6-a2021752a65b" + "b4cfdab0-da62-45be-82e9-8303c84f96a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012703Z:8470a1a9-ec6f-44b8-b2d6-a2021752a65b" + "EASTUS:20250602T214818Z:b4cfdab0-da62-45be-82e9-8303c84f96a4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C2396B866524ECC804D61A2F33A6E6D Ref B: MNZ221060618033 Ref C: 2025-06-02T21:48:18Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:02 GMT" + "Mon, 02 Jun 2025 21:48:17 GMT" + ], + "Content-Length": [ + "1018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365/Versions/19045.5737.250408\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20170811?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MDgxMT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-22h2-avd-m365/versions/19045.5854.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS92ZXJzaW9ucy8xOTA0NS41ODU0LjI1MDUxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bfac6f35-7817-4976-bf2a-b41a4f98f5af" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "fa4c7044-9dc1-4c10-ae96-441eaeabfc4c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170811\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12985,Microsoft.Compute/GetVMImageFromLocation30Min;73985" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "1888ddeb-922b-4bd5-aeb7-36f71128ab6b" + "85212f18-784d-4e87-97b6-d85ebf76df1f" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/88f7daec-d5da-4d26-895f-7a8b19866b8e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "621590e4-3dab-4f49-90e2-27fbfc4cb861" + "cc3ad74d-b2d8-4bd8-a47d-338fc76401b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012627Z:621590e4-3dab-4f49-90e2-27fbfc4cb861" + "EASTUS2:20250602T214818Z:cc3ad74d-b2d8-4bd8-a47d-338fc76401b7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C627B5368885471F833890EC968BD420 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:48:18Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:27 GMT" + "Mon, 02 Jun 2025 21:48:17 GMT" + ], + "Content-Length": [ + "1018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365/Versions/19045.5854.250513\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20170811?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MDgxMT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-22h2-avd-m365-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b73798be-5d80-4afd-b088-259897ddd7d5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "be89180c-29f7-4df8-bd22-6fa6de0ef617" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170811\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15985,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7def0284-5a41-4ed1-bf2e-f1a8aa7d8c53" - ], - "Cache-Control": [ - "no-cache" + "f50a1cd5-d014-48bb-8cc5-fe59980746f5" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f20cff05-f98f-4795-be15-f9e31a8bb208" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14754" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b721037a-51aa-4351-a0a5-5327fbbdc25d" + "a4fba286-d80d-4182-b29d-7a5823541f88" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012703Z:b721037a-51aa-4351-a0a5-5327fbbdc25d" + "EASTUS2:20250602T214818Z:a4fba286-d80d-4182-b29d-7a5823541f88" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 123415416B144935B7B68791F4C0ABD4 Ref B: MNZ221060610033 Ref C: 2025-06-02T21:48:18Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:02 GMT" + "Mon, 02 Jun 2025 21:48:18 GMT" + ], + "Content-Length": [ + "1563" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365-g2/Versions/19045.5371.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365-g2/Versions/19045.5487.250211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365-g2/Versions/19045.5608.250311\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365-g2/Versions/19045.5737.250408\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365-g2/Versions/19045.5854.250513\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MDkxOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-22h2-avd-m365-g2/versions/19045.5371.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NS41MzcxLjI1MDExNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "728c277b-b068-4f0e-82cd-288d4e84a032" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "fbd55cd4-2094-425e-9a0f-8728e7bd9543" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12984,Microsoft.Compute/GetVMImageFromLocation30Min;73984" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "b7c739fe-5e18-47ff-8b52-a95c0b7fed02" + "517259c1-d982-4647-afae-531a323ac0f9" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/294413c1-6e2e-4e46-8aff-4a4a29d3144f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b1ddb422-f9b7-4d98-84cd-be20742eccfa" + "b0dc90e0-96e0-4010-9153-0824b3f94ff7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012627Z:b1ddb422-f9b7-4d98-84cd-be20742eccfa" + "EASTUS2:20250602T214818Z:b0dc90e0-96e0-4010-9153-0824b3f94ff7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E0BD49FD501E491B843F7FCA35003FFE Ref B: MNZ221060609017 Ref C: 2025-06-02T21:48:18Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:27 GMT" + "Mon, 02 Jun 2025 21:48:18 GMT" + ], + "Content-Length": [ + "1309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-15T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365-g2/Versions/19045.5371.250115\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MDkxOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-22h2-avd-m365-g2/versions/19045.5487.250211?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NS41NDg3LjI1MDIxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4762d167-a91e-4b16-b187-95c1280e31cf" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "605825fe-1069-494a-8214-7f33feb1dc76" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12983,Microsoft.Compute/GetVMImageFromLocation30Min;73983" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "15cbb07d-1c35-48b1-8e4c-9ba68c8e8fc8" - ], - "Cache-Control": [ - "no-cache" + "800d1642-9352-4500-9b38-fd028d1a1273" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/18ba47b1-3a32-45b8-bb03-036d7a723960" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14753" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f50f4495-6713-4b3f-b084-998146d8d2fd" + "e780070b-d82a-4383-9e53-0e7a46c0161c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012703Z:f50f4495-6713-4b3f-b084-998146d8d2fd" + "EASTUS2:20250602T214819Z:e780070b-d82a-4383-9e53-0e7a46c0161c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1C736499D4EF493299D135B78EB3D0A5 Ref B: MNZ221060609017 Ref C: 2025-06-02T21:48:18Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:02 GMT" + "Mon, 02 Jun 2025 21:48:18 GMT" + ], + "Content-Length": [ + "1309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-13T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365-g2/Versions/19045.5487.250211\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MTAxNz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-22h2-avd-m365-g2/versions/19045.5608.250311?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NS41NjA4LjI1MDMxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9ba6e07a-9fb3-43f8-bb9b-4c63c301a266" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b49209fa-061b-4180-8b69-de905772f229" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12982,Microsoft.Compute/GetVMImageFromLocation30Min;73982" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "97fdb2be-463e-463a-80ae-eaca6d4354f3" + "95c44d4d-2179-4013-94a1-df32bfc19ca1" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b9a677e4-5f32-4321-a6bc-842bc9314a66" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "cf56abf3-51d5-43d9-86ef-48f799969e31" + "1aa30f47-931b-43a4-a85f-532dac9a97da" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012627Z:cf56abf3-51d5-43d9-86ef-48f799969e31" + "EASTUS:20250602T214819Z:1aa30f47-931b-43a4-a85f-532dac9a97da" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C04171F90D5243FEA73959A73916429C Ref B: MNZ221060618029 Ref C: 2025-06-02T21:48:19Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:27 GMT" + "Mon, 02 Jun 2025 21:48:18 GMT" + ], + "Content-Length": [ + "1309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365-g2/Versions/19045.5608.250311\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MTAxNz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-22h2-avd-m365-g2/versions/19045.5737.250408?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NS41NzM3LjI1MDQwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "eb49fa92-ea7b-41f8-ab3d-11ebc0a8cf67" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b0f09f57-6c29-4330-96fc-442803f473b6" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12981,Microsoft.Compute/GetVMImageFromLocation30Min;73981" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "a23ca56f-e59b-4684-bd73-abf04a57f47b" - ], - "Cache-Control": [ - "no-cache" + "c7b76bca-b2bd-4d2f-872d-247fb6690993" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3171ae8e-a153-4105-9ce4-ab74cd1ad086" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14752" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "6e8db7c3-f852-4045-a499-f0cd8cdacbc5" + "0808392c-530b-425a-a42c-ffe4a7820f84" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012703Z:6e8db7c3-f852-4045-a499-f0cd8cdacbc5" + "EASTUS:20250602T214819Z:0808392c-530b-425a-a42c-ffe4a7820f84" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2D78E0A4936B4F0AA061615A6426AE9E Ref B: MNZ221060609023 Ref C: 2025-06-02T21:48:19Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:02 GMT" + "Mon, 02 Jun 2025 21:48:19 GMT" + ], + "Content-Length": [ + "1228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365-g2/Versions/19045.5737.250408\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MTExNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win10-22h2-avd-m365-g2/versions/19045.5854.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NS41ODU0LjI1MDUxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e4c94964-f9e4-4147-a34e-62b855a499f3" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b2f80374-7a2a-4000-9ea1-f7abaf98df3e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12980,Microsoft.Compute/GetVMImageFromLocation30Min;73980" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "cabb15c3-cf16-40d3-a2fb-482868c19c7e" + "dc81c4ec-a003-46d8-8175-49275c281e36" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d10a49a9-83d3-45d6-b438-9a9153cb89dc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "d2c1a233-acef-4f40-a34c-fe9ee09a809e" + "0a60ce03-3e50-4b69-8f34-52dfc3073b83" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012628Z:d2c1a233-acef-4f40-a34c-fe9ee09a809e" + "EASTUS:20250602T214819Z:0a60ce03-3e50-4b69-8f34-52dfc3073b83" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6271957DEDC8457C9CA6275BE9D09F63 Ref B: MNZ221060610051 Ref C: 2025-06-02T21:48:19Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:27 GMT" + "Mon, 02 Jun 2025 21:48:19 GMT" + ], + "Content-Length": [ + "1228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win10-22h2-avd-m365-g2/Versions/19045.5854.250513\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MTExNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-22h2-avd-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjJoMi1hdmQtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9991e215-7871-4386-8f4f-22f67102ff96" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "ef448208-ef02-4d0a-8b1d-ef7718cfabe4" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15984,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43984" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "6367c94f-a273-47ac-8b7b-6aef5fc9aa13" + "07d2bfbe-a1f9-4efe-aa09-d55f23fff432" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d81ac3f7-0402-4458-92c3-8be7c277bd72" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14751" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d9e2fc44-ce7e-4d1e-abf0-d7466b123bfd" + "5ff130cc-8d40-463a-b3fb-98696aa1aa28" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012703Z:d9e2fc44-ce7e-4d1e-abf0-d7466b123bfd" + "EASTUS2:20250602T214819Z:5ff130cc-8d40-463a-b3fb-98696aa1aa28" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9C281FCA14E74CF8BDAD86D2DB044089 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:48:19Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:02 GMT" + "Mon, 02 Jun 2025 21:48:18 GMT" + ], + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-22h2-avd-m365/Versions/22621.4751.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-22h2-avd-m365/Versions/22621.4890.250211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-22h2-avd-m365/Versions/22621.5039.250311\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-22h2-avd-m365/Versions/22621.5192.250410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-22h2-avd-m365/Versions/22621.5335.250513\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20171217?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MTIxNz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-22h2-avd-m365/versions/22621.4751.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjJoMi1hdmQtbTM2NS92ZXJzaW9ucy8yMjYyMS40NzUxLjI1MDExNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "858190e1-916a-4aa3-91c5-479ce24811dd" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "66d17512-31b1-4487-8bf7-4f5bc14e531e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20171217\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12979,Microsoft.Compute/GetVMImageFromLocation30Min;73979" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2816becc-e03a-4595-80ac-908233462acb" + "ff587517-9c86-4570-85e0-2182b581fa46" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b96fb6bf-2287-4d8d-ae12-29575be0669f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "960032bb-b9b4-4fe7-96c1-7de80e10e447" + "1cb3c7b5-f87d-42dc-bf84-1f0c9861c26f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012628Z:960032bb-b9b4-4fe7-96c1-7de80e10e447" + "EASTUS:20250602T214819Z:1cb3c7b5-f87d-42dc-bf84-1f0c9861c26f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 538EA2FEF6A249E2AA1500014308480A Ref B: MNZ221060619049 Ref C: 2025-06-02T21:48:19Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:27 GMT" + "Mon, 02 Jun 2025 21:48:19 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-15T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-22h2-avd-m365/Versions/22621.4751.250115\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20171217?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE3MTIxNz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-22h2-avd-m365/versions/22621.4890.250211?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjJoMi1hdmQtbTM2NS92ZXJzaW9ucy8yMjYyMS40ODkwLjI1MDIxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b5a44216-473e-47d5-9b5c-12dad1608ad6" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "63944ddf-f120-4202-89e5-10dbcc33a431" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20171217\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12978,Microsoft.Compute/GetVMImageFromLocation30Min;73978" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2e10d6b8-a5c5-4eea-83fc-23f452db6244" - ], - "Cache-Control": [ - "no-cache" + "b56dec20-d637-4d50-89e2-66395a2f2e17" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9429c768-f2ab-4bb5-8af4-1de6cc573e98" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14750" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "f65ca004-e3c0-4d55-b78e-c0001fb32272" + "27e14ca0-b96f-4780-92dc-ac2d368fb7ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012703Z:f65ca004-e3c0-4d55-b78e-c0001fb32272" + "EASTUS:20250602T214819Z:27e14ca0-b96f-4780-92dc-ac2d368fb7ff" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4B6E3B9590614F70B50E8A8DCB3D6804 Ref B: MNZ221060609023 Ref C: 2025-06-02T21:48:19Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:03 GMT" + "Mon, 02 Jun 2025 21:48:19 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-13T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-22h2-avd-m365/Versions/22621.4890.250211\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180111?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE4MDExMT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-22h2-avd-m365/versions/22621.5039.250311?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjJoMi1hdmQtbTM2NS92ZXJzaW9ucy8yMjYyMS41MDM5LjI1MDMxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "68b3b996-adaf-4e52-a937-05a28671c8e8" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "ac191536-c6ad-4649-8e4f-42b0bafc3bff" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180111\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12977,Microsoft.Compute/GetVMImageFromLocation30Min;73977" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "70af8646-3b87-408c-8594-2a36aa51ce85" + "b83b25e6-816b-4af4-9615-ea8ef7b646ad" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7252be82-7504-4a20-87e4-12f023d15e9a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "70d84f2a-34c5-412e-b0d8-7f85e9f7d33f" + "b3d4f554-2b24-4f42-a2ff-7305fb725663" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012628Z:70d84f2a-34c5-412e-b0d8-7f85e9f7d33f" + "EASTUS:20250602T214820Z:b3d4f554-2b24-4f42-a2ff-7305fb725663" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4158AF0211AE4190A636184AD33DCA69 Ref B: MNZ221060609035 Ref C: 2025-06-02T21:48:19Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:28 GMT" + "Mon, 02 Jun 2025 21:48:19 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-22h2-avd-m365/Versions/22621.5039.250311\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180111?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE4MDExMT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-22h2-avd-m365/versions/22621.5192.250410?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjJoMi1hdmQtbTM2NS92ZXJzaW9ucy8yMjYyMS41MTkyLjI1MDQxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "68134abc-7469-4d99-add7-a79791cf457b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1b72a1c2-7433-4ca3-bdc1-d17959164253" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180111\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12976,Microsoft.Compute/GetVMImageFromLocation30Min;73976" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "31cef94a-69d0-4a6f-ae7a-e31fe05a4442" - ], - "Cache-Control": [ - "no-cache" + "53d88b79-a111-478a-b119-1d51a11508db" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5d752a05-c85c-4f54-84f4-60adbfb868dd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14749" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "78a540ff-84d0-4e8f-a25c-511d94193702" + "f526057d-95f3-480a-9e8f-c17d02d2ffb0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012703Z:78a540ff-84d0-4e8f-a25c-511d94193702" + "EASTUS2:20250602T214820Z:f526057d-95f3-480a-9e8f-c17d02d2ffb0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5943DF38FD114765A5D3D242065FBCDA Ref B: MNZ221060610047 Ref C: 2025-06-02T21:48:20Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:03 GMT" + "Mon, 02 Jun 2025 21:48:19 GMT" + ], + "Content-Length": [ + "1225" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-22h2-avd-m365/Versions/22621.5192.250410\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE4MDIxNj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-22h2-avd-m365/versions/22621.5335.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjJoMi1hdmQtbTM2NS92ZXJzaW9ucy8yMjYyMS41MzM1LjI1MDUxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6a2d2dce-0089-4da1-9255-e9a17b8e57ff" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "d4460b88-6a7d-4554-98d1-5e43491e5e97" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12975,Microsoft.Compute/GetVMImageFromLocation30Min;73975" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "920cc6c0-2bba-4b53-9576-4b61d6f7af21" + "5b1b0cb8-c632-4440-aa61-10df2e4f3821" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dc30ed49-e0ea-4d2e-b1cb-d249734e60f2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "91d9465c-aeb0-4c61-8f49-d31f5180e1c0" + "d8e735d1-9047-4106-85b7-89b0e526379e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012628Z:91d9465c-aeb0-4c61-8f49-d31f5180e1c0" + "EASTUS2:20250602T214820Z:d8e735d1-9047-4106-85b7-89b0e526379e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A61CB6E79CDC448E9F047771F7B66080 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:48:20Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:28 GMT" + "Mon, 02 Jun 2025 21:48:19 GMT" + ], + "Content-Length": [ + "1225" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-22h2-avd-m365/Versions/22621.5335.250513\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE4MDIxNj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-23h2-avd-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjNoMi1hdmQtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f52379be-1299-47f6-9593-90ebeab9305f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "41966027-94a6-413e-8956-1a4fb8c98a66" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15983,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43983" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "3d9a9e45-d000-4dce-9aa5-e9c1465f80c5" - ], - "Cache-Control": [ - "no-cache" + "89609dda-330f-4efa-937e-38501e204040" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/66e3cca7-ec30-47f7-980d-f98322fe0106" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14748" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "15ef2aed-3dc4-431d-b03e-fbb09b0f9614" + "9247bee4-4b83-4885-98f7-2d5871806a38" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012703Z:15ef2aed-3dc4-431d-b03e-fbb09b0f9614" + "EASTUS:20250602T214820Z:9247bee4-4b83-4885-98f7-2d5871806a38" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DAEB2CADDF394F5EB5648404657F80FF Ref B: MNZ221060608011 Ref C: 2025-06-02T21:48:20Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:03 GMT" + "Mon, 02 Jun 2025 21:48:20 GMT" + ], + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-23h2-avd-m365/Versions/22631.4751.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-23h2-avd-m365/Versions/22631.4890.250211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-23h2-avd-m365/Versions/22631.5039.250311\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-23h2-avd-m365/Versions/22631.5192.250410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-23h2-avd-m365/Versions/22631.5335.250513\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE4MDMxNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-23h2-avd-m365/versions/22631.4751.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjNoMi1hdmQtbTM2NS92ZXJzaW9ucy8yMjYzMS40NzUxLjI1MDExNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3d31b449-b488-453f-b60a-40966efad877" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "195fe1c3-3ff5-4bf6-a91d-c9c1858ca6f1" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12974,Microsoft.Compute/GetVMImageFromLocation30Min;73974" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "040262ca-b6ce-4b7b-85bc-1afaeb9a7193" + "f99ebbb9-987a-4498-9040-b55bc9f3f94c" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dcaa953a-4809-45da-99b4-2febfaae8f62" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e9c8f07a-2dd8-4abf-b797-b267d415aa65" + "c212c233-bd4c-4f3f-b3ce-e0f5bbb72e5b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012628Z:e9c8f07a-2dd8-4abf-b797-b267d415aa65" + "EASTUS:20250602T214820Z:c212c233-bd4c-4f3f-b3ce-e0f5bbb72e5b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8EC1EB14B23345CAB01B21D0312FEA69 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:48:20Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:28 GMT" + "Mon, 02 Jun 2025 21:48:19 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-15T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-23h2-avd-m365/Versions/22631.4751.250115\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE4MDMxNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-23h2-avd-m365/versions/22631.4890.250211?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjNoMi1hdmQtbTM2NS92ZXJzaW9ucy8yMjYzMS40ODkwLjI1MDIxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3d3ca5c8-076a-499e-8931-d541404e9de0" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "ba08f14a-d907-4406-886e-5556d2c900da" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12973,Microsoft.Compute/GetVMImageFromLocation30Min;73973" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7094bb5b-244d-446b-bf7a-66fc8531fc97" - ], - "Cache-Control": [ - "no-cache" + "e6f09552-64ea-41f2-a567-684a41eeb977" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5228be91-52ed-4076-96a9-abb48b2c8101" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14747" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "11668c67-ae5f-42e6-85b0-32f3a2c1816c" + "44f9686f-bbf1-4636-b729-252890045c37" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012704Z:11668c67-ae5f-42e6-85b0-32f3a2c1816c" + "EASTUS:20250602T214820Z:44f9686f-bbf1-4636-b729-252890045c37" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 817E5E4012CD47A58A6A086A0039E1A7 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:48:20Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:03 GMT" + "Mon, 02 Jun 2025 21:48:20 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-13T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-23h2-avd-m365/Versions/22631.4890.250211\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE4MDQxMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-23h2-avd-m365/versions/22631.5039.250311?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjNoMi1hdmQtbTM2NS92ZXJzaW9ucy8yMjYzMS41MDM5LjI1MDMxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7e183e41-962e-407e-800d-3cc54030eda4" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3317a9ab-f189-4ccc-927e-bac48646600a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12972,Microsoft.Compute/GetVMImageFromLocation30Min;73972" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "f0bb9208-3675-4f01-b852-5b4bc1551f3d" + "41cf8a25-e29b-4453-90f6-cc0c76dddb38" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/86313a9f-8e1a-4720-9fe3-860236cd74bf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "db8e7647-cb40-4b21-93df-4ffb185d8db3" + "e7d7e26f-dfd9-422d-86fd-07a1353f4bad" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012628Z:db8e7647-cb40-4b21-93df-4ffb185d8db3" + "EASTUS:20250602T214820Z:e7d7e26f-dfd9-422d-86fd-07a1353f4bad" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 79E18E8F0D4945DE90AD5B2520B9CBC1 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:48:20Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:28 GMT" + "Mon, 02 Jun 2025 21:48:20 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-23h2-avd-m365/Versions/22631.5039.250311\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE4MDQxMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-23h2-avd-m365/versions/22631.5192.250410?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjNoMi1hdmQtbTM2NS92ZXJzaW9ucy8yMjYzMS41MTkyLjI1MDQxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "74176468-328e-4b5a-872b-0d1621ef46ea" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "43925e8e-ccc5-47de-b794-5d903b400bc7" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12971,Microsoft.Compute/GetVMImageFromLocation30Min;73971" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "4756d704-0375-4667-b99b-29e86fa91fa5" - ], - "Cache-Control": [ - "no-cache" + "e4e0bc76-465a-4bf6-a1f7-7532fad2d2bc" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/162c0779-b8d4-45e1-bff7-ae2298b37f74" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14746" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "98b48e57-9211-4676-a3fd-a79294d48474" + "9cbf81d8-5e51-47fc-a02b-50b50152986f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012704Z:98b48e57-9211-4676-a3fd-a79294d48474" + "EASTUS:20250602T214820Z:9cbf81d8-5e51-47fc-a02b-50b50152986f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3CC93E98A3A045F19A2CFE1D448E94B0 Ref B: MNZ221060608051 Ref C: 2025-06-02T21:48:20Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:03 GMT" + "Mon, 02 Jun 2025 21:48:20 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-23h2-avd-m365/Versions/22631.5192.250410\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE4MDUxMD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-23h2-avd-m365/versions/22631.5335.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjNoMi1hdmQtbTM2NS92ZXJzaW9ucy8yMjYzMS41MzM1LjI1MDUxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "39a91a88-9c22-4fb0-831a-dec806408397" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "de7de7c5-f76c-49ea-ba3f-17534229f283" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12970,Microsoft.Compute/GetVMImageFromLocation30Min;73970" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "11eb2502-43bf-4028-bfdb-13b06bc51276" + "07d84ac1-2454-4ad9-9311-27b48ecbe99a" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/019fb4aa-bf0a-409d-8959-20acacd1bfb5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a2f08550-df0a-4da0-a385-f80619a53635" + "0218f6e7-45b7-4ed0-9c15-1f1a0b885c1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012629Z:a2f08550-df0a-4da0-a385-f80619a53635" + "EASTUS:20250602T214821Z:0218f6e7-45b7-4ed0-9c15-1f1a0b885c1a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F06AD8A740CD46B2B806EC23AD7B5B36 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:48:20Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:28 GMT" + "Mon, 02 Jun 2025 21:48:20 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-23h2-avd-m365/Versions/22631.5335.250513\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE4MDUxMD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-24h2-avd-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjRoMi1hdmQtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bc4117ad-a3f7-4090-8b68-78f1b3fcdb95" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "9e5e55c5-3bd1-4161-be7c-a3e74a243aa4" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15982,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43982" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9145b683-a839-4079-84c7-09dc6358f67a" - ], - "Cache-Control": [ - "no-cache" + "09f418f0-a801-4171-9aef-8d17dd142f1a" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3956d205-98a2-4581-aa8c-ef9d7e13f06d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14745" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b81e6640-3ef9-47df-9e1d-0d5e8ce84f34" + "bb0ed4d2-9b6c-41d7-912a-ed57db355a49" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012704Z:b81e6640-3ef9-47df-9e1d-0d5e8ce84f34" + "EASTUS:20250602T214821Z:bb0ed4d2-9b6c-41d7-912a-ed57db355a49" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E779B7F2E9AF45D4998B6179C6460B0A Ref B: MNZ221060608029 Ref C: 2025-06-02T21:48:21Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:03 GMT" + "Mon, 02 Jun 2025 21:48:20 GMT" + ], + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-24h2-avd-m365/Versions/26100.2894.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-24h2-avd-m365/Versions/26100.3194.250214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-24h2-avd-m365/Versions/26100.3476.250312\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-24h2-avd-m365/Versions/26100.3775.250408\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-24h2-avd-m365/Versions/26100.4061.250513\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE4MDYxMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-24h2-avd-m365/versions/26100.2894.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjRoMi1hdmQtbTM2NS92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDExNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9b532e90-a80c-4757-90cb-edd828e29646" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "91953026-d731-494f-bc66-6e38d3cb9ae2" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12969,Microsoft.Compute/GetVMImageFromLocation30Min;73969" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "50d286d1-9953-4d6d-8f46-62ecf363dc6f" + "32b020c3-174b-4e5e-b667-2759ed5d5e9f" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/931aa7c8-825e-4b6c-bd20-824bb86af2ca" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9eddd203-58cc-4d78-81dd-6018a69a6cac" + "b0a7add0-9efc-4cfe-8452-a55706e5e915" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012629Z:9eddd203-58cc-4d78-81dd-6018a69a6cac" + "EASTUS:20250602T214821Z:b0a7add0-9efc-4cfe-8452-a55706e5e915" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CB4F78D87C394958B61B9162FC6DFEEE Ref B: MNZ221060610049 Ref C: 2025-06-02T21:48:21Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:28 GMT" + "Mon, 02 Jun 2025 21:48:21 GMT" + ], + "Content-Length": [ + "1312" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-15T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-24h2-avd-m365/Versions/26100.2894.250115\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE4MDYxMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-24h2-avd-m365/versions/26100.3194.250214?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjRoMi1hdmQtbTM2NS92ZXJzaW9ucy8yNjEwMC4zMTk0LjI1MDIxND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "47cfb314-9752-424a-ba66-9ce9f578bc0f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f13ddef8-9430-4a22-a5e1-cf713d7b0faf" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12968,Microsoft.Compute/GetVMImageFromLocation30Min;73968" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c07a2898-97a1-4ebe-91cb-99c8d7c23c06" - ], - "Cache-Control": [ - "no-cache" + "00794219-ebc4-4989-a179-7087bedb8cb9" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ba51e5e5-dc72-4aab-a988-c317897efa51" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "5425ebaa-94bf-4227-97ee-d270f41a8ab7" + "1c7aba4b-7641-40b6-b71e-6b77c0894a0d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012704Z:5425ebaa-94bf-4227-97ee-d270f41a8ab7" + "EASTUS2:20250602T214821Z:1c7aba4b-7641-40b6-b71e-6b77c0894a0d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 68CD9D146C724693A95F1BCF029114FA Ref B: MNZ221060609031 Ref C: 2025-06-02T21:48:21Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:03 GMT" + "Mon, 02 Jun 2025 21:48:21 GMT" + ], + "Content-Length": [ + "1312" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-13T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-24h2-avd-m365/Versions/26100.3194.250214\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-24h2-avd-m365/versions/26100.3476.250312?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjRoMi1hdmQtbTM2NS92ZXJzaW9ucy8yNjEwMC4zNDc2LjI1MDMxMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8e9ef407-deac-4522-b327-355c6885986e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "df1cdcbc-d6f2-4118-bbf2-4b74d725b261" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20170811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20171217\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "3687" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12967,Microsoft.Compute/GetVMImageFromLocation30Min;73967" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "08f060ca-8b22-4593-8062-7eb4bf6ee37d" + "dac1d68c-81b0-47a8-9de3-c131093fe60f" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0072e792-1195-423e-bf0c-9177842a3ab4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a33a436f-1a74-4ea9-aa1e-2958890ce33c" + "3d715aa8-d766-4c67-b3b6-c99792344d0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012629Z:a33a436f-1a74-4ea9-aa1e-2958890ce33c" + "EASTUS:20250602T214821Z:3d715aa8-d766-4c67-b3b6-c99792344d0b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0E2B3ECBCB94412E9A34399B0C4D3ABA Ref B: MNZ221060619029 Ref C: 2025-06-02T21:48:21Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:29 GMT" + "Mon, 02 Jun 2025 21:48:21 GMT" + ], + "Content-Length": [ + "1312" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-24h2-avd-m365/Versions/26100.3476.250312\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-24h2-avd-m365/versions/26100.3775.250408?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjRoMi1hdmQtbTM2NS92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDQwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bbcd700f-fc85-4475-8358-190c94a931d9" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c8150c51-03b3-4df3-87fc-e1b5c815b5ce" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20170811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20171217\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "3687" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12966,Microsoft.Compute/GetVMImageFromLocation30Min;73966" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "b5448384-5242-49e3-af4c-770242121b81" - ], - "Cache-Control": [ - "no-cache" + "5ce3ee31-e3d5-486c-b343-4fb47bd2ff44" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ac8ce6ce-95c0-4352-91c3-ca04d716f4df" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "04e53f65-463c-4237-a607-0393dd4c2f65" + "0b20450c-b991-4199-950c-efa212f0e368" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012704Z:04e53f65-463c-4237-a607-0393dd4c2f65" + "EASTUS:20250602T214821Z:0b20450c-b991-4199-950c-efa212f0e368" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9193BF21F8D54275B729E572C5880CAC Ref B: MNZ221060610009 Ref C: 2025-06-02T21:48:21Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:03 GMT" + "Mon, 02 Jun 2025 21:48:20 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-24h2-avd-m365/Versions/26100.3775.250408\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxNzA3MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/office-365/skus/win11-24h2-avd-m365/versions/26100.4061.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vZmZpY2UtMzY1L3NrdXMvd2luMTEtMjRoMi1hdmQtbTM2NS92ZXJzaW9ucy8yNjEwMC40MDYxLjI1MDUxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c6fb74c9-75a6-47bd-9b99-424f48de6ec3" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "048eb70c-91a3-4250-bfc8-f4ac9b8983f9" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12965,Microsoft.Compute/GetVMImageFromLocation30Min;73965" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "6eebd09a-6953-4396-8091-06bc8c9f0ee2" + "6def9951-36b0-4c72-87e8-577e31d158f4" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5469aa5d-6d97-46ae-b0f2-0d66512f1a6c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e42d4b14-71ec-4168-89b3-8236f0f0d158" + "558b34cd-186d-4fe9-a779-d4939999af43" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012629Z:e42d4b14-71ec-4168-89b3-8236f0f0d158" + "EASTUS:20250602T214821Z:558b34cd-186d-4fe9-a779-d4939999af43" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E423CBD9A7554F64BDF640DC8F683C30 Ref B: MNZ221060608047 Ref C: 2025-06-02T21:48:21Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:29 GMT" + "Mon, 02 Jun 2025 21:48:21 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/office-365/Skus/win11-24h2-avd-m365/Versions/26100.4061.250513\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxNzA3MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ecb56e36-b327-4229-a28f-3edfa814e27c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "db164577-ef38-4593-a11d-8ac65d36b692" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9998,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29998" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "34a6e7f6-bfd1-4e63-88e9-c3692d235d84" - ], - "Cache-Control": [ - "no-cache" + "d8755a1c-fb57-4dec-a19b-0c5c5c8044b4" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7087249f-75a7-47cc-99d6-87e58cce8afc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "70e91153-0f84-4a05-8155-243011169294" + "5e0ab892-eedb-430b-9d93-afdf1a2fe4f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012704Z:70e91153-0f84-4a05-8155-243011169294" + "EASTUS2:20250602T214822Z:5e0ab892-eedb-430b-9d93-afdf1a2fe4f5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7358F2B8D05A4388B4EB0D631C007699 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:48:21Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:04 GMT" + "Mon, 02 Jun 2025 21:48:21 GMT" + ], + "Content-Length": [ + "39404" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h1-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h1-ent-gensecond\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-ent-gensecond\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h1-entn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-entn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h1-entn-gensecond\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-entn-gensecond\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h1-evd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-evd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h1-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pro\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h1-pro-gensecond\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pro-gensecond\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h1-pro-zh-cn-gensecond\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pro-zh-cn-gensecond\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h1-pron\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pron\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h1-pron-gensecond\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pron-gensecond\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-ent-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-ent-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-entn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-entn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-entn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-entn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-evd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-evd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-evd-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-evd-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-pro\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-pro-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-pro-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-pron\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-pron\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-pron-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-pron-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h1-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-ent-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h1-ent-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-entn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h1-entn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-entn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h1-entn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-evd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h1-evd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-evd-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h1-evd-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-pro-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h1-pro-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-pro-zh-cn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h1-pro-zh-cn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-pron\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h1-pron\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-pron-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h1-pron-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-ent-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-ent-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-entn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-entn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-entn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-entn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-evd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-evd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-evd-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-evd-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-pro\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-pro-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-pro-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-pro-zh-cn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-pro-zh-cn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-pron\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-pron\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-pron-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-pron-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-ent-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/21h1-ent-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-entn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/21h1-entn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-evd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/21h1-evd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-evd-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/21h1-evd-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-pro-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/21h1-pro-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-pro-zh-cn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/21h1-pro-zh-cn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-pron\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/21h1-pron\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-pron-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/21h1-pron-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs1-enterprise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs1-enterprise-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs1-enterprisen\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs1-enterprisen-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"RS3-Pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/RS3-Pro\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"RS3-ProN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/RS3-ProN\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs4-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pro\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs4-pro-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pro-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs4-pron\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pron\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-enterprise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-enterprise-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-enterprise-standard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-standard\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-enterprise-standard-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-standard-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-enterprisen\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-enterprisen-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-enterprisen-standard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-standard\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-evd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-evd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-evd-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-evd-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-pro\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-pro-zh-cn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-pro-zh-cn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-pron\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-pron\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"rs5-pron-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-pron-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-avd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-avd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-avd-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-avd-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-ent-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-ent-ltsc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-ent-ltsc-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-entn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-entn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-entn-ltsc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-entn-ltsc-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-pro-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-pro-zh-cn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-zh-cn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-pro-zh-cn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-zh-cn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-pron\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pron\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-pron-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pron-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-avd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-avd-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-ent-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-entn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-entn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-pro-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-pro-zh-cn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-pro-zh-cn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-pron\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-pron-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron-g2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20170811?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxNzA4MTE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4f5cb53b-68e6-4a92-800b-1281aad0e2a2" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "15b41e50-76c0-4610-8f2b-0b7003096358" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20170811\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43981" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7c474dd4-ad84-4150-b337-b03d9f9e9e0e" + "534da9be-a28a-447d-9ffa-7efc9b29476b" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ac2a4b79-8e4d-4ed2-a216-97e12bf4993d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "dffe8397-3a35-4c9d-bbcf-7b45f2dda11c" + "7f7daf7e-4597-48ff-bfd0-2468d695cde3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012629Z:dffe8397-3a35-4c9d-bbcf-7b45f2dda11c" + "EASTUS:20250602T214822Z:7f7daf7e-4597-48ff-bfd0-2468d695cde3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ACE17F7AC46A446B8D629569AA0FB142 Ref B: MNZ221060618037 Ref C: 2025-06-02T21:48:22Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:29 GMT" + "Mon, 02 Jun 2025 21:48:21 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20170811?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxNzA4MTE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-ent-gensecond/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1lbnQtZ2Vuc2Vjb25kL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8d06f6fe-a529-4b46-9887-280d67521b51" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "bbcbd637-dbc4-4d5c-b24d-42a2917c59db" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20170811\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15980,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43980" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "bd39ef62-9183-452e-a0c2-c3b6e3a32ef1" + "db41c660-1b12-482a-93c0-6a0860bc1ade" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/50555be0-db38-48f2-9957-9be6b5517e10" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a82ce9d9-1243-4a98-87c5-8f73b384ec0b" + "9611ce6f-07c0-45e5-af70-e423c3329936" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012704Z:a82ce9d9-1243-4a98-87c5-8f73b384ec0b" + "EASTUS2:20250602T214822Z:9611ce6f-07c0-45e5-af70-e423c3329936" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 04326CA4782846D8A482F2D73DB95885 Ref B: MNZ221060609019 Ref C: 2025-06-02T21:48:22Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:04 GMT" + "Mon, 02 Jun 2025 21:48:21 GMT" + ], + "Content-Length": [ + "635" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1198.2011031735\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-ent-gensecond/Versions/18362.1198.2011031735\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1256.2012032308\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-ent-gensecond/Versions/18362.1256.2012032308\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxNzA5MTg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-ent-gensecond/versions/18362.1198.2011031735?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1lbnQtZ2Vuc2Vjb25kL3ZlcnNpb25zLzE4MzYyLjExOTguMjAxMTAzMTczNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5564a8c0-4446-4860-940e-14de54850915" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "66059f8c-2041-4f08-a56b-11a517bd2732" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12964,Microsoft.Compute/GetVMImageFromLocation30Min;73964" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "25809b18-f786-4d9b-9b65-5b9f0d0db16f" - ], - "Cache-Control": [ - "no-cache" + "03931d7e-8d99-4124-a03a-044544f11538" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2846628b-fb91-4b97-a937-baf094eb12b5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d5b11c5e-6bd4-4b7c-9407-b34c65fbdeff" + "14145ee7-3974-4f88-bd55-e4f3b8ba098e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012629Z:d5b11c5e-6bd4-4b7c-9407-b34c65fbdeff" + "EASTUS2:20250602T214822Z:14145ee7-3974-4f88-bd55-e4f3b8ba098e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A493BC24E8D7482491B454E5FC1D830B Ref B: MNZ221060619023 Ref C: 2025-06-02T21:48:22Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:29 GMT" + "Mon, 02 Jun 2025 21:48:21 GMT" + ], + "Content-Length": [ + "904" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1198.2011031735\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-ent-gensecond/Versions/18362.1198.2011031735\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxNzA5MTg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-ent-gensecond/versions/18362.1256.2012032308?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1lbnQtZ2Vuc2Vjb25kL3ZlcnNpb25zLzE4MzYyLjEyNTYuMjAxMjAzMjMwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "10754c2d-f0cf-439d-9ff2-f292de337b4c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "96c5d44c-0c19-4b44-a096-0a8c6f76bcd6" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12963,Microsoft.Compute/GetVMImageFromLocation30Min;73963" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "37b3c2f3-065f-4bdb-bf93-c0a2bc40ae98" + "670a73a3-0900-4cc5-954b-93b07a82ac30" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a022d264-40c5-4cf7-8f87-a165867182a2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14740" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "cab7869b-e003-4bf1-9496-2e10252a5599" + "88192818-2cdf-4ca9-bdb2-daf098efd074" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012704Z:cab7869b-e003-4bf1-9496-2e10252a5599" + "EASTUS:20250602T214822Z:88192818-2cdf-4ca9-bdb2-daf098efd074" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CCCF374FFDF24F30B5B995E8222FF804 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:48:22Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:04 GMT" + "Mon, 02 Jun 2025 21:48:22 GMT" + ], + "Content-Length": [ + "904" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1256.2012032308\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-ent-gensecond/Versions/18362.1256.2012032308\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxNzEwMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-entn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1lbnRuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2f5ef28b-7239-4999-8bb2-bc6c9eaf8724" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f5d49b97-37b4-414f-9a9a-eed4244075fb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15979,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43979" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "bec96339-d3b5-4a2b-a9d7-de2288d6a65e" - ], - "Cache-Control": [ - "no-cache" + "584b8348-cba6-46a5-8406-8e0d882c518b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/092bf616-52ee-4d21-a465-09f9716f74b0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "945e80bf-ae5f-4559-b773-4b47f2af7911" + "a3debcbb-0143-4924-b755-6cd6e0d7b484" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012629Z:945e80bf-ae5f-4559-b773-4b47f2af7911" + "EASTUS2:20250602T214822Z:a3debcbb-0143-4924-b755-6cd6e0d7b484" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 14783E00CEB64582BC91636BEA915D46 Ref B: MNZ221060608037 Ref C: 2025-06-02T21:48:22Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:29 GMT" + "Mon, 02 Jun 2025 21:48:22 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxNzEwMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-entn-gensecond/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1lbnRuLWdlbnNlY29uZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c602b9e4-a7e9-4b29-b033-cd53d3c1e863" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b83ce6e6-96f1-4c4d-8a41-8fb95d96ae3b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15978,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43978" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "fb016de1-a9c4-42c3-84a7-4ebfd15eed35" - ], - "Cache-Control": [ - "no-cache" + "daba016d-5c01-45e6-bd15-64c6507da9db" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/19b17622-0ce3-470f-bccc-e75e705c714e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c62e5491-edbd-4bdb-b706-2123f1646406" + "5549a784-da38-4d01-8bdd-036c97dad239" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012705Z:c62e5491-edbd-4bdb-b706-2123f1646406" + "EASTUS2:20250602T214822Z:5549a784-da38-4d01-8bdd-036c97dad239" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BF82FE1126BA4CF19068B155BD8BED75 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:48:22Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:04 GMT" + "Mon, 02 Jun 2025 21:48:22 GMT" + ], + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1198.2011031735\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-entn-gensecond/Versions/18362.1198.2011031735\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1256.2012032308\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-entn-gensecond/Versions/18362.1256.2012032308\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxNzExMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-entn-gensecond/versions/18362.1198.2011031735?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1lbnRuLWdlbnNlY29uZC92ZXJzaW9ucy8xODM2Mi4xMTk4LjIwMTEwMzE3MzU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f20bf620-d8ac-4e17-85a7-3008a8a5ea37" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "6c3a1882-9a16-40c9-9811-f48285883c74" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12962,Microsoft.Compute/GetVMImageFromLocation30Min;73962" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "572aefa0-1214-4fa3-92b2-f7605af63535" + "0ce17380-d2c3-48e4-ae08-dbd51c12db70" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a86fbeb2-f242-48fe-9840-778fb9537f6a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e77300c9-6d24-438a-9202-fd3378f8e203" + "4e35ba78-70ef-4ec4-9245-683ac69d7db6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012630Z:e77300c9-6d24-438a-9202-fd3378f8e203" + "EASTUS:20250602T214822Z:4e35ba78-70ef-4ec4-9245-683ac69d7db6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2153899977D04C5F92D979FF7445F937 Ref B: MNZ221060610007 Ref C: 2025-06-02T21:48:22Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:29 GMT" + "Mon, 02 Jun 2025 21:48:21 GMT" + ], + "Content-Length": [ + "905" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1198.2011031735\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-entn-gensecond/Versions/18362.1198.2011031735\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxNzExMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-entn-gensecond/versions/18362.1256.2012032308?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1lbnRuLWdlbnNlY29uZC92ZXJzaW9ucy8xODM2Mi4xMjU2LjIwMTIwMzIzMDg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0dc49936-8ef9-4419-8f47-ace71ffa66f0" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c7a2bfff-dc9a-4123-b151-893e22fbe337" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12961,Microsoft.Compute/GetVMImageFromLocation30Min;73961" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "dd913c6e-5fc5-4524-a915-df8bf1a4d88f" - ], - "Cache-Control": [ - "no-cache" + "ebb78aff-2391-4e6a-853b-9c2c3b3f88ba" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1f48b59e-e89e-4916-bb49-7fbe09b27242" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14738" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a1af7935-bcf8-41d7-abb5-19e2d38b5be0" + "b9dc4170-22c0-42e3-8c05-9d1b8d586e49" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012705Z:a1af7935-bcf8-41d7-abb5-19e2d38b5be0" + "EASTUS:20250602T214823Z:b9dc4170-22c0-42e3-8c05-9d1b8d586e49" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5DF96DFB857045EBB75200A6DC5731D3 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:48:23Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:04 GMT" + "Mon, 02 Jun 2025 21:48:22 GMT" + ], + "Content-Length": [ + "905" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1256.2012032308\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-entn-gensecond/Versions/18362.1256.2012032308\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20171217?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxNzEyMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-evd/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1ldmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "48b2af78-38ab-4d6c-89ef-ff5394fd866b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "4e0a6bbd-283f-4f75-b191-1e51e26e4261" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20171217\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15977,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43977" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "888f17a6-fac6-4005-8d65-a6fd0890bade" + "0877c2b3-9bf9-4f1d-882e-be492c083ee7" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b474824a-93fd-458e-8d2e-661b07b1f2f9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "d6381e14-6a6e-46bf-b882-0357974ac9df" + "713ea9de-1eb0-410f-9de8-ddac9efe684a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012630Z:d6381e14-6a6e-46bf-b882-0357974ac9df" + "EASTUS:20250602T214823Z:713ea9de-1eb0-410f-9de8-ddac9efe684a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FB8A7BF2B382457384ED6C67411F8B01 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:48:23Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:29 GMT" + "Mon, 02 Jun 2025 21:48:22 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20171217?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxNzEyMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1wcm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "eec500bb-10e8-4249-8354-cf2eacb311b3" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b9148e16-0057-4d85-aec8-e2d00ed527cd" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20171217\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15976,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43976" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ecb77e64-5854-4548-8c00-534bbe93ff71" + "b08bae9c-71f2-49a2-a1fe-b7711d81a96d" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/67362ea8-3327-4746-9779-6dc275f03528" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14737" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "6432e8af-09f4-4065-b6aa-920ef7de9494" + "40db774d-8abd-4c43-b239-edf076b87e20" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012705Z:6432e8af-09f4-4065-b6aa-920ef7de9494" + "EASTUS:20250602T214823Z:40db774d-8abd-4c43-b239-edf076b87e20" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FE4F71F1F6F141A2AF9B35D9479DAAAA Ref B: MNZ221060609023 Ref C: 2025-06-02T21:48:23Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:04 GMT" + "Mon, 02 Jun 2025 21:48:23 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20180111?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxODAxMTE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-pro-gensecond/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1wcm8tZ2Vuc2Vjb25kL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5fb743a0-8a58-4f82-8e00-5e485fb72ff3" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "dc9d6555-570f-4db1-b46b-c3e83e104b0c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180111\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15975,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43975" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ea90cf22-6abd-464f-bce5-72e560a44165" + "580748c0-01ae-4c5a-9f17-4f1880adc61d" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ccc1cf64-d140-40ba-9f50-69f8835329af" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "49d547fd-e9c6-4d0c-a242-2d0eaaa0bfcc" + "49b1465b-91bf-4037-904b-2433e358e35b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012630Z:49d547fd-e9c6-4d0c-a242-2d0eaaa0bfcc" + "EASTUS2:20250602T214823Z:49b1465b-91bf-4037-904b-2433e358e35b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8D15B2422D3E49BF88DF43CEBEF35CA4 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:48:23Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:30 GMT" + "Mon, 02 Jun 2025 21:48:22 GMT" + ], + "Content-Length": [ + "635" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1198.2011031735\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pro-gensecond/Versions/18362.1198.2011031735\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1256.2012032308\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pro-gensecond/Versions/18362.1256.2012032308\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20180111?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxODAxMTE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-pro-gensecond/versions/18362.1198.2011031735?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1wcm8tZ2Vuc2Vjb25kL3ZlcnNpb25zLzE4MzYyLjExOTguMjAxMTAzMTczNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "24bc0c90-f2ab-4608-b09d-8233550655af" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "26780061-e116-4d0f-83c4-fb204b8fb60a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180111\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12960,Microsoft.Compute/GetVMImageFromLocation30Min;73960" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7f368216-122d-443b-921a-d264bb63efd6" - ], - "Cache-Control": [ - "no-cache" + "fe339c8e-ed2c-4b2c-b1c8-3d0c38212303" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/72590cf2-d9a5-44d0-b520-fc5364a0d26a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14736" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "4dd5ab1f-bced-4d6c-9e52-fba474f972a8" + "c9adfe57-42ed-466d-ba4b-144df2c3a07a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012705Z:4dd5ab1f-bced-4d6c-9e52-fba474f972a8" + "EASTUS2:20250602T214823Z:c9adfe57-42ed-466d-ba4b-144df2c3a07a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A4B3F58FAEE64A45A0DEAD65FC9A69C2 Ref B: MNZ221060608049 Ref C: 2025-06-02T21:48:23Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:04 GMT" + "Mon, 02 Jun 2025 21:48:22 GMT" + ], + "Content-Length": [ + "904" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1198.2011031735\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pro-gensecond/Versions/18362.1198.2011031735\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxODAyMTY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-pro-gensecond/versions/18362.1256.2012032308?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1wcm8tZ2Vuc2Vjb25kL3ZlcnNpb25zLzE4MzYyLjEyNTYuMjAxMjAzMjMwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "78635662-7166-4dd8-b570-27f9c8aa3d19" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8634061a-d2e0-4ebd-9f88-cf9d5f861998" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12959,Microsoft.Compute/GetVMImageFromLocation30Min;73959" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c67f7b88-8d32-453f-98e8-94543386c268" + "019a41ec-ac25-4232-919b-d49bc585794b" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ee00a244-8dd6-41c7-b62b-8f8fcd404448" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e8b984b1-fa99-4387-bf0e-986c280d8525" + "69bcf435-1e56-4ee4-903b-a5e9d5b7824c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012630Z:e8b984b1-fa99-4387-bf0e-986c280d8525" + "EASTUS2:20250602T214823Z:69bcf435-1e56-4ee4-903b-a5e9d5b7824c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6A26DEAEE86C4517A4522A8A41DA89B9 Ref B: MNZ221060609027 Ref C: 2025-06-02T21:48:23Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:30 GMT" + "Mon, 02 Jun 2025 21:48:23 GMT" + ], + "Content-Length": [ + "904" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1256.2012032308\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pro-gensecond/Versions/18362.1256.2012032308\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxODAyMTY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-pro-zh-cn-gensecond/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1wcm8temgtY24tZ2Vuc2Vjb25kL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9a5585f3-3102-4342-a898-51f078a698f5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "99151195-fe41-44ac-8930-ec66826a55ed" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15974,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43974" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ee9c4ece-358d-4787-8bdf-63aeda62d6f4" - ], - "Cache-Control": [ - "no-cache" + "11ba7d3a-3660-4055-a8b5-a0343de7ef7d" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d004ab42-3712-4016-99ee-da9219a135e8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a01334e6-0df5-4467-a15d-e978930df25b" + "85df5b9c-a204-46db-96ad-e6c229d651e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012705Z:a01334e6-0df5-4467-a15d-e978930df25b" + "EASTUS2:20250602T214823Z:85df5b9c-a204-46db-96ad-e6c229d651e7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9999886F89A345E6A739F7041EAE635B Ref B: MNZ221060608049 Ref C: 2025-06-02T21:48:23Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:04 GMT" + "Mon, 02 Jun 2025 21:48:23 GMT" + ], + "Content-Length": [ + "647" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1198.2011031735\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pro-zh-cn-gensecond/Versions/18362.1198.2011031735\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1256.2012032308\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pro-zh-cn-gensecond/Versions/18362.1256.2012032308\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxODAzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-pro-zh-cn-gensecond/versions/18362.1198.2011031735?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1wcm8temgtY24tZ2Vuc2Vjb25kL3ZlcnNpb25zLzE4MzYyLjExOTguMjAxMTAzMTczNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ab5e044e-d64c-4e82-b0f2-df6bd4f31378" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "688c79ad-0ec6-46c0-bd30-c6f87e92184b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12958,Microsoft.Compute/GetVMImageFromLocation30Min;73958" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "05ce1c15-69bb-4805-a6b5-47a64f835102" + "78af1849-d4db-49e3-b901-3ee5055b0be6" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7043ac3f-42f2-4196-9df5-d903938b30ec" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e6a00c57-e118-4acd-8422-b4c085602aa3" + "fc37fa7c-426d-4325-a286-28367d7ec1e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012630Z:e6a00c57-e118-4acd-8422-b4c085602aa3" + "EASTUS2:20250602T214823Z:fc37fa7c-426d-4325-a286-28367d7ec1e8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D9251ED882C347AFA4ABEFF849A94DE0 Ref B: MNZ221060618009 Ref C: 2025-06-02T21:48:23Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:30 GMT" + "Mon, 02 Jun 2025 21:48:23 GMT" + ], + "Content-Length": [ + "910" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1198.2011031735\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pro-zh-cn-gensecond/Versions/18362.1198.2011031735\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxODAzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-pro-zh-cn-gensecond/versions/18362.1256.2012032308?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1wcm8temgtY24tZ2Vuc2Vjb25kL3ZlcnNpb25zLzE4MzYyLjEyNTYuMjAxMjAzMjMwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bf890894-c6ac-4013-b140-65f29d3a4e68" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "644471c2-bd1f-4091-a26d-c1d78a365887" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Pragma": [ + "no-cache" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12957,Microsoft.Compute/GetVMImageFromLocation30Min;73957" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "1115fc40-bc53-4afc-b2d3-4e3eba14ad50" + "2b523301-749d-477d-94c2-413a7e1f1491" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ec159ed0-3ce9-4f2b-8f03-21f4d1b086af" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a41bcc3f-2745-4d51-9b0c-0c9d66f04649" + "71a8d9bb-3632-47a0-9c6d-210b8350f2b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012705Z:a41bcc3f-2745-4d51-9b0c-0c9d66f04649" + "EASTUS:20250602T214824Z:71a8d9bb-3632-47a0-9c6d-210b8350f2b7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7A07F15459B6403D8FC6B8CCA22F69F2 Ref B: MNZ221060619023 Ref C: 2025-06-02T21:48:24Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:05 GMT" + "Mon, 02 Jun 2025 21:48:23 GMT" + ], + "Content-Length": [ + "910" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1256.2012032308\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pro-zh-cn-gensecond/Versions/18362.1256.2012032308\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxODA0MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-pron/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1wcm9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9c3185ca-535f-41d5-b0d3-8b164da56362" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "01b82362-98fa-4479-8f6d-912ffe8e4828" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15973,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43973" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c98a7f74-4298-46e2-a057-99df91d1e8d0" - ], - "Cache-Control": [ - "no-cache" + "270360d4-d89a-487c-bd41-60643a28c094" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5eaa80f0-f598-4247-8304-6b50dd45e427" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "084b5e0e-665a-4190-a445-85725f3e6329" + "569b9370-4fbe-4b77-bc2d-28e3a051eb60" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012630Z:084b5e0e-665a-4190-a445-85725f3e6329" + "EASTUS2:20250602T214824Z:569b9370-4fbe-4b77-bc2d-28e3a051eb60" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 16D48A480D2945AEB74C035D3D1C32F8 Ref B: MNZ221060608037 Ref C: 2025-06-02T21:48:24Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:30 GMT" + "Mon, 02 Jun 2025 21:48:23 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxODA0MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-pron-gensecond/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1wcm9uLWdlbnNlY29uZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "cc07406b-b2c0-4a35-b464-721eb11a04af" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "21aa085c-ac4b-4741-a7e9-fb6809cb7392" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15972,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43972" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "cc7179e7-5a5b-408b-9649-bd9f4f70827c" - ], - "Cache-Control": [ - "no-cache" + "39ea534c-a923-4afd-82c8-3c600b9f2e86" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5457bcda-2172-48ef-950e-adf12e4fb851" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14733" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "1ed57244-41ee-4ae5-a8a2-c3a204a123e4" + "ab3968d1-4f4a-4b3f-bfc8-b2b2ec70723e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012705Z:1ed57244-41ee-4ae5-a8a2-c3a204a123e4" + "EASTUS2:20250602T214824Z:ab3968d1-4f4a-4b3f-bfc8-b2b2ec70723e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 88A5E6FE60924E00B570D88167435716 Ref B: MNZ221060609027 Ref C: 2025-06-02T21:48:24Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:05 GMT" + "Mon, 02 Jun 2025 21:48:24 GMT" + ], + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1198.2011031735\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pron-gensecond/Versions/18362.1198.2011031735\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1256.2012032308\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pron-gensecond/Versions/18362.1256.2012032308\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxODA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-pron-gensecond/versions/18362.1198.2011031735?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1wcm9uLWdlbnNlY29uZC92ZXJzaW9ucy8xODM2Mi4xMTk4LjIwMTEwMzE3MzU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "39ae3ef3-28d8-4dfc-82bf-507f368590a0" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b9f3051a-8d7b-4a92-bb8a-b0831b604709" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12956,Microsoft.Compute/GetVMImageFromLocation30Min;73956" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "41c6ece0-7b6d-42b9-ad7c-0facf91794bb" + "b0cc6bc8-50ad-418e-bea0-378d2322ead8" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/abf016c6-4f88-4f65-b64e-6d6ac6ffdf25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "44b68df0-5fc2-476f-998e-a1b03dbfe852" + "b1d71b9a-7b4f-4d99-9eaf-fb291ad93023" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012631Z:44b68df0-5fc2-476f-998e-a1b03dbfe852" + "EASTUS2:20250602T214825Z:b1d71b9a-7b4f-4d99-9eaf-fb291ad93023" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 911201DCD28A49A9889C340C21EA8142 Ref B: MNZ221060609017 Ref C: 2025-06-02T21:48:24Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:30 GMT" + "Mon, 02 Jun 2025 21:48:24 GMT" + ], + "Content-Length": [ + "905" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1198.2011031735\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pron-gensecond/Versions/18362.1198.2011031735\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxODA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h1-pron-gensecond/versions/18362.1256.2012032308?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMS1wcm9uLWdlbnNlY29uZC92ZXJzaW9ucy8xODM2Mi4xMjU2LjIwMTIwMzIzMDg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "325642a3-15ff-4228-b9e3-0cc29c8ef02b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8010909f-e10c-47e2-8b25-120c9481da1a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12955,Microsoft.Compute/GetVMImageFromLocation30Min;73955" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "b77b889d-9e83-44a1-a953-8d6ed98685fd" - ], - "Cache-Control": [ - "no-cache" + "a2b98438-6ef2-4486-925c-96289828de18" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9f1a1e20-a20b-406e-9fab-29b122ceacab" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14732" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "608a5842-370e-42ea-8a98-7d78fea9a581" + "6c36509a-9703-4c12-ac91-fe4c719fc67a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012705Z:608a5842-370e-42ea-8a98-7d78fea9a581" + "EASTUS2:20250602T214825Z:6c36509a-9703-4c12-ac91-fe4c719fc67a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CD1E29F9C51F4048844D6D49238976FB Ref B: MNZ221060618011 Ref C: 2025-06-02T21:48:25Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:05 GMT" + "Mon, 02 Jun 2025 21:48:25 GMT" + ], + "Content-Length": [ + "905" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18362.1256.2012032308\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h1-pron-gensecond/Versions/18362.1256.2012032308\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxODA2MTM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "68ae6af1-49ef-4566-ab94-3d445d207b8a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a3592b27-4282-45ac-985c-03448f731fc0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15971,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43971" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "61918988-1a18-4b78-90a0-6f89923d1139" + "7660b49e-77ce-41f1-8dbd-4d2428f66e3a" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/de224ddb-9d18-4e82-bca5-9b29d8f2d2f0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "cce80ee2-0592-4455-b0cd-fff82111823b" + "f6519063-15f1-406f-ad81-b0132a7cb8ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012631Z:cce80ee2-0592-4455-b0cd-fff82111823b" + "EASTUS:20250602T214825Z:f6519063-15f1-406f-ad81-b0132a7cb8ec" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F44FB3A85B794CB0B9133653ADA6DAC2 Ref B: MNZ221060608019 Ref C: 2025-06-02T21:48:25Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:30 GMT" + "Mon, 02 Jun 2025 21:48:25 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions/2.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnMvMi4xMjcuMjAxODA2MTM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-ent-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1lbnQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b99184d6-0f8f-4996-86f6-b48845d31da8" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "10aa660a-e46f-4ec9-b873-5ff2f2a714fb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk/Versions/2.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15970,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43970" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "197d3b23-a14b-48e1-8833-74b007f0bdff" + "4c088796-3841-4c8b-b1e0-87b1af6b813b" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/04d0ed0b-9241-4bcf-aff7-8942ec46aa32" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14731" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ea45e826-a6d9-4786-8a9a-7a48792f8954" + "a0fc4f04-0ff5-4401-ab96-9c01c76d4518" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012706Z:ea45e826-a6d9-4786-8a9a-7a48792f8954" + "EASTUS2:20250602T214825Z:a0fc4f04-0ff5-4401-ab96-9c01c76d4518" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC0443AA449F48C49697B8EA6756DC2F Ref B: MNZ221060619053 Ref C: 2025-06-02T21:48:25Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:05 GMT" + "Mon, 02 Jun 2025 21:48:24 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-entn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1lbnRuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "212ea6ce-7e92-4b06-84cd-067b8137d74b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5f543e56-8033-4ac6-93b6-426b212a90e7" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170420\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170420\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170628\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170628\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4518" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15969,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43969" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "907fe28a-d89f-4974-bcc9-47763d56b0a7" + "05ea134f-0863-412d-9ccc-42f17478ea96" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7dd17f31-d9ae-4791-99f3-4daa90b0aec2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "822b4e38-5106-4e5d-a1c7-db693cad8d43" + "02268fab-610c-4ee0-93e2-7348aa2e5642" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012631Z:822b4e38-5106-4e5d-a1c7-db693cad8d43" + "EASTUS:20250602T214825Z:02268fab-610c-4ee0-93e2-7348aa2e5642" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7909C2B5060F4AAC8F941A0AA52248CB Ref B: MNZ221060618037 Ref C: 2025-06-02T21:48:25Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:31 GMT" + "Mon, 02 Jun 2025 21:48:25 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-entn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1lbnRuLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "556fb9de-36e3-4905-88d4-4bcdc2a07757" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "9c57b37e-7a78-4731-b25b-b5e1bcce0fa3" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170420\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170420\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170628\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170628\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4518" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15968,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43968" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "d6bac46e-30c1-4703-b951-da4e46fe1b10" + "62f9e7bd-bd63-4c0f-87fc-c1964b4b3f97" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6cb3c674-6231-43b2-9340-296a415a78ec" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "364f7ce0-873d-4d71-8934-3677b2da893b" + "2b261e0f-53d1-4efd-ad50-0835249f7350" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012706Z:364f7ce0-873d-4d71-8934-3677b2da893b" + "EASTUS2:20250602T214825Z:2b261e0f-53d1-4efd-ad50-0835249f7350" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8767CC88788C4F1A99344E39E35F8169 Ref B: MNZ221060610027 Ref C: 2025-06-02T21:48:25Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:05 GMT" + "Mon, 02 Jun 2025 21:48:25 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170406?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA0MDY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-evd/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1ldmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f5cb9836-5201-4854-9644-acd08c96e2ce" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "191acb73-459a-4aa4-94ee-0288e91eed88" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170406\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15967,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43967" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "bd67d9f6-fd75-4127-bba7-e2f8554a9fee" + "93612fac-3618-4971-88b3-f60c0be33eb2" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/482d8352-3e32-4ecc-b0a6-67f3ad826995" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "aacd266e-5e4a-4f1e-abd0-805c7681957c" + "55fd23a4-a3b2-4915-9fbf-1e4780607b58" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012631Z:aacd266e-5e4a-4f1e-abd0-805c7681957c" + "EASTUS:20250602T214825Z:55fd23a4-a3b2-4915-9fbf-1e4780607b58" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 57E0DA2378B14D4794C9DA6AF4887AB1 Ref B: MNZ221060619049 Ref C: 2025-06-02T21:48:25Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:31 GMT" + "Mon, 02 Jun 2025 21:48:25 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170406?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA0MDY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-evd-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1ldmQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "60c81add-64d3-4f40-9431-59fa08d51ab0" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "11a15e56-851c-444f-ac98-0b4dc5d2181c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170406\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15966,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43966" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "13f7571c-2266-4094-b777-4e9a463d7104" + "fd93bb3a-8979-44ae-acc4-bc447e3ec3e6" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/93d88e69-c0f5-414a-a9a9-50b82f463099" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "3ba758c9-3391-4cea-9742-89c81dcbd95b" + "443f8a94-07bb-43b1-bb9d-a89739df544f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012706Z:3ba758c9-3391-4cea-9742-89c81dcbd95b" + "EASTUS:20250602T214825Z:443f8a94-07bb-43b1-bb9d-a89739df544f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 568CAE86766D490B99D8AF41C76E5F6B Ref B: MNZ221060619047 Ref C: 2025-06-02T21:48:25Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:05 GMT" + "Mon, 02 Jun 2025 21:48:25 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170420?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA0MjA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1wcm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8a27f7f9-f97e-4ed1-9e0e-9bae6c8d7923" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a18e42fe-e49a-410e-aed0-e9cf45c51d83" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170420\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170420\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15965,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43965" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "fca12975-b440-42de-9753-64bdbc9f4acc" + "8838a501-50bd-405e-b3e5-871f05b3286a" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5f99ae35-e0a8-4a43-878e-1aa15cb6cf88" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "028d65fd-a530-4e9f-b88b-c775f4dd5254" + "36e82811-a63f-4e31-b9bd-5e8e57040d44" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012631Z:028d65fd-a530-4e9f-b88b-c775f4dd5254" + "EASTUS2:20250602T214826Z:36e82811-a63f-4e31-b9bd-5e8e57040d44" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F008CBB1E60D45029EFA8AAF6C9C40EC Ref B: MNZ221060608017 Ref C: 2025-06-02T21:48:26Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:31 GMT" + "Mon, 02 Jun 2025 21:48:25 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170420?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA0MjA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-pro-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1wcm8tZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "395e05e7-2dd4-4480-880e-fcdb9090c949" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5326d853-0c1c-49c4-bb1d-93ea9e3b5129" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170420\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170420\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15964,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43964" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "aa196884-3367-4b1f-b7c5-f7aadc596433" + "6e2f5f40-54d0-411a-a4f5-b17bde50ad7b" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2c99a257-3f62-4708-b5c1-3a101037b3d0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a4b17d82-cd20-4c02-b8dc-deb1401b7b9c" + "33221384-0398-4e15-9d16-5753f1df1d78" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012706Z:a4b17d82-cd20-4c02-b8dc-deb1401b7b9c" + "EASTUS2:20250602T214826Z:33221384-0398-4e15-9d16-5753f1df1d78" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 142E69BF316147EFB66439058AD04D45 Ref B: MNZ221060609017 Ref C: 2025-06-02T21:48:26Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:05 GMT" + "Mon, 02 Jun 2025 21:48:25 GMT" + ], + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18363.1500.2104092145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-pro-g2/Versions/18363.1500.2104092145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18363.1556.2105042120\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-pro-g2/Versions/18363.1556.2105042120\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-pro-g2/versions/18363.1500.2104092145?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1wcm8tZzIvdmVyc2lvbnMvMTgzNjMuMTUwMC4yMTA0MDkyMTQ1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f8baa51e-1e07-4b7a-af85-e819c85f5331" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "9e1532a6-d99d-403a-84db-d53b262d1640" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12954,Microsoft.Compute/GetVMImageFromLocation30Min;73954" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "b55542cb-6716-4657-8852-5a8a8c1280a9" - ], - "Cache-Control": [ - "no-cache" + "c497e6c5-f13a-451e-8d6c-8cb3de1f28a6" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/38219e1c-aa41-4941-ae31-c8ed314b0c6e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "5766f33e-91fc-449e-bd4c-3526f9a1b7d6" + "516fd760-b9c0-4f0c-8a1c-81ad7a4a8ed0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012631Z:5766f33e-91fc-449e-bd4c-3526f9a1b7d6" + "EASTUS2:20250602T214826Z:516fd760-b9c0-4f0c-8a1c-81ad7a4a8ed0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6EBFE1FE032645B3B85FC124280B07DF Ref B: MNZ221060608045 Ref C: 2025-06-02T21:48:26Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:31 GMT" + "Mon, 02 Jun 2025 21:48:26 GMT" + ], + "Content-Length": [ + "897" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18363.1500.2104092145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-pro-g2/Versions/18363.1500.2104092145\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-pro-g2/versions/18363.1556.2105042120?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1wcm8tZzIvdmVyc2lvbnMvMTgzNjMuMTU1Ni4yMTA1MDQyMTIwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "047932e5-19cc-445d-9f0f-fc8e69b9fa8f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "446c78f6-0f5b-48a4-b608-d370f1644e6b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12953,Microsoft.Compute/GetVMImageFromLocation30Min;73953" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "08d41975-b744-4010-b3c1-880384e6228d" + "372258a9-2766-4843-807e-ef82bf2596f9" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d9725019-369c-485f-93bf-94995f1dc00c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "0353170c-b238-4b59-8d47-127dc86a99b8" + "c6d40bb5-7167-4715-a3ac-27bbe63c29e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012706Z:0353170c-b238-4b59-8d47-127dc86a99b8" + "EASTUS2:20250602T214826Z:c6d40bb5-7167-4715-a3ac-27bbe63c29e4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D9D65EA44498453F8EBF63BA63209316 Ref B: MNZ221060610029 Ref C: 2025-06-02T21:48:26Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:05 GMT" + "Mon, 02 Jun 2025 21:48:26 GMT" + ], + "Content-Length": [ + "897" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18363.1556.2105042120\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-pro-g2/Versions/18363.1556.2105042120\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170628?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA2Mjg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-pron/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1wcm9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ac7f9a51-3315-4e19-a5ff-bc555ccd0088" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "25ff9d0d-a9f5-4efe-ad13-d5b15cbdfc45" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170628\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170628\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15963,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43963" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "e77ca96a-d1d1-47a6-ba04-b9c0ae098ef0" - ], - "Cache-Control": [ - "no-cache" + "c9f9cc38-9987-416a-9a1f-fc7291a62a79" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c4514df9-c9af-432d-ac3f-6ddcc646d7f5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "0835fadf-aff7-4686-9cde-7415f36471d6" + "ddb8d53f-dce6-4c77-a078-d157603082c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012632Z:0835fadf-aff7-4686-9cde-7415f36471d6" + "EASTUS:20250602T214826Z:ddb8d53f-dce6-4c77-a078-d157603082c3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A7FED8A9243A4F20B319C5F7FEA6B484 Ref B: MNZ221060618031 Ref C: 2025-06-02T21:48:26Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:31 GMT" + "Mon, 02 Jun 2025 21:48:26 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170628?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA2Mjg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-pron-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1wcm9uLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "429d4a1f-1eab-447a-8cca-9b6e93d05245" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1ad0915a-862c-4067-8788-87bd1fd87460" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170628\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170628\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15962,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43962" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ae5185c7-f82f-41fe-8eb8-5f3a3a35ae84" - ], - "Cache-Control": [ - "no-cache" + "4f6e2956-9bab-4fd7-97db-b1765d7611e3" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/36696e55-7c9e-4d12-9f0a-70f8444dd850" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d37193a9-24a2-4a40-8627-afc72f8da0b4" + "3e557467-00f5-4dd5-b7cc-dde6ec6461c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012706Z:d37193a9-24a2-4a40-8627-afc72f8da0b4" + "EASTUS2:20250602T214826Z:3e557467-00f5-4dd5-b7cc-dde6ec6461c1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 17E1179B3C6E43C08BB835616D833BC7 Ref B: MNZ221060610045 Ref C: 2025-06-02T21:48:26Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:05 GMT" - ] - }, - "StatusCode": 200 - }, + "Mon, 02 Jun 2025 21:48:25 GMT" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18363.1500.2104092145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-pron-g2/Versions/18363.1500.2104092145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"18363.1556.2105042120\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-pron-g2/Versions/18363.1556.2105042120\"\r\n }\r\n]", + "StatusCode": 200 + }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA3MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-pron-g2/versions/18363.1500.2104092145?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1wcm9uLWcyL3ZlcnNpb25zLzE4MzYzLjE1MDAuMjEwNDA5MjE0NT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "abd3774e-b942-479d-bc96-66b85e5357da" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "03219353-f230-46f8-b89d-26801f121aa0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12952,Microsoft.Compute/GetVMImageFromLocation30Min;73952" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "800f365d-82bb-42eb-9a2e-62545d9d2e0d" + "eec76bd7-db4e-4f09-bf49-1234e09b7263" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/759cf822-c39f-400e-a4ef-0596ec549d17" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d0d7b856-7889-452e-a442-9c0ae7d1f1cf" + "37e29a5e-c546-404f-a5c5-20692df817e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012632Z:d0d7b856-7889-452e-a442-9c0ae7d1f1cf" + "EASTUS2:20250602T214826Z:37e29a5e-c546-404f-a5c5-20692df817e9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CE3D3E38810F4BCEA7BCF9EBD3721518 Ref B: MNZ221060619025 Ref C: 2025-06-02T21:48:26Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:31 GMT" + "Mon, 02 Jun 2025 21:48:26 GMT" + ], + "Content-Length": [ + "898" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18363.1500.2104092145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-pron-g2/Versions/18363.1500.2104092145\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA3MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/19h2-pron-g2/versions/18363.1556.2105042120?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMTloMi1wcm9uLWcyL3ZlcnNpb25zLzE4MzYzLjE1NTYuMjEwNTA0MjEyMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c2a50bb4-8a10-4914-9257-12bde1074f50" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "283d6a23-77f8-4dd9-a078-a96e6ba5fc84" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12951,Microsoft.Compute/GetVMImageFromLocation30Min;73951" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "50beb981-a6ea-4ff5-9c4b-a1fd8c006a05" - ], - "Cache-Control": [ - "no-cache" + "041a628d-59aa-44ee-a365-c17153caa280" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dab03fb1-9827-4185-854e-67a712729389" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9280400f-91a3-4107-bf81-1505f20e8f5b" + "c4e03c48-f2af-4316-9436-3c86b44fd54c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012706Z:9280400f-91a3-4107-bf81-1505f20e8f5b" + "EASTUS2:20250602T214827Z:c4e03c48-f2af-4316-9436-3c86b44fd54c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 574312005F5842B2A0EA9D6C62BBBC6D Ref B: MNZ221060618045 Ref C: 2025-06-02T21:48:27Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:06 GMT" + "Mon, 02 Jun 2025 21:48:26 GMT" + ], + "Content-Length": [ + "898" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"18363.1556.2105042120\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/19h2-pron-g2/Versions/18363.1556.2105042120\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170811?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA4MTE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h1-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMS1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "dc71a9c6-708e-4c87-86a9-adc889ef4ead" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "21a8db2b-38d2-45f3-b512-acc97764a45b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170811\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15961,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43961" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "12d12d44-a736-426e-81b2-3781237e40b1" + "be9cb632-33f6-4086-9d9e-98d13b637ecc" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f6d73532-124e-46ba-8aec-57a5f812608f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a539f2d7-7174-47ab-90f5-0dbb15ca238b" + "9be29eaa-b67a-42ce-81d2-31d00342b15b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012632Z:a539f2d7-7174-47ab-90f5-0dbb15ca238b" + "EASTUS:20250602T214827Z:9be29eaa-b67a-42ce-81d2-31d00342b15b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 75BBB7F7713844BF8E01B9A4244BFFAA Ref B: MNZ221060618039 Ref C: 2025-06-02T21:48:27Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:32 GMT" + "Mon, 02 Jun 2025 21:48:26 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170811?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA4MTE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h1-ent-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMS1lbnQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "614f25e1-c57b-4139-bbcb-599b0c8203b7" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5283c71c-ac29-4eb9-b346-f854d2370adb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170811\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15960,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43960" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "b92a29da-f7cc-40f8-a30e-360be8b02440" + "642110c1-3db7-4ca9-a5d7-47c76ba47215" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5fb9ee00-8d06-4efd-a62c-9b4b05bcebd0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "016c3e34-606c-4146-b174-045310883607" + "8d66a70d-ebca-4f5d-94ec-06cb965835e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012706Z:016c3e34-606c-4146-b174-045310883607" + "EASTUS:20250602T214827Z:8d66a70d-ebca-4f5d-94ec-06cb965835e1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FBD359EEBFF44A9D9D279FD3ABF7C6A5 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:48:27Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:06 GMT" + "Mon, 02 Jun 2025 21:48:26 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA5MTg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h1-entn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMS1lbnRuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "38199264-d3d2-4d76-9f69-d415e3bdf6f5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "de5b1ce2-a2ba-4bdb-acdc-b0eb416ee2bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15959,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43959" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "5df3f0f7-25a6-4cb8-a5ae-ee75e0270954" + "26a306f4-034b-4e1f-8646-7b5b1180efb9" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3bf4ff5d-4b1f-4189-aa3e-2e25794875a0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "981faac5-875f-4333-9af8-0cc50c0aba05" + "b1aa0159-0f87-4248-9fea-43a0c4a83131" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012632Z:981faac5-875f-4333-9af8-0cc50c0aba05" + "EASTUS2:20250602T214827Z:b1aa0159-0f87-4248-9fea-43a0c4a83131" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2E0E5A2405594E38A100597FEBC64861 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:48:27Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:32 GMT" + "Mon, 02 Jun 2025 21:48:27 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzA5MTg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h1-entn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMS1lbnRuLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d41d4548-0a5a-4e8c-b76e-3ec73d212670" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b9e251ee-d8dc-481b-8911-025520c694f4" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15958,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43958" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "56f955f9-7756-4da7-a125-9450d653694b" + "f1bf3744-7d1a-4c50-996f-6efed74c3c0a" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ea248c44-b268-4d17-b820-0b978ce50267" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "03ae3d92-aa99-4984-a468-59bc7eb5c566" + "f38f9b62-7088-4077-bb25-e5eb1fc478b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012706Z:03ae3d92-aa99-4984-a468-59bc7eb5c566" + "EASTUS2:20250602T214827Z:f38f9b62-7088-4077-bb25-e5eb1fc478b6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1EE2B1B04CD7445CBE9B650ADDF51B72 Ref B: MNZ221060610045 Ref C: 2025-06-02T21:48:27Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:06 GMT" + "Mon, 02 Jun 2025 21:48:26 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzEwMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h1-evd/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMS1ldmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e1261042-7c54-4e45-918a-98b5f64e9008" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "588c4eb3-fd50-403e-a644-1f0dcc53f1a7" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15957,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43957" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "3e286e89-5c15-4b3a-8079-64e92e3346f7" + "7ebd2b95-5c77-432c-b868-5f7862cf9508" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/93b5b56a-e504-4c54-a32f-5eaa945de8c9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ce228fb7-e796-47a0-a52f-cd49831048af" + "4d43f618-5f7e-41ee-bd12-da2f548fdcff" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012632Z:ce228fb7-e796-47a0-a52f-cd49831048af" + "EASTUS2:20250602T214827Z:4d43f618-5f7e-41ee-bd12-da2f548fdcff" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 10A9018EAD4E448FB049577C6AB2CDF8 Ref B: MNZ221060609021 Ref C: 2025-06-02T21:48:27Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:32 GMT" + "Mon, 02 Jun 2025 21:48:26 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzEwMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h1-evd-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMS1ldmQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b996b2ea-0cec-4baf-924d-83b6965587da" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "43ed1d8a-5717-43d2-b3ae-8f7c45bc9fe3" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15956,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43956" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "981a7d33-274e-481d-95ff-d44391f09069" + "045af4e2-5e35-42c9-95a9-5721958ac26f" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c4705182-c485-42b5-8300-dcc00021efd6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f2eeb0c8-7403-4e4e-a8c1-248e376e6eef" + "1bc62846-f482-4b80-a38e-8250d3c22fe9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012707Z:f2eeb0c8-7403-4e4e-a8c1-248e376e6eef" + "EASTUS2:20250602T214827Z:1bc62846-f482-4b80-a38e-8250d3c22fe9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 46EB42261B064F9DBE7DB7D573D38D76 Ref B: MNZ221060608037 Ref C: 2025-06-02T21:48:27Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:06 GMT" + "Mon, 02 Jun 2025 21:48:27 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzExMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h1-pro-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMS1wcm8tZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "81fde553-e8b6-40c9-8e72-672cfe569fee" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f796a20a-2266-433e-a34e-dceb13ca4ed5" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15955,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43955" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ac75f50a-052f-4c98-9950-440646debf69" + "ed653914-80c5-49af-9733-d294bc915ef3" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d3a050d3-ab24-47c5-b4c2-a6a9590843ce" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "55e285b1-9866-4893-af93-0bfbe5b6d015" + "76526fa6-f717-4ee3-b0ca-e9f095d7231c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012632Z:55e285b1-9866-4893-af93-0bfbe5b6d015" + "EASTUS:20250602T214827Z:76526fa6-f717-4ee3-b0ca-e9f095d7231c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7312644FE1934C5482011282EA6251C3 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:48:27Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:32 GMT" + "Mon, 02 Jun 2025 21:48:27 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxNzExMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h1-pro-zh-cn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMS1wcm8temgtY24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7e06a5cd-40ca-4b59-baed-085f977a8de1" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "dec6a235-3f02-4da1-9c92-60ef5e33eb5b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15954,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43954" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "02e79cc2-2925-4e13-8281-392b1b3d1703" + "7c9a4e7e-aa68-441c-a1bc-bde13d66f797" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0e6a5fc9-fe04-4e63-abf3-85f94d26253b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "75eeb97f-7cbb-4a44-8601-8523c63c33f7" + "21f44678-8229-418b-b7a2-4c31b70e46ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012707Z:75eeb97f-7cbb-4a44-8601-8523c63c33f7" + "EASTUS:20250602T214827Z:21f44678-8229-418b-b7a2-4c31b70e46ae" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 96A2E855AB0942B298B72F7C8E77868C Ref B: MNZ221060609049 Ref C: 2025-06-02T21:48:27Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:06 GMT" + "Mon, 02 Jun 2025 21:48:27 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180111?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxODAxMTE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h1-pron/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMS1wcm9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d4335e02-d8ff-402c-ae29-8738a14909b7" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "db63b1da-41f4-4949-a088-bdb9bf3b55d9" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180111\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15953,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43953" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2865d2f9-c1e8-4e83-84db-660c70bf0673" + "50e47fdf-78a5-4fb0-b509-2a8b86113012" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6528e13b-a554-49bc-a3e7-3dc30b3755ac" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8b03060f-4afe-4b4c-9e2f-fe1074f11e8c" + "b8dd3641-3f3f-41d3-9528-5c3d0c24d7b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012633Z:8b03060f-4afe-4b4c-9e2f-fe1074f11e8c" + "EASTUS:20250602T214828Z:b8dd3641-3f3f-41d3-9528-5c3d0c24d7b1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B310D99D662F47DABE04AF66C925E8B2 Ref B: MNZ221060608019 Ref C: 2025-06-02T21:48:28Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:32 GMT" + "Mon, 02 Jun 2025 21:48:27 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180111?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxODAxMTE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h1-pron-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMS1wcm9uLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "eb3d32cb-7406-4681-9415-3bff23263c9c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b1839258-8ce9-4b47-88f2-c2b4710990c5" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180111\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15952,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43952" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "6006d7f2-418a-494e-a1cf-368695535306" + "bfed7ebb-52aa-4f6d-8229-52e5e81f66ea" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3899a76c-c80e-401d-8752-4eb40c7f9f18" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d7fc03ac-e8d9-481d-b455-008ca83594b2" + "5610b6fe-0d7e-4207-b02c-527cbeb512cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012707Z:d7fc03ac-e8d9-481d-b455-008ca83594b2" + "EASTUS:20250602T214828Z:5610b6fe-0d7e-4207-b02c-527cbeb512cf" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F40A9EF8BDAE43DEB9D3320F45A8A3D9 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:48:28Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:06 GMT" + "Mon, 02 Jun 2025 21:48:27 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxODAyMTY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2007a113-22c0-46eb-bca5-8e453ca78a9c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "d6d0608f-c856-4ee5-8fc1-3ec8e55d02c9" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15951,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43951" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "f20f4a1c-7a65-43af-a622-1f5d46f06227" + "54e993b1-477f-4b67-8529-3162f5d8b35e" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2c4e61f7-4a47-4e90-921f-f68ac88001f8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "47afc1b4-e5d1-4dc1-993b-faaeeb0947cc" + "65f542cb-bdfe-44a9-bb2e-a8216369707c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012633Z:47afc1b4-e5d1-4dc1-993b-faaeeb0947cc" + "EASTUS:20250602T214828Z:65f542cb-bdfe-44a9-bb2e-a8216369707c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A8B8329CC36B4096A0F65AC0540A204A Ref B: MNZ221060610053 Ref C: 2025-06-02T21:48:28Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:32 GMT" + "Mon, 02 Jun 2025 21:48:28 GMT" + ], + "Content-Length": [ + "599" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-ent/Versions/19042.2846.230329\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-ent/Versions/19042.2965.230505\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxODAyMTY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-ent/versions/19042.2846.230329?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1lbnQvdmVyc2lvbnMvMTkwNDIuMjg0Ni4yMzAzMjk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "22926c29-f04b-47f9-ad76-1766adb0eeaf" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3eaa9d4f-0ede-4e30-a327-22716b58a75d" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12950,Microsoft.Compute/GetVMImageFromLocation30Min;73950" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c1bae154-f608-4d0c-ad24-bf73c9c9594c" - ], - "Cache-Control": [ - "no-cache" + "55b92398-9a0a-4642-9ac1-475ce962f189" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/44b518ca-b262-4601-b3e1-86cd47fb6a90" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "de0ccc74-4067-404b-abf2-cb939800555a" + "c236111a-7426-4bd5-8b06-d344a386cd20" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012707Z:de0ccc74-4067-404b-abf2-cb939800555a" + "EASTUS2:20250602T214828Z:c236111a-7426-4bd5-8b06-d344a386cd20" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 785AC13AB6E9480EACCEF266D4DEEDE8 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:48:28Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:06 GMT" + "Mon, 02 Jun 2025 21:48:28 GMT" + ], + "Content-Length": [ + "1038" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-ent/Versions/19042.2846.230329\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxODAzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-ent/versions/19042.2965.230505?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1lbnQvdmVyc2lvbnMvMTkwNDIuMjk2NS4yMzA1MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "767a167c-9671-4216-910e-c3640cc32ef7" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "08049573-6174-4676-9111-55640b6e0f90" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12949,Microsoft.Compute/GetVMImageFromLocation30Min;73949" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "6e49eeab-9ec4-4e42-b08a-40aea43e5841" + "63912517-3df9-4271-8fe0-b73a39b9d5a6" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/32ed05fb-73c6-4477-a996-33095a1a2144" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "1dad667c-11ec-4b4a-bcac-ef7b2a4e29af" + "ff5f914c-1a74-4cbe-b7b0-ad3f02dfc4c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012633Z:1dad667c-11ec-4b4a-bcac-ef7b2a4e29af" + "EASTUS2:20250602T214828Z:ff5f914c-1a74-4cbe-b7b0-ad3f02dfc4c7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B2F2D1CB2064586BBDE123F64DEEE81 Ref B: MNZ221060610025 Ref C: 2025-06-02T21:48:28Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:33 GMT" + "Mon, 02 Jun 2025 21:48:27 GMT" + ], + "Content-Length": [ + "1038" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-ent/Versions/19042.2965.230505\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxODAzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-ent-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1lbnQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "86f2609f-9dc0-49d5-83b6-18887adb4594" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a26296cc-48b5-4eae-b17a-7a7ef3c0e809" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15950,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43950" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "e5a33885-84f2-4bb3-aff0-4f743e58e44f" - ], - "Cache-Control": [ - "no-cache" + "abc4469e-4baa-412e-88f7-c332800c84e6" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/50b4f5b1-ee62-4f35-93ea-4afc1d190d17" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "65f0ff0e-bd30-4461-81df-4153a0a0d515" + "2748f089-9c0e-4a2c-acbb-d452db6ce85b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012707Z:65f0ff0e-bd30-4461-81df-4153a0a0d515" + "EASTUS:20250602T214828Z:2748f089-9c0e-4a2c-acbb-d452db6ce85b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6F6A8A969C2C4E1C9CF556270DFB00F5 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:48:28Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:06 GMT" + "Mon, 02 Jun 2025 21:48:28 GMT" + ], + "Content-Length": [ + "605" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-ent-g2/Versions/19042.2846.230329\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-ent-g2/Versions/19042.2965.230505\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxODA0MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-ent-g2/versions/19042.2846.230329?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1lbnQtZzIvdmVyc2lvbnMvMTkwNDIuMjg0Ni4yMzAzMjk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a5db5d2b-b77f-451b-a5ea-b1692bb50081" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "20bd09a8-eecd-4a3e-9b11-bba7ae9ae8b7" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12948,Microsoft.Compute/GetVMImageFromLocation30Min;73948" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "cda062bd-3a1e-481d-9b22-fced233047c5" + "ccce00e3-d4ea-4f8c-b6de-163a9ea9b790" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f624a69f-aceb-453d-87ff-daf8cd4c7b67" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d8f631d2-b51e-4947-b919-7c22b0929260" + "22054d0f-d7f8-4781-a036-a9f2bf0a22d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012633Z:d8f631d2-b51e-4947-b919-7c22b0929260" + "EASTUS2:20250602T214828Z:22054d0f-d7f8-4781-a036-a9f2bf0a22d7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CECB3B01ADBC4DCFAD05CAC8DC112C26 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:48:28Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:33 GMT" + "Mon, 02 Jun 2025 21:48:28 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-ent-g2/Versions/19042.2846.230329\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxODA0MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-ent-g2/versions/19042.2965.230505?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1lbnQtZzIvdmVyc2lvbnMvMTkwNDIuMjk2NS4yMzA1MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "081a4e1a-704c-4223-9332-12fcf733c6ad" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "14abfb32-8b58-404a-b798-702059bd9924" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12947,Microsoft.Compute/GetVMImageFromLocation30Min;73947" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "bc51c4a0-71a1-4dcc-9c6d-127d6ef7c53c" - ], - "Cache-Control": [ - "no-cache" + "6c53639c-385a-457b-a21f-048a368e0569" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/68d09b0f-9203-4747-9055-bc60b761fd26" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f0029dda-36ab-48de-9b63-a57e9a3d567f" + "05cd66cd-e3ea-41e0-8748-6399531eae7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012707Z:f0029dda-36ab-48de-9b63-a57e9a3d567f" + "EASTUS2:20250602T214829Z:05cd66cd-e3ea-41e0-8748-6399531eae7f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 785C360B30B2402ABAC698BC38A1F502 Ref B: MNZ221060610019 Ref C: 2025-06-02T21:48:29Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:07 GMT" + "Mon, 02 Jun 2025 21:48:28 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-ent-g2/Versions/19042.2965.230505\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxODA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-entn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1lbnRuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fa3f0601-aca5-48f1-8287-2e19231c9904" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1091947e-6fd8-45cc-9633-3f740cf91b59" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15949,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43949" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7507c173-2bd0-4b57-a8b5-cf1794899248" + "2868f941-1023-4966-80cf-469a37d61370" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8019a0db-731f-499c-9fea-9d40bb8b3ab2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "6834f42c-e3ef-4d2b-985e-1caa9abcdd0a" + "153a0cd4-b9af-46fe-a793-e90c3e464609" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012633Z:6834f42c-e3ef-4d2b-985e-1caa9abcdd0a" + "EASTUS2:20250602T214829Z:153a0cd4-b9af-46fe-a793-e90c3e464609" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B12D2D462C847DF93CD099221E23705 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:48:29Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:33 GMT" + "Mon, 02 Jun 2025 21:48:29 GMT" + ], + "Content-Length": [ + "601" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-entn/Versions/19042.2846.230329\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-entn/Versions/19042.2965.230505\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxODA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-entn/versions/19042.2846.230329?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1lbnRuL3ZlcnNpb25zLzE5MDQyLjI4NDYuMjMwMzI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f347d223-f76c-4d69-9b0b-cfc99e8672df" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3e8414c2-c9fa-4cd4-85e2-f1b7127620c2" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12946,Microsoft.Compute/GetVMImageFromLocation30Min;73946" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c87445e8-1416-41f9-8228-f6cfdbfbbade" - ], - "Cache-Control": [ - "no-cache" + "b6b4e435-daad-4163-9df4-381a77ec673b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ba60b17e-e2ba-4973-b7b9-8fbfe254df98" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f6aab7ba-876f-4ac4-b60f-5ce6c25a911d" + "98ac8b5b-3c6f-4abe-bd86-70e30207c851" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012707Z:f6aab7ba-876f-4ac4-b60f-5ce6c25a911d" + "EASTUS:20250602T214829Z:98ac8b5b-3c6f-4abe-bd86-70e30207c851" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FCB0F90A39EB42389E39B4E107947869 Ref B: MNZ221060618039 Ref C: 2025-06-02T21:48:29Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:07 GMT" + "Mon, 02 Jun 2025 21:48:29 GMT" + ], + "Content-Length": [ + "1039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-entn/Versions/19042.2846.230329\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxODA2MTM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-entn/versions/19042.2965.230505?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1lbnRuL3ZlcnNpb25zLzE5MDQyLjI5NjUuMjMwNTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d656e121-0ba5-42ca-be99-6be189d2c639" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "fd025a5a-8d98-488a-a6d9-43dc500225c5" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12945,Microsoft.Compute/GetVMImageFromLocation30Min;73945" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "3121dfd3-944f-4ceb-9406-5b25c67d9341" + "f131ae83-436b-4ffd-9598-740c60228992" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/af63541f-025e-435f-ad25-7f7727df26aa" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "65e2d193-5f08-4f88-9d0e-77fc7a9a163a" + "90d45563-04ca-4a3d-a84d-79013a413554" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012633Z:65e2d193-5f08-4f88-9d0e-77fc7a9a163a" + "EASTUS:20250602T214829Z:90d45563-04ca-4a3d-a84d-79013a413554" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7A272625CE784164897CED1706716C2A Ref B: MNZ221060609029 Ref C: 2025-06-02T21:48:29Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:33 GMT" + "Mon, 02 Jun 2025 21:48:29 GMT" + ], + "Content-Length": [ + "1039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-entn/Versions/19042.2965.230505\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4xMjcuMjAxODA2MTM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-entn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1lbnRuLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2f22c3ff-fc0d-4459-bdaa-0941d5da4bd5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f94b97bd-dde0-46c3-9c1e-accc3f6dcda7" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15948,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43948" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "23864b45-859d-4dfe-8dec-001300e1e465" - ], - "Cache-Control": [ - "no-cache" + "bfe11027-c490-4979-8d10-1d310d0c8653" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/21b3d91d-f4a8-405b-9ac6-7bfda9abe791" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "559f2f1d-1eef-4b8a-97e6-6c2e1ac5bcdf" + "4899f60b-27d9-4d06-83e3-7f417b6b17af" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012707Z:559f2f1d-1eef-4b8a-97e6-6c2e1ac5bcdf" + "EASTUS2:20250602T214829Z:4899f60b-27d9-4d06-83e3-7f417b6b17af" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2C8A8EAF76AE4BEE835E90EBB368E21D Ref B: MNZ221060619035 Ref C: 2025-06-02T21:48:29Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:07 GMT" + "Mon, 02 Jun 2025 21:48:29 GMT" + ], + "Content-Length": [ + "607" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-entn-g2/Versions/19042.2846.230329\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-entn-g2/Versions/19042.2965.230505\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-entn-g2/versions/19042.2846.230329?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1lbnRuLWcyL3ZlcnNpb25zLzE5MDQyLjI4NDYuMjMwMzI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b67c815a-109d-4fb1-83e2-4c3da08f413d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5bea806b-0698-4e31-8161-5a62365d3b15" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.0.20170415\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.0.20170415\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.0.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170619\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4349" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12944,Microsoft.Compute/GetVMImageFromLocation30Min;73944" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "daa09304-4c07-45f4-aad3-b9da60f4cf64" + "b9ecf9d4-6ac1-4990-8cc4-539168c157bd" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6ade3229-1f64-4b63-98f2-d31f4bd6a2d2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "70eb5d6d-4796-4305-b24e-1f6001b2619c" + "f5f479c4-4243-4aa4-a4e3-650b9c68b3b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012634Z:70eb5d6d-4796-4305-b24e-1f6001b2619c" + "EASTUS:20250602T214829Z:f5f479c4-4243-4aa4-a4e3-650b9c68b3b2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CD3D3E9465794A8D9855696AFA10A4F8 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:48:29Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:33 GMT" + "Mon, 02 Jun 2025 21:48:29 GMT" + ], + "Content-Length": [ + "1153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-entn-g2/Versions/19042.2846.230329\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-entn-g2/versions/19042.2965.230505?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1lbnRuLWcyL3ZlcnNpb25zLzE5MDQyLjI5NjUuMjMwNTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "699b57ba-0c9c-4b9b-bad5-f9aba801bf2d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f3a104b0-adb1-44e0-8713-46f8952bd976" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.0.20170415\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.0.20170415\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.0.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170619\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4349" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12943,Microsoft.Compute/GetVMImageFromLocation30Min;73943" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "36474324-2faa-4024-bdf8-f6fbbaa648d3" - ], - "Cache-Control": [ - "no-cache" + "5dc8341f-af85-43ce-a74d-14ab47d8cf1b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ed05a3bb-7df1-4909-bcc2-ae3240848f63" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "be714fb4-b467-4885-8be6-cc740ef8f1ab" + "305890f8-c671-4390-b504-a86988083be3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012708Z:be714fb4-b467-4885-8be6-cc740ef8f1ab" + "EASTUS:20250602T214829Z:305890f8-c671-4390-b504-a86988083be3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 635A9FC5936C48C38AC297D12FF4815C Ref B: MNZ221060619029 Ref C: 2025-06-02T21:48:29Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:07 GMT" + "Mon, 02 Jun 2025 21:48:29 GMT" + ], + "Content-Length": [ + "1153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-entn-g2/Versions/19042.2965.230505\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.0.20170415?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMC4yMDE3MDQxNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-evd/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1ldmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9e4609f5-46bb-409b-b44f-eec7be686a03" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "d90bdb4b-38fe-48db-aee7-4db15b853a50" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.0.20170415\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.0.20170415\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15947,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43947" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "03cf4568-a028-47b6-b3b9-c680d039c260" + "e716ba4b-1f4a-4fc0-bf9c-27d35214be6f" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/65b496a7-439e-4341-ac6c-96099020f216" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "12ef252d-91f2-49cc-ad19-79c6e082b422" + "27853570-2a61-45a3-895a-e460f0a1c0d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012634Z:12ef252d-91f2-49cc-ad19-79c6e082b422" + "EASTUS2:20250602T214830Z:27853570-2a61-45a3-895a-e460f0a1c0d9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 12650864D7B345A0B3F22D86272B1FEF Ref B: MNZ221060619009 Ref C: 2025-06-02T21:48:29Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:33 GMT" + "Mon, 02 Jun 2025 21:48:29 GMT" + ], + "Content-Length": [ + "599" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-evd/Versions/19042.2846.230329\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-evd/Versions/19042.2965.230505\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.0.20170415?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMC4yMDE3MDQxNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-evd/versions/19042.2846.230329?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1ldmQvdmVyc2lvbnMvMTkwNDIuMjg0Ni4yMzAzMjk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3ac1d9dd-289e-44d1-bf26-3b0f97d3de3b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "049e0c69-5e40-4381-859b-1a37c4f40c27" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.0.20170415\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.0.20170415\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12942,Microsoft.Compute/GetVMImageFromLocation30Min;73942" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "67e43546-7bea-45e4-b9bd-8307a9462e75" - ], - "Cache-Control": [ - "no-cache" + "7fbd62a9-9912-4aa6-a5e8-84cb7be79f0e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ba35032b-ea46-4760-964f-f3c4fbfd11b7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14713" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "813370a6-7550-4065-b737-147d21a3f8d6" + "75c70dd8-b8cf-4c4a-86b8-430e3b63362d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012708Z:813370a6-7550-4065-b737-147d21a3f8d6" + "EASTUS2:20250602T214830Z:75c70dd8-b8cf-4c4a-86b8-430e3b63362d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2351928B57C1498FB5788331A6A671EB Ref B: MNZ221060610029 Ref C: 2025-06-02T21:48:30Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:07 GMT" + "Mon, 02 Jun 2025 21:48:30 GMT" + ], + "Content-Length": [ + "1038" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-evd/Versions/19042.2846.230329\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.0.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMC4yMDE3MDUxMD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-evd/versions/19042.2965.230505?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1ldmQvdmVyc2lvbnMvMTkwNDIuMjk2NS4yMzA1MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "917ac4e6-7dcb-4a22-b53a-4bf411e17750" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "50c9c7a3-92b3-4e83-bf30-245b7eb23caf" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.0.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12941,Microsoft.Compute/GetVMImageFromLocation30Min;73941" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "0aa4326b-cf52-4510-a5bb-254205b062aa" + "51a87964-ecb2-4154-94b1-86b78abd5cd3" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9aa277c3-21c5-4446-bd42-448f818972e3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "cb749f7e-d9fe-45fa-bcc5-b7710cf49fc3" + "d1891431-56c4-4bef-879d-1ae892e53467" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012634Z:cb749f7e-d9fe-45fa-bcc5-b7710cf49fc3" + "EASTUS:20250602T214830Z:d1891431-56c4-4bef-879d-1ae892e53467" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9B3CB588E3EE4A59923FE4B55E227943 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:48:30Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:34 GMT" + "Mon, 02 Jun 2025 21:48:29 GMT" + ], + "Content-Length": [ + "1038" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-evd/Versions/19042.2965.230505\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.0.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMC4yMDE3MDUxMD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-evd-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1ldmQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "31b2e923-0600-4f3c-b119-eb567463149b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1336c49f-e683-4ff3-a4fa-861b32de793a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.0.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15946,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43946" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "49524f34-51a5-4b89-bf2d-b8623809346a" - ], - "Cache-Control": [ - "no-cache" + "fdcf0778-43d4-49ed-9ee8-2518b2cb6fa2" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d665f64c-a47d-4888-9f00-2ce394156745" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14712" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d18a4175-1154-4f3e-9b91-8a4cd6becce8" + "99f3fc64-d7dd-4591-ba58-e81cba9a1c80" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012708Z:d18a4175-1154-4f3e-9b91-8a4cd6becce8" + "EASTUS:20250602T214830Z:99f3fc64-d7dd-4591-ba58-e81cba9a1c80" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD9C4945AB84470498BF75660D7EFD81 Ref B: MNZ221060609047 Ref C: 2025-06-02T21:48:30Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:07 GMT" + "Mon, 02 Jun 2025 21:48:30 GMT" + ], + "Content-Length": [ + "605" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-evd-g2/Versions/19042.2846.230329\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-evd-g2/Versions/19042.2965.230505\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20170619?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTcwNjE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-evd-g2/versions/19042.2846.230329?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1ldmQtZzIvdmVyc2lvbnMvMTkwNDIuMjg0Ni4yMzAzMjk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "717efe38-dbdd-4595-8d8a-e98bbfc45dda" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "ec5192c0-77c5-4060-a7bc-f3f0316a1b04" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170619\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170619\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12940,Microsoft.Compute/GetVMImageFromLocation30Min;73940" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "3610318d-cbb4-4a63-80a8-1067f02b271a" + "314894fb-b879-4173-86d3-d31fcd20baca" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/19833f58-7a6c-46dd-8522-be6657bc7aae" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a91fce5f-ec2f-485c-b5fa-dd5a976ab01e" + "845907c8-a1fe-4c8a-b653-432a1650a9e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012634Z:a91fce5f-ec2f-485c-b5fa-dd5a976ab01e" + "EASTUS:20250602T214830Z:845907c8-a1fe-4c8a-b653-432a1650a9e8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7C7759272D3544BEA0C3620702C90416 Ref B: MNZ221060609023 Ref C: 2025-06-02T21:48:30Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:34 GMT" + "Mon, 02 Jun 2025 21:48:30 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-evd-g2/Versions/19042.2846.230329\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20170619?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTcwNjE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-evd-g2/versions/19042.2965.230505?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1ldmQtZzIvdmVyc2lvbnMvMTkwNDIuMjk2NS4yMzA1MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4898e5c0-d670-403b-a331-000484616519" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "82c72b33-22ba-44c6-8ab5-2c31ab0a4c64" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170619\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170619\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12939,Microsoft.Compute/GetVMImageFromLocation30Min;73939" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "961ae574-5df2-4921-bfc7-bdfb4fe6bb1e" - ], - "Cache-Control": [ - "no-cache" + "0aeb276a-31c3-469f-b82d-7ddf89d1e843" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c3e7c365-b28f-4263-b0b9-d7cccfea7ebd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a62edb2e-5aeb-4455-8a94-e6920e92bc8e" + "11d7e612-8de9-467b-bb2e-5d767b3db85c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012708Z:a62edb2e-5aeb-4455-8a94-e6920e92bc8e" + "EASTUS:20250602T214830Z:11d7e612-8de9-467b-bb2e-5d767b3db85c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 233210DCCA064F9496EB6C0827D95921 Ref B: MNZ221060609007 Ref C: 2025-06-02T21:48:30Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:07 GMT" + "Mon, 02 Jun 2025 21:48:30 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/20h2-evd-g2/Versions/19042.2965.230505\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTcwNzEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1wcm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "089f3217-30e0-4c2f-85c7-049970033e1e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f97c9d55-534a-4b85-962c-0ad9f123c8aa" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15945,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43945" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c8d63975-f564-4957-932c-d09b1aa0f697" + "89f97670-fa05-41bb-9694-c2f06ecba0fa" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3b73d943-0888-4f9e-b1f1-11b9151fbea8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "aae8abf5-6137-471e-8e91-bacf4f7fae91" + "cbbeee4a-3658-4872-b02a-9ca98072fdf4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012634Z:aae8abf5-6137-471e-8e91-bacf4f7fae91" + "EASTUS2:20250602T214830Z:cbbeee4a-3658-4872-b02a-9ca98072fdf4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FDDD0921E0314FB08419C758CDC48B21 Ref B: MNZ221060609011 Ref C: 2025-06-02T21:48:30Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:34 GMT" + "Mon, 02 Jun 2025 21:48:30 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTcwNzEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-pro-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1wcm8tZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e33d5e7e-425c-4b26-99a9-88f639f02432" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "bbe7ad65-3265-4275-90a1-64a08c4de3fe" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15944,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43944" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9a2a4b64-3b67-4657-a719-63086a4e2fb7" + "6001c7a4-ab33-49e3-8800-f92544cb7585" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f978c10e-f8a8-46c6-a33a-412ecda15ed4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14710" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "90d56f0c-43a5-4924-b745-724edcd994a3" + "3f3a22dc-2c4d-4ab4-b6ef-d6ae485cc793" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012708Z:90d56f0c-43a5-4924-b745-724edcd994a3" + "EASTUS:20250602T214831Z:3f3a22dc-2c4d-4ab4-b6ef-d6ae485cc793" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D4075FD82E52491E9F37264DF7587435 Ref B: MNZ221060618035 Ref C: 2025-06-02T21:48:30Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:07 GMT" + "Mon, 02 Jun 2025 21:48:30 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20170811?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTcwODExP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-pro-zh-cn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1wcm8temgtY24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d3b14415-d4a4-48f7-b2bf-9762a0ccc3ae" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f2a10f19-8617-4ac5-b449-8c719a6d099a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170811\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15943,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43943" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "517e001e-a421-4584-b67c-0963c85d64ad" + "30580484-41fe-42b9-806d-7d59ff35e1d1" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/22e4e4a9-6556-461f-b08a-7381da5fc6a6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "0c343322-0d4c-4e85-b5f6-e97a7245e7c5" + "6238d58a-0b10-4804-8dc8-4da6332040bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012635Z:0c343322-0d4c-4e85-b5f6-e97a7245e7c5" + "EASTUS2:20250602T214831Z:6238d58a-0b10-4804-8dc8-4da6332040bf" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1505E2BE03994FE189C8D49375F0234C Ref B: MNZ221060608021 Ref C: 2025-06-02T21:48:31Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20170811?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTcwODExP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "86f842e5-6db1-4929-801b-d1181a0a5aa2" - ], - "accept-language": [ - "en-US" + "Mon, 02 Jun 2025 21:48:30 GMT" ], - "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170811\"\r\n}", - "ResponseHeaders": { "Content-Length": [ - "415" + "2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-pron/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1wcm9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a9a4bf63-8856-47e9-a93a-bafc53be0da6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15942,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43942" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "50fdb3a7-c47f-49df-8c95-d60366c2e7ee" - ], - "Cache-Control": [ - "no-cache" + "7cce0684-512d-4c4a-9a92-4e94d810364f" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f5b65922-ad0a-49f6-8e85-ac6320026bdb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14709" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "383a88ce-f240-4d2f-914d-5c8af358216a" + "377d2cd2-9b16-48be-9bde-f3230d19ab71" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012708Z:383a88ce-f240-4d2f-914d-5c8af358216a" + "EASTUS:20250602T214831Z:377d2cd2-9b16-48be-9bde-f3230d19ab71" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3703F2B4545044E99807B48AC107C8EB Ref B: MNZ221060609029 Ref C: 2025-06-02T21:48:31Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:07 GMT" + "Mon, 02 Jun 2025 21:48:30 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTcwOTE4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/20h2-pron-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjBoMi1wcm9uLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e8b99733-8b6a-4d4d-a183-0a5d2d364410" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "bfe57e13-ce4c-4176-8827-cad1f97fae95" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15941,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43941" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "d4f60477-70e4-45f8-a778-84f2bb8cf6c0" - ], - "Cache-Control": [ - "no-cache" + "96b08bf6-68b8-4867-bbd5-91ce45c2e0f5" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a5a44838-62e1-412f-99d1-860d0d435ffe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "fe45ec79-339e-42eb-bf14-0ef6dbab9394" + "5dd1c27b-6ef4-43fb-839a-b94f093a01f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012635Z:fe45ec79-339e-42eb-bf14-0ef6dbab9394" + "EASTUS2:20250602T214831Z:5dd1c27b-6ef4-43fb-839a-b94f093a01f3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E6B3ED59310D46868B862380AB6D91E0 Ref B: MNZ221060610019 Ref C: 2025-06-02T21:48:31Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:34 GMT" + "Mon, 02 Jun 2025 21:48:31 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTcwOTE4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/21h1-ent-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjFoMS1lbnQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9a98f49b-853a-48eb-9f71-14119522902f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "7d51e40d-be5f-4c4a-b939-95acb8c6d8c3" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15940,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43940" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "57e8607e-38b4-4a16-ad82-6ae3326d4f68" - ], - "Cache-Control": [ - "no-cache" + "019c9461-a769-4826-8ce4-14d9ba03bf34" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/726ab9e9-8068-4a41-9603-1f0a6b5eed26" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14708" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "558a01dd-9ef7-4d83-b3d3-da78da2a8ba0" + "4af9ca42-1eda-40f5-b306-aaddc2009433" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012708Z:558a01dd-9ef7-4d83-b3d3-da78da2a8ba0" + "EASTUS:20250602T214831Z:4af9ca42-1eda-40f5-b306-aaddc2009433" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 32AB5DD258394ED5AB100EB42025668C Ref B: MNZ221060608023 Ref C: 2025-06-02T21:48:31Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:08 GMT" + "Mon, 02 Jun 2025 21:48:31 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTcxMDE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/21h1-entn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjFoMS1lbnRuLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5f8272bf-c42a-4eb3-978d-8e4935bc5c8b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "9e6fda97-3e11-4dcd-90bd-ebbe42ef600b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15939,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43939" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "68621424-ff42-4c79-b6f2-66b2ed41c0c3" - ], - "Cache-Control": [ - "no-cache" + "37cae06b-778f-4576-a31f-5390be061bc7" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dd9ad556-2960-4bae-a8ca-0d9813f4e480" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d92e5b2d-5ddb-4c44-87d8-5ab0e85b718e" + "755b486e-72ed-46b3-9c50-5fc775688b4d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012635Z:d92e5b2d-5ddb-4c44-87d8-5ab0e85b718e" + "EASTUS:20250602T214831Z:755b486e-72ed-46b3-9c50-5fc775688b4d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1CDBDF648C81453BA6029F714BA21210 Ref B: MNZ221060608051 Ref C: 2025-06-02T21:48:31Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:34 GMT" + "Mon, 02 Jun 2025 21:48:30 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTcxMDE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/21h1-evd/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjFoMS1ldmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6f5633ff-3e32-4a0a-a26d-c40b29828c58" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "bc36db86-36b9-4871-b1a2-612fd6efb539" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15938,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43938" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "a4b05d17-e2d3-4a7f-8411-06f88d2dd3be" - ], - "Cache-Control": [ - "no-cache" + "2060c665-46f8-4ef3-8d9b-cf82dccc16d7" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/245bdf33-f1cd-4111-8900-a367948aeddb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14707" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e2be8056-67ee-49d1-90b2-fb32395b97d2" + "08b98124-f009-4704-9881-4faf8db0deab" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012708Z:e2be8056-67ee-49d1-90b2-fb32395b97d2" + "EASTUS:20250602T214831Z:08b98124-f009-4704-9881-4faf8db0deab" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9BB74D98A90042C68BC13EED64D087CB Ref B: MNZ221060608035 Ref C: 2025-06-02T21:48:31Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:08 GMT" + "Mon, 02 Jun 2025 21:48:31 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTcxMTE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/21h1-evd-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjFoMS1ldmQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ae4eb9a1-741d-4929-be58-a407a888d842" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "20df3770-f6a8-4407-9e8c-704ad54459bd" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15937,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43937" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "e3f04a1a-1fe7-43a9-86f1-dc5e9b4d5081" - ], - "Cache-Control": [ - "no-cache" + "3193514a-adee-41fb-b54c-badd1cb2ebaf" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/889fc64e-c935-4347-87fb-21da2a95ca9c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "9dd590f5-45a6-48fc-8940-27cf437c5e17" + "05c8b0c3-3921-4dbd-8d34-c94a15131687" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012635Z:9dd590f5-45a6-48fc-8940-27cf437c5e17" + "EASTUS:20250602T214831Z:05c8b0c3-3921-4dbd-8d34-c94a15131687" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 975CD5125CAD4616BFD600480E4E96D0 Ref B: MNZ221060609007 Ref C: 2025-06-02T21:48:31Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:35 GMT" + "Mon, 02 Jun 2025 21:48:31 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTcxMTE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/21h1-pro-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjFoMS1wcm8tZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d4cee46f-ba3e-4403-8501-f4b73d8308ff" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "97480376-03ac-4720-bb0b-c5af01f02893" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15936,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43936" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "80126463-5534-4429-b613-b3906f5e71ca" - ], - "Cache-Control": [ - "no-cache" + "86bc7f53-cbf7-487b-9d82-13e08311422b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f5b01269-71ee-46d3-9b43-a2fe74346871" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14706" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a267f723-55a1-4a8c-8428-cb7fc9d9384e" + "9ac042cf-082a-418b-90b8-05c8f6975de2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012708Z:a267f723-55a1-4a8c-8428-cb7fc9d9384e" + "EASTUS:20250602T214831Z:9ac042cf-082a-418b-90b8-05c8f6975de2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A623E1787CBB44DC9858C89161D47D21 Ref B: MNZ221060608009 Ref C: 2025-06-02T21:48:31Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:08 GMT" + "Mon, 02 Jun 2025 21:48:31 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20180111?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTgwMTExP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/21h1-pro-zh-cn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjFoMS1wcm8temgtY24tZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "468eee3e-ce38-4af8-ab2a-fec16f522410" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "2e3705b6-013a-4314-92a3-388d01fb528d" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180111\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15935,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43935" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "a23fa17d-3d53-4d17-83f3-b5e13a8dfbcd" - ], - "Cache-Control": [ - "no-cache" + "b1c2f0c6-609a-40bf-b962-27cb42b1a6ea" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5a0694e9-fcab-45da-9dc7-b2590abe4c50" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "2fc67cf6-421d-44f4-83b4-2e272efcf00c" + "73e107fb-55a5-4c47-a7e4-3791fbaeee4b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012635Z:2fc67cf6-421d-44f4-83b4-2e272efcf00c" + "EASTUS:20250602T214832Z:73e107fb-55a5-4c47-a7e4-3791fbaeee4b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 027F94B19AF54C5DBD3979D1A4E80513 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:48:32Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:35 GMT" + "Mon, 02 Jun 2025 21:48:31 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20180111?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTgwMTExP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/21h1-pron/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjFoMS1wcm9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "df5252fb-801d-4865-bc4c-c4baad935972" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "ba91a500-d2e6-4293-acbd-2a3500572246" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180111\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15934,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43934" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "52ed59f1-f93f-4acc-9d70-f7bfbe7bf4f4" - ], - "Cache-Control": [ - "no-cache" + "68adb88f-9806-454f-8b3f-458035108116" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/76782cbf-889a-4dd8-b928-038a284e1200" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14705" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "05cc5422-457c-40ea-956b-8f36c398bd56" + "63d3d728-4496-405f-80a7-ec281386aa03" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012709Z:05cc5422-457c-40ea-956b-8f36c398bd56" + "EASTUS2:20250602T214832Z:63d3d728-4496-405f-80a7-ec281386aa03" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AEB268901F41418C87829624B1AD3CA6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:48:32Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:08 GMT" + "Mon, 02 Jun 2025 21:48:31 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTgwMjE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/21h1-pron-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvMjFoMS1wcm9uLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c30cbb0e-66dd-4c5b-82bd-028f98476836" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f450443b-e6b3-4bf8-a92a-61277a0c4c33" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15933,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43933" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "1ca575dc-7bb3-414b-8652-9210b4d561d6" - ], - "Cache-Control": [ - "no-cache" + "025903b6-5bed-4cb5-9257-451a25f42ea1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b3257af0-286b-415f-ad19-52fab630ed71" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "429ee9d0-ff1e-43e5-9c0a-a8bb8fcd9adc" + "7c8daf7a-e2a7-450e-a6f9-8b1b4326d125" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012635Z:429ee9d0-ff1e-43e5-9c0a-a8bb8fcd9adc" + "EASTUS2:20250602T214832Z:7c8daf7a-e2a7-450e-a6f9-8b1b4326d125" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 45B016578AA547499D22B3C2312AD2E4 Ref B: MNZ221060610047 Ref C: 2025-06-02T21:48:32Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:35 GMT" + "Mon, 02 Jun 2025 21:48:31 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTgwMjE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprise/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "24f024a0-0597-4330-adc9-61e71534b62b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "db21a7d5-b0ec-4b52-85b2-3827806261b7" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15932,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43932" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "84a106cc-c086-4c5e-81f2-fffc791f31f8" - ], - "Cache-Control": [ - "no-cache" + "eb5eda5c-3dc1-4e59-b829-67c9bf081dc9" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f385883e-48ce-4c4a-9b61-c302690b31a8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14704" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "adb93402-a5f3-45c5-b222-40ca080e8d8c" + "161a004c-5bb5-44ed-a454-0ddd83c76879" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012709Z:adb93402-a5f3-45c5-b222-40ca080e8d8c" + "EASTUS:20250602T214832Z:161a004c-5bb5-44ed-a454-0ddd83c76879" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 44275513E06A4FFFBD1744D6977862DF Ref B: MNZ221060619019 Ref C: 2025-06-02T21:48:32Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:08 GMT" + "Mon, 02 Jun 2025 21:48:31 GMT" + ], + "Content-Length": [ + "1523" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise/Versions/14393.8066.250511\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTgwMzE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprise/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2UvdmVyc2lvbnMvMTQzOTMuNzY5OS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f59e797c-074d-48dd-b70f-cd1162bbec45" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "cf3e445f-bacb-48e7-a743-591f63cd52fb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12938,Microsoft.Compute/GetVMImageFromLocation30Min;73938" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "04059565-8f89-41a5-a909-1490466ce0d1" + "0c36516d-62b8-46ff-89ca-1319fb891c9a" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9f0cb347-ce82-4716-8279-9d9edbf30d1f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e028a076-fb3d-4f23-9bcf-ebf64e6c7046" + "baac0b52-11f8-4957-b53b-60cfb9eda4e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012635Z:e028a076-fb3d-4f23-9bcf-ebf64e6c7046" + "EASTUS:20250602T214832Z:baac0b52-11f8-4957-b53b-60cfb9eda4e3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8AA133D25B1543E8B4F628B8DF1E647A Ref B: MNZ221060619017 Ref C: 2025-06-02T21:48:32Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:35 GMT" + "Mon, 02 Jun 2025 21:48:32 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise/Versions/14393.7699.250109\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTgwMzE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprise/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2UvdmVyc2lvbnMvMTQzOTMuNzc4NS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f4bc6305-beae-43aa-9ea3-09a68b06c8dc" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "544a3cd6-7c55-4369-aa4b-a04fcc0830bf" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12937,Microsoft.Compute/GetVMImageFromLocation30Min;73937" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "df5f2f16-6c18-4855-bcd7-9fe4ffa007db" - ], - "Cache-Control": [ - "no-cache" + "c327a63c-a587-405f-92f5-399698bcafc1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e99ed5d5-e03f-4ed3-b485-368e403a2076" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14703" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "4d659066-7635-422c-9734-3bc346eecccc" + "e4f88e28-176a-4f50-a6e8-d3b1d6ada7f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012709Z:4d659066-7635-422c-9734-3bc346eecccc" + "EASTUS:20250602T214832Z:e4f88e28-176a-4f50-a6e8-d3b1d6ada7f0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7ED9E3BB6EFD4CA4A13EC3755EDA0EDC Ref B: MNZ221060619021 Ref C: 2025-06-02T21:48:32Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:08 GMT" + "Mon, 02 Jun 2025 21:48:32 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise/Versions/14393.7785.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTgwNDEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprise/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2UvdmVyc2lvbnMvMTQzOTMuNzg3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7b88b5b0-72c9-49d0-a9df-8045defa1596" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "fcf94fd3-feae-4d1c-b359-99583caf0656" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12936,Microsoft.Compute/GetVMImageFromLocation30Min;73936" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "8f4f9866-93b8-4319-a8c1-45dadd8c3659" + "4ee702e3-0d8e-4c99-9a71-e86e2b542b18" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5be28bad-1950-45d7-8a1a-a9ced5f1d18e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "0714f430-e377-4281-aaa9-5f08efe171ba" + "8f8e21c1-5628-413d-bc80-7da77bf0c00a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012636Z:0714f430-e377-4281-aaa9-5f08efe171ba" + "EASTUS2:20250602T214833Z:8f8e21c1-5628-413d-bc80-7da77bf0c00a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C6DDD54C70354BE6A481D44CC0E7C017 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:48:33Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:35 GMT" + "Mon, 02 Jun 2025 21:48:32 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise/Versions/14393.7876.250306\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTgwNDEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprise/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2UvdmVyc2lvbnMvMTQzOTMuNzk3My4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "06900b54-9eb3-4818-8c1f-c64cb69ae05c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "659edd6e-00d7-4b4b-8e43-1f1658c161c5" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12935,Microsoft.Compute/GetVMImageFromLocation30Min;73935" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "55f79029-eced-4948-9024-fc34d7b7e37e" - ], - "Cache-Control": [ - "no-cache" + "57da9924-e237-4fb5-94ed-53cc0b133be9" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5c6d7e32-4c89-4bc8-8bf3-f614f2fd615b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14702" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "200829da-32fb-46c2-b930-4ab4b636444c" + "c55396f7-8910-4e33-80eb-4d10d491bbdb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012709Z:200829da-32fb-46c2-b930-4ab4b636444c" + "EASTUS:20250602T214833Z:c55396f7-8910-4e33-80eb-4d10d491bbdb" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 26DD08E6719240F2A93B2BEFCF4F8FA0 Ref B: MNZ221060610009 Ref C: 2025-06-02T21:48:33Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:08 GMT" + "Mon, 02 Jun 2025 21:48:32 GMT" + ], + "Content-Length": [ + "1093" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise/Versions/14393.7973.250409\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTgwNTEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprise/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2UvdmVyc2lvbnMvMTQzOTMuODA2Ni4yNTA1MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c6dbbe24-ea8c-4000-900e-8270edc65f8b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1ba67b8c-e633-4ea6-84b3-39786c40cf2b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12934,Microsoft.Compute/GetVMImageFromLocation30Min;73934" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9dde3b03-2809-4ba7-9d27-da9c2a074fd8" + "dddcc473-d0a2-4392-9deb-c8e117c09e75" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/316d8092-52a8-4aea-bd0d-242c0beb5df8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "73d647e0-0feb-4978-8892-cb26ac73bf10" + "70e2ea83-eeb2-4019-965d-08e7c7189be9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012636Z:73d647e0-0feb-4978-8892-cb26ac73bf10" + "EASTUS:20250602T214833Z:70e2ea83-eeb2-4019-965d-08e7c7189be9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DFB496F20303475F8C5783D6ABB40973 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:48:33Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTgwNTEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "98dcedd5-1367-4fbc-8b61-e8e95bc07b67" - ], - "accept-language": [ - "en-US" + "Mon, 02 Jun 2025 21:48:32 GMT" ], - "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180510\"\r\n}", - "ResponseHeaders": { "Content-Length": [ - "415" + "1093" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprise-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2UtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3ee14490-84ee-4880-b52b-17a0f5d023f4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15931,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43931" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "8fd58df2-f2ea-4a21-a0c2-0b869ff8f565" + "e00f152d-5713-4127-96d5-f663b88df4ad" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f9459c83-4c68-4b9f-87b7-126956b3406f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14701" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "5d7cb13a-fd25-4b25-b704-e549bfc5e23c" + "18c83c48-00b3-496e-9341-3fc6e0616477" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012709Z:5d7cb13a-fd25-4b25-b704-e549bfc5e23c" + "EASTUS:20250602T214833Z:18c83c48-00b3-496e-9341-3fc6e0616477" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4027400DC04A4318A627FD5E547E030B Ref B: MNZ221060610009 Ref C: 2025-06-02T21:48:33Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:08 GMT" + "Mon, 02 Jun 2025 21:48:32 GMT" + ], + "Content-Length": [ + "1538" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise-g2/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise-g2/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise-g2/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise-g2/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise-g2/Versions/14393.8066.250511\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTgwNjEzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprise-g2/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2UtZzIvdmVyc2lvbnMvMTQzOTMuNzY5OS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b725306e-1913-4eac-97ce-1df748ba4668" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5cfe3d61-c426-4148-b4a3-5ea2f49ab7a3" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12933,Microsoft.Compute/GetVMImageFromLocation30Min;73933" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "8e5a7114-a394-4ca7-af2f-5c750b978090" - ], - "Cache-Control": [ - "no-cache" + "4da6aea3-5d8a-4c95-8219-d789b21e6541" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/79329ecc-f7e4-45d3-8bcb-e04756fb17f1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a698c19b-c3d7-404d-ab9b-a52ecd18d8bc" + "ef098b3f-7a7f-4376-9259-cd259b8f00d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012636Z:a698c19b-c3d7-404d-ab9b-a52ecd18d8bc" + "EASTUS:20250602T214833Z:ef098b3f-7a7f-4376-9259-cd259b8f00d1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F585B1B7F5864C4F8EB7DAADAABEBEBD Ref B: MNZ221060619033 Ref C: 2025-06-02T21:48:33Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:36 GMT" + "Mon, 02 Jun 2025 21:48:33 GMT" + ], + "Content-Length": [ + "1305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise-g2/Versions/14393.7699.250109\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter-smalldisk/versions/3.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzMuMTI3LjIwMTgwNjEzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprise-g2/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2UtZzIvdmVyc2lvbnMvMTQzOTMuNzc4NS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f0bc8352-f25f-4819-85f6-78415156b4e8" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8498299b-2d28-45cf-872c-ae743b79c7c6" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"3.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk/Versions/3.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12932,Microsoft.Compute/GetVMImageFromLocation30Min;73932" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "99e45d69-bd9d-4e08-960c-b0a1c6e52247" + "eaf2f1c9-3e21-4af2-af59-c737bf6b5314" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/00c7163d-c107-4969-a9f2-49a42d7f8b5b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14700" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "bbb303ae-42a1-4a7b-a640-22e6235ae1ff" + "03db7c38-3008-44ea-8e04-cdff78761420" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012709Z:bbb303ae-42a1-4a7b-a640-22e6235ae1ff" + "EASTUS2:20250602T214833Z:03db7c38-3008-44ea-8e04-cdff78761420" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CB49201A2473447D82CEDD5D6AB9F508 Ref B: MNZ221060619031 Ref C: 2025-06-02T21:48:33Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:09 GMT" + "Mon, 02 Jun 2025 21:48:33 GMT" + ], + "Content-Length": [ + "1305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise-g2/Versions/14393.7785.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprise-g2/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2UtZzIvdmVyc2lvbnMvMTQzOTMuNzg3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "779ff8a1-75dc-4ba6-968c-1da88ea47dba" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "17567185-d154-449e-be51-8e630640d7a3" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170420\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170420\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170919\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170919\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20171217\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180220\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180510\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "3955" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12931,Microsoft.Compute/GetVMImageFromLocation30Min;73931" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2af65caa-9321-44c5-8c1f-c2a703b5bb94" - ], - "Cache-Control": [ - "no-cache" + "a3b905e0-ddd0-495b-b219-43816bab47a9" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/04eb8a5f-8486-42a2-9c77-96dd40e8d2ee" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "607c510f-d837-4f56-9d27-cabba604e785" + "978a05e4-907a-4d64-82ed-af53f2b57396" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012636Z:607c510f-d837-4f56-9d27-cabba604e785" + "EASTUS:20250602T214834Z:978a05e4-907a-4d64-82ed-af53f2b57396" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FDEABAA348DB4006AA252BB9C1ADCE57 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:48:33Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:36 GMT" + "Mon, 02 Jun 2025 21:48:33 GMT" + ], + "Content-Length": [ + "1305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise-g2/Versions/14393.7876.250306\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprise-g2/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2UtZzIvdmVyc2lvbnMvMTQzOTMuNzk3My4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d06c206d-8e7b-4015-83cc-acf2d26fdc58" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c3ac8e11-baf9-41a4-94c9-616039882b1a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170420\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170420\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170919\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170919\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20171217\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180220\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180510\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "3955" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12930,Microsoft.Compute/GetVMImageFromLocation30Min;73930" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ce32e479-fb80-4f99-8010-65323efb6423" + "e186236a-aec0-4693-bc70-361b86a50280" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cba3b359-24b6-43eb-a54e-3228260818ef" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14699" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "4dd9e3e8-9fac-4b83-8245-67b4521d20f4" + "ad23c082-59c4-4348-abfd-cddc93c6de3f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012709Z:4dd9e3e8-9fac-4b83-8245-67b4521d20f4" + "EASTUS:20250602T214834Z:ad23c082-59c4-4348-abfd-cddc93c6de3f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 62DBCDE096C94B2A866564CB9828DC43 Ref B: MNZ221060618035 Ref C: 2025-06-02T21:48:34Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:09 GMT" + "Mon, 02 Jun 2025 21:48:33 GMT" + ], + "Content-Length": [ + "1224" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise-g2/Versions/14393.7973.250409\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20170406?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzA0MDY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprise-g2/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2UtZzIvdmVyc2lvbnMvMTQzOTMuODA2Ni4yNTA1MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f2568356-801c-4449-be9c-b443e47d864c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a8550191-ff8a-463e-876b-280a7172664f" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12929,Microsoft.Compute/GetVMImageFromLocation30Min;73929" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2126de5a-1507-4b9f-b4f1-bc9aa31ce23d" - ], - "Cache-Control": [ - "no-cache" + "c857da80-8869-479b-ac08-d59ef8227939" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3d11f011-4f6a-4a21-b4b6-0c8704d0b736" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c72400b4-1dab-4e9d-bbe0-878ce73630e9" + "63cbd71a-faa4-408b-b2e4-0a9feb817e92" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012636Z:c72400b4-1dab-4e9d-bbe0-878ce73630e9" + "EASTUS2:20250602T214834Z:63cbd71a-faa4-408b-b2e4-0a9feb817e92" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6A391CD9AA394B3BBF36F070BFF51B17 Ref B: MNZ221060608037 Ref C: 2025-06-02T21:48:34Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:36 GMT" + "Mon, 02 Jun 2025 21:48:33 GMT" + ], + "Content-Length": [ + "1224" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprise-g2/Versions/14393.8066.250511\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20170406?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzA0MDY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprisen/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2VuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "475db30b-0f42-43bb-b0c0-d15623d004a7" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a12d0c70-d1db-4605-9c91-fd37daae0ab8" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15930,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43930" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9430fe5e-1c04-42d3-bfd6-b6dc2702c566" + "bffe42a6-7d74-4f18-85cb-179a548806c5" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7041e81e-88f5-4442-a058-0529a15ce208" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14698" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7e7e6b0a-a04f-4cd9-ace0-121208bb8d1c" + "61fa94a9-8611-4d44-aa57-4df8abb535dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012709Z:7e7e6b0a-a04f-4cd9-ace0-121208bb8d1c" + "EASTUS:20250602T214834Z:61fa94a9-8611-4d44-aa57-4df8abb535dc" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2D8FEB0AE4F44AC9685658B094FEE90 Ref B: MNZ221060610053 Ref C: 2025-06-02T21:48:34Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:09 GMT" + "Mon, 02 Jun 2025 21:48:34 GMT" + ], + "Content-Length": [ + "1528" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen/Versions/14393.8066.250511\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20170420?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzA0MjA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprisen/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2VuL3ZlcnNpb25zLzE0MzkzLjc2OTkuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5a4a6701-eb67-4737-9d1d-147bb5b8bb32" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "779039da-ab72-4b08-aa5c-febedd329584" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170420\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170420\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12928,Microsoft.Compute/GetVMImageFromLocation30Min;73928" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "18c84d00-77e9-438d-b601-d9b89a1fdd20" - ], - "Cache-Control": [ - "no-cache" + "04757622-964d-4092-8a8c-29cfabcf2a33" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d609da38-e1ae-4adc-98ac-b913cdd35fcd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "91515f1a-4ecf-4c2c-bb28-6dd293af80c1" + "872d5495-8d88-42cd-98b0-1e9d152e29e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012636Z:91515f1a-4ecf-4c2c-bb28-6dd293af80c1" + "EASTUS2:20250602T214834Z:872d5495-8d88-42cd-98b0-1e9d152e29e3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4F36284DE2EC4094A38B9D9E3CBA285E Ref B: MNZ221060618011 Ref C: 2025-06-02T21:48:34Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:36 GMT" + "Mon, 02 Jun 2025 21:48:34 GMT" + ], + "Content-Length": [ + "1175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen/Versions/14393.7699.250109\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20170420?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzA0MjA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprisen/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2VuL3ZlcnNpb25zLzE0MzkzLjc3ODUuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1a93bc26-4139-402e-9f00-9fc879acd23b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a3962a16-6181-408b-acf4-64174837c435" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170420\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170420\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12927,Microsoft.Compute/GetVMImageFromLocation30Min;73927" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c9f0f6b3-2732-4047-8048-789d296648ae" + "8c01bce9-2eb5-46e6-afbc-bc422d91a030" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3a5275d7-b2ee-4f6c-9959-ab19f449a49b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14697" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "053c6eda-801e-4ae6-9bdf-9fbfb6e8d503" + "f240c39d-6795-40dd-a1f4-e96dd61f117b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012710Z:053c6eda-801e-4ae6-9bdf-9fbfb6e8d503" + "EASTUS2:20250602T214834Z:f240c39d-6795-40dd-a1f4-e96dd61f117b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 50CEC7AD80C14F19937D9FA50562A2BA Ref B: MNZ221060619011 Ref C: 2025-06-02T21:48:34Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:09 GMT" + "Mon, 02 Jun 2025 21:48:34 GMT" + ], + "Content-Length": [ + "1175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen/Versions/14393.7785.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprisen/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2VuL3ZlcnNpb25zLzE0MzkzLjc4NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "78cf254f-bf2e-4f12-bfe5-17df446029fe" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "944e1b7f-9cf7-465b-8f98-d381ddd6b6e0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12926,Microsoft.Compute/GetVMImageFromLocation30Min;73926" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c011ec97-8117-420f-b500-4fa1a69a4c14" - ], - "Cache-Control": [ - "no-cache" + "e6cfebce-878d-4482-8c53-4cd7798538e9" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/59a62b7c-d452-4ecc-9e03-028b53a775fb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "50998fdf-18df-4cfc-8f64-88fa170aa0cc" + "13cce6a1-e8c8-4120-a873-ebe8a5e3e52a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012637Z:50998fdf-18df-4cfc-8f64-88fa170aa0cc" + "EASTUS:20250602T214834Z:13cce6a1-e8c8-4120-a873-ebe8a5e3e52a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BEEC09AB787549B5BD495329352CB2B7 Ref B: MNZ221060618029 Ref C: 2025-06-02T21:48:34Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:36 GMT" + "Mon, 02 Jun 2025 21:48:34 GMT" + ], + "Content-Length": [ + "1175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen/Versions/14393.7876.250306\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprisen/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2VuL3ZlcnNpb25zLzE0MzkzLjc5NzMuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "43c09eea-a44c-4cb9-9523-726d0dd911eb" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "d11a199f-20ee-4eb4-8885-920be47c0d4f" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12925,Microsoft.Compute/GetVMImageFromLocation30Min;73925" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "15dbc7c7-bf0e-4b4a-b415-ee4e38eda004" + "0075d31e-f9e9-4793-b847-669bb8aa9b7a" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/324dde96-ba19-4aa8-b150-d5914c922e3a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14696" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "744429e0-b4ab-4a48-935e-f5aceb8cd46c" + "afd51628-4d77-4749-bd67-2fb0deaffd60" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012710Z:744429e0-b4ab-4a48-935e-f5aceb8cd46c" + "EASTUS:20250602T214834Z:afd51628-4d77-4749-bd67-2fb0deaffd60" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 68A603CA68B14B35AD1F7B003A142AD4 Ref B: MNZ221060609035 Ref C: 2025-06-02T21:48:34Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:09 GMT" + "Mon, 02 Jun 2025 21:48:34 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen/Versions/14393.7973.250409\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzA3MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprisen/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2VuL3ZlcnNpb25zLzE0MzkzLjgwNjYuMjUwNTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "eab6c071-9d3d-4e16-af05-a07ede946c90" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "24721f85-0e05-4d0b-a3d2-e09f70a2423a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12924,Microsoft.Compute/GetVMImageFromLocation30Min;73924" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2b85eee1-026d-416e-a55c-833619ba81cf" - ], - "Cache-Control": [ - "no-cache" + "b11dca6e-94cd-4b0b-9b1a-1e818cc8b620" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/65bfc723-4b39-4175-b509-4b880b7ccb43" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "1ea1bcbe-3ef1-4974-97ac-7069610e3585" + "092e9739-b828-4047-bb74-1ee5a29bf5a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012637Z:1ea1bcbe-3ef1-4974-97ac-7069610e3585" + "EASTUS2:20250602T214835Z:092e9739-b828-4047-bb74-1ee5a29bf5a9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 54E01544919C466097B64BE5DAE0D39C Ref B: MNZ221060610033 Ref C: 2025-06-02T21:48:34Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:36 GMT" + "Mon, 02 Jun 2025 21:48:34 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen/Versions/14393.8066.250511\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzA3MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprisen-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2VuLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "69bb4302-babf-4bfa-b2c4-32d38cc7ae6f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "e718700d-6b95-43d4-86b4-069e5343ecd4" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15929,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43929" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "35c81c2c-cf17-4edc-a8f6-1815e6a947a6" + "215a0904-8f75-4243-884c-7c7732fb815f" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/82189a81-dc50-4856-a1e4-33157825ceeb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14695" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "2638cb28-0f05-4015-85f1-70b4d4210a27" + "0486689f-c234-49bc-a39a-a62b918b21f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012710Z:2638cb28-0f05-4015-85f1-70b4d4210a27" + "EASTUS2:20250602T214835Z:0486689f-c234-49bc-a39a-a62b918b21f9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 23BC5697BDC745F2BD7BF5963DCD2791 Ref B: MNZ221060610025 Ref C: 2025-06-02T21:48:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:09 GMT" + "Mon, 02 Jun 2025 21:48:34 GMT" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen-g2/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen-g2/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen-g2/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen-g2/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen-g2/Versions/14393.8066.250511\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20170822?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzA4MjI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprisen-g2/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2VuLWcyL3ZlcnNpb25zLzE0MzkzLjc2OTkuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "cef1e298-9173-4207-b3a3-7b9277438bdb" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8cbc23d4-c04d-4130-9a24-63f6a3d7367c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170822\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12923,Microsoft.Compute/GetVMImageFromLocation30Min;73923" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "f0cc7f09-2c2a-4db4-b2d2-2c6705bfe91e" - ], - "Cache-Control": [ - "no-cache" + "c0ad0236-26bf-46a0-83c6-14fc82441130" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/31067032-6713-467c-84a1-1c200fba9b18" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a3df43e1-8cd7-4ec8-8b67-9cbfa01bb5a9" + "03d70ba4-32a8-4592-917f-6e2ed6796cc0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012637Z:a3df43e1-8cd7-4ec8-8b67-9cbfa01bb5a9" + "EASTUS2:20250602T214835Z:03d70ba4-32a8-4592-917f-6e2ed6796cc0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0C259C48294C497AA1CFBBDA030F0D5B Ref B: MNZ221060619027 Ref C: 2025-06-02T21:48:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:37 GMT" + "Mon, 02 Jun 2025 21:48:34 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen-g2/Versions/14393.7699.250109\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20170822?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzA4MjI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprisen-g2/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2VuLWcyL3ZlcnNpb25zLzE0MzkzLjc3ODUuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1e480966-785a-4255-951c-83f86b955c44" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b31a07b9-27e8-4850-8efc-c1b315c850f4" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170822\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12922,Microsoft.Compute/GetVMImageFromLocation30Min;73922" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "e5421e1d-7e18-4af9-9acc-5eb527e45f52" + "01a5f0ab-e482-4364-8c8c-a88e53c130b6" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/78a190f0-a82a-4ec0-946a-31da94f3643c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14694" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "6c82070a-011c-4d15-b28d-e22ee766e17d" + "4edbdf2f-fe81-44d5-b8da-8ccf838af478" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012710Z:6c82070a-011c-4d15-b28d-e22ee766e17d" + "EASTUS:20250602T214835Z:4edbdf2f-fe81-44d5-b8da-8ccf838af478" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F696D34B7F9E41E8B88F67ACE4592D08 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:48:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:09 GMT" + "Mon, 02 Jun 2025 21:48:35 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen-g2/Versions/14393.7785.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20170919?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzA5MTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprisen-g2/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2VuLWcyL3ZlcnNpb25zLzE0MzkzLjc4NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "78a0a851-05ae-4fa1-829c-26c12d575b02" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8a9953a2-32dd-4deb-87a0-502ff57fba39" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170919\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170919\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12921,Microsoft.Compute/GetVMImageFromLocation30Min;73921" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "eb28debb-981c-426c-9795-0546cfab8ecf" - ], - "Cache-Control": [ - "no-cache" + "a21b4875-5026-444d-b842-9b315624ce97" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7f516c59-ee4b-46ea-9321-81a165df0a82" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "91a7d6ef-78b4-4d11-9360-04ed5028bfb1" + "3bef3fc1-153d-48f6-b52a-d09ad774d2b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012637Z:91a7d6ef-78b4-4d11-9360-04ed5028bfb1" + "EASTUS:20250602T214835Z:3bef3fc1-153d-48f6-b52a-d09ad774d2b2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EFB34E31C271492ABC5952BF069F2DDD Ref B: MNZ221060609049 Ref C: 2025-06-02T21:48:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:37 GMT" + "Mon, 02 Jun 2025 21:48:34 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen-g2/Versions/14393.7876.250306\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20170919?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzA5MTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprisen-g2/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2VuLWcyL3ZlcnNpb25zLzE0MzkzLjc5NzMuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2a70b814-96af-4654-a462-9dba9422982e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "7c1c2bb6-b387-4409-948f-d26ce6627b16" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170919\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170919\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12920,Microsoft.Compute/GetVMImageFromLocation30Min;73920" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7dd4ad5f-0d28-4213-b9c4-336787085d08" + "6f1b2d98-34ad-46b8-93a9-04b9c0af097b" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6b9ae9d5-9322-46ee-bfb7-9d0c3fe8cbc7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14693" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8a81f7f6-8c2c-4632-9d94-e42b3ccfccd8" + "d8407946-bf0b-41ac-a9bb-f697b7d1621f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012710Z:8a81f7f6-8c2c-4632-9d94-e42b3ccfccd8" + "EASTUS2:20250602T214835Z:d8407946-bf0b-41ac-a9bb-f697b7d1621f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 006B75F5CDB84CF685D4BDF54F8538E4 Ref B: MNZ221060610027 Ref C: 2025-06-02T21:48:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:09 GMT" + "Mon, 02 Jun 2025 21:48:35 GMT" + ], + "Content-Length": [ + "1225" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen-g2/Versions/14393.7973.250409\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzEwMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs1-enterprisen-g2/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnMxLWVudGVycHJpc2VuLWcyL3ZlcnNpb25zLzE0MzkzLjgwNjYuMjUwNTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7585a299-797f-4ed2-8e30-4d088cb9f231" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "9a3b4f19-4319-4530-b7fc-109230ff7809" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12919,Microsoft.Compute/GetVMImageFromLocation30Min;73919" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "d0d1c543-1cf9-409c-b508-702a97e8ca6e" - ], - "Cache-Control": [ - "no-cache" + "df3471c4-2d64-4727-8d3d-04ae1588d702" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e71f9e45-66a2-4d35-b51e-f300628d5a9e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "6ef460b4-2309-4b2c-b3b7-9656c0f8a508" + "7a8ae850-75ae-4295-b4bf-0f03c43e5201" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012637Z:6ef460b4-2309-4b2c-b3b7-9656c0f8a508" + "EASTUS:20250602T214836Z:7a8ae850-75ae-4295-b4bf-0f03c43e5201" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B738F57D059640DF9FE9C8CFAEC2DD02 Ref B: MNZ221060618031 Ref C: 2025-06-02T21:48:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:37 GMT" + "Mon, 02 Jun 2025 21:48:35 GMT" + ], + "Content-Length": [ + "1225" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs1-enterprisen-g2/Versions/14393.8066.250511\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzEwMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/RS3-Pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvUlMzLVByby92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "002ac004-737e-4c2d-8e37-e7c9101e3634" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1f0667ca-ce99-4909-bffa-4215fdeea8e3" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15928,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43928" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c8269967-e617-4dbc-8b16-53bc2cd71f83" + "d56c4c12-50f4-4163-9162-a8cd1c84e5d9" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e23aff18-8ab7-462c-96bb-04f08e327a86" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14692" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "84658a88-12c8-46d2-9ec7-94813c04f7c4" + "963a6328-a9f8-4297-9c5a-f7b7fad02c18" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012710Z:84658a88-12c8-46d2-9ec7-94813c04f7c4" + "EASTUS2:20250602T214836Z:963a6328-a9f8-4297-9c5a-f7b7fad02c18" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9D58E0CA64CB4DE2A46BFA8C5EB34520 Ref B: MNZ221060610047 Ref C: 2025-06-02T21:48:36Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:09 GMT" + "Mon, 02 Jun 2025 21:48:35 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzExMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/RS3-ProN/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvUlMzLVByb04vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "17c85c4f-b45d-4be1-9ede-96d81da102c1" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "d613b1e0-fa84-4715-a8c9-feefd34756f5" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15927,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43927" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9c5866ac-3191-404b-8ab1-8f778e87dc1c" + "f5e59f88-5ac6-4072-9839-df42efcdce61" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/89c3e3b3-0fb7-4ce8-b45d-0c2bd349e268" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "8466b999-b4a4-4928-88be-d5f0651a2f73" + "68da734d-d431-4a6e-971b-03085d196a70" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012637Z:8466b999-b4a4-4928-88be-d5f0651a2f73" + "EASTUS:20250602T214836Z:68da734d-d431-4a6e-971b-03085d196a70" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C660C04ECFF74D8DBAB64955298E200C Ref B: MNZ221060609007 Ref C: 2025-06-02T21:48:36Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:37 GMT" + "Mon, 02 Jun 2025 21:48:35 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzExMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs4-pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM0LXByby92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1975422c-a667-4b59-b833-9e9eb61966be" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "07c0a513-e323-471a-89ee-698e9f78175b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15926,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43926" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9c18ef1b-fb81-47d3-a7e0-0af457a7fff2" + "8dd3ac34-26d7-4182-ab04-6ad49c6d6ee3" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/457efb1f-8f90-4e0f-8b99-69f1f6e73ef6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14691" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a5fc35fe-812b-43ce-b091-049bc82953b4" + "b354264e-c4fe-4f01-9d8e-79979c704ad9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012710Z:a5fc35fe-812b-43ce-b091-049bc82953b4" + "EASTUS:20250602T214836Z:b354264e-c4fe-4f01-9d8e-79979c704ad9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 76E995FA55CF416AA45EFF203DD0B337 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:48:36Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:10 GMT" + "Mon, 02 Jun 2025 21:48:36 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20171217?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzEyMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs4-pro-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM0LXByby1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "147a2968-57b8-4b14-9794-7c589984b11b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "d47e1f51-42ef-4c71-b9e8-9681fd41e3cc" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20171217\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15925,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43925" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "8293d08e-f901-400e-bdf5-8327d7112c0d" + "edf3a6e0-197f-430d-8179-5f74a4d61b7a" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a3a99708-8d34-469c-8cf9-e7a089154456" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "f8d431a5-1b52-4ed8-afb3-2acdf4fd178b" + "4032660f-35ca-45b0-bded-e5e43b2fe33e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012637Z:f8d431a5-1b52-4ed8-afb3-2acdf4fd178b" + "EASTUS2:20250602T214837Z:4032660f-35ca-45b0-bded-e5e43b2fe33e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 50832BE1A3A24C9C94D9904DA2AD8142 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:48:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:37 GMT" + "Mon, 02 Jun 2025 21:48:36 GMT" + ], + "Content-Length": [ + "311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17134.1246.2001090113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pro-g2/Versions/17134.1246.2001090113\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20171217?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxNzEyMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs4-pro-g2/versions/17134.1246.2001090113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM0LXByby1nMi92ZXJzaW9ucy8xNzEzNC4xMjQ2LjIwMDEwOTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bab189af-662a-42a7-a242-b8e41a36908f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "09f2ecac-17e4-450c-846d-9dfdb0dfcfec" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20171217\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12918,Microsoft.Compute/GetVMImageFromLocation30Min;73918" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "642e48ff-7805-48fd-817a-a1a5d2c08bc4" - ], - "Cache-Control": [ - "no-cache" + "651c468e-3760-4d08-8b7c-485e452efb04" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5c0e39be-2b4e-443c-8433-595dd26a60fe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14690" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8bc30f14-56a1-42c8-b6f2-6ebcb181c3d9" + "c8e83054-910f-44c4-a2a2-e431ebf0b809" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012710Z:8bc30f14-56a1-42c8-b6f2-6ebcb181c3d9" + "EASTUS2:20250602T214837Z:c8e83054-910f-44c4-a2a2-e431ebf0b809" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BA0C81E712BD4666A36634E0C97DCC7C Ref B: MNZ221060608017 Ref C: 2025-06-02T21:48:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:10 GMT" + "Mon, 02 Jun 2025 21:48:37 GMT" + ], + "Content-Length": [ + "775" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17134.1246.2001090113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs4-pro-g2/Versions/17134.1246.2001090113\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180111?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxODAxMTE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs4-pron/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM0LXByb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7e648550-8d24-448f-8e3d-7c07ae5bd6c0" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "364b9505-2b0f-44b5-a781-1876a4ff2318" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180111\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15924,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43924" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ca41d898-5aeb-48c6-93f5-e3a1a923d72a" + "435da975-a052-43a9-866a-85c543214160" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f867c327-58db-4b79-a51b-395a277c4873" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7e4e55e2-3e6e-4a9d-b6c6-f62ea251b2bf" + "f124b4e3-6471-44c9-8120-771e7cf05a26" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012638Z:7e4e55e2-3e6e-4a9d-b6c6-f62ea251b2bf" + "EASTUS2:20250602T214837Z:f124b4e3-6471-44c9-8120-771e7cf05a26" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0D31F41E56D54D188DBA4C414740F470 Ref B: MNZ221060609019 Ref C: 2025-06-02T21:48:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:37 GMT" + "Mon, 02 Jun 2025 21:48:36 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180111?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxODAxMTE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b0a4ba65-6050-44b4-bbca-4a1fffb02bca" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f258f550-1c3d-4e07-89b2-ead0d89f458b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180111\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15923,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43923" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ead00ceb-d55c-442e-85c0-3251b47fa5d7" + "3986e617-b0b2-4fd7-9ad2-70d63c5e2bd7" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/654a68ac-b4c7-440f-88e9-918e1ce00093" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14689" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "6588384d-5537-41c8-b8ee-b1553a148132" + "9368c8d1-9ebd-46a3-a964-85d125ddd401" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012710Z:6588384d-5537-41c8-b8ee-b1553a148132" + "EASTUS:20250602T214837Z:9368c8d1-9ebd-46a3-a964-85d125ddd401" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A8180490327C4A1D8BD86F4438D326A8 Ref B: MNZ221060609023 Ref C: 2025-06-02T21:48:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:10 GMT" + "Mon, 02 Jun 2025 21:48:37 GMT" + ], + "Content-Length": [ + "1827" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise/Versions/17763.7322.250524\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180220?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxODAyMjA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UvdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b57d5309-2af6-4fac-bba1-9409461377ac" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "9ad6836c-987a-4c53-8536-f1c02736adef" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180220\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12917,Microsoft.Compute/GetVMImageFromLocation30Min;73917" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "226c609d-a171-4587-bff7-ce771a7118d6" - ], - "Cache-Control": [ - "no-cache" + "bd5c55c0-857d-42d0-8160-dcabb9cc48f6" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/aff9cbb6-3cd3-4f9c-99bd-230737027924" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "1a2849aa-9fed-4f0b-9dfa-32ed35020608" + "b164e83f-c234-40a0-b702-1bddee4a073b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012638Z:1a2849aa-9fed-4f0b-9dfa-32ed35020608" + "EASTUS:20250602T214837Z:b164e83f-c234-40a0-b702-1bddee4a073b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 19CF30CADE10415796A0FBC2E6CA61F9 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:48:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:37 GMT" + "Mon, 02 Jun 2025 21:48:37 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise/Versions/17763.6775.250109\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180220?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxODAyMjA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UvdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4bd396a0-a364-4f8e-b457-a91f1e110bbb" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "d055f5d3-45f2-453e-82b1-f42354f47148" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180220\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12916,Microsoft.Compute/GetVMImageFromLocation30Min;73916" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "fdf282e0-f489-4624-8adb-5edf19d4a1d5" + "d1556e45-39a8-4103-a0e6-1ba3b357accf" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/67ecec4e-021a-4003-b67b-954e27bc8bb4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14688" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "57300772-5256-46a0-bb1d-a1f51b518c95" + "5d8f19e0-4b05-497d-b802-570911ae1eab" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012711Z:57300772-5256-46a0-bb1d-a1f51b518c95" + "EASTUS:20250602T214837Z:5d8f19e0-4b05-497d-b802-570911ae1eab" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4A897164B2EB4BF0A4BFF7A4C214432F Ref B: MNZ221060609023 Ref C: 2025-06-02T21:48:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:10 GMT" + "Mon, 02 Jun 2025 21:48:37 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise/Versions/17763.6893.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxODAzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UvdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "faa2729a-8597-47f0-9972-3aa3b4d631ba" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "7baac77d-cb29-44a5-91ad-ac88542496d3" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12915,Microsoft.Compute/GetVMImageFromLocation30Min;73915" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9edc6dea-33e0-4fee-b654-6f8df090b7bc" - ], - "Cache-Control": [ - "no-cache" + "1e981c81-34b8-47cc-816a-30d86fbb807b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/78b6a4ec-84b9-4232-b375-ef01328f4efc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e1217e81-7ccb-4e39-a7b5-0a00bbdbebd5" + "4b25f3ba-6d5a-4256-8020-1b88d8fec90b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012638Z:e1217e81-7ccb-4e39-a7b5-0a00bbdbebd5" + "EASTUS2:20250602T214838Z:4b25f3ba-6d5a-4256-8020-1b88d8fec90b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E1460CE659584B05A0C4A9305B509DC3 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:48:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:38 GMT" + "Mon, 02 Jun 2025 21:48:37 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise/Versions/17763.7009.250306\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxODAzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UvdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "cb280176-05b2-4602-8359-c406398d88e0" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "63e88f18-5d9e-4c61-9f73-e36165067b90" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12914,Microsoft.Compute/GetVMImageFromLocation30Min;73914" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "19905500-e3ca-4958-9a8b-8cfe15254d4b" + "1346176c-062d-4837-93ae-3ab1ff026742" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d34e01d7-8019-4a72-995a-2fb6b4c4d549" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14687" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b9d6ea9a-bb5a-4d02-988b-bacfcd802a2f" + "41abc964-e48f-4e92-880e-b373f43781fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012711Z:b9d6ea9a-bb5a-4d02-988b-bacfcd802a2f" + "EASTUS:20250602T214838Z:41abc964-e48f-4e92-880e-b373f43781fe" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0B7A67FB13864FAD8675B191FF0C17CC Ref B: MNZ221060619019 Ref C: 2025-06-02T21:48:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:10 GMT" + "Mon, 02 Jun 2025 21:48:37 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise/Versions/17763.7240.250409\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxODA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UvdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8ca9cea1-dad2-432e-86f4-fbf78c8ba191" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "18832282-d9ec-4d70-ae33-a1fd67ce7bda" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12913,Microsoft.Compute/GetVMImageFromLocation30Min;73913" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "a99ba393-5cdc-4831-a712-bcc60df699f4" - ], - "Cache-Control": [ - "no-cache" + "1d7cdb52-fe9f-4f2a-8e10-7eb566b8a605" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dc910d57-681e-4ad9-af98-8fdb492bcf66" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7459d151-5595-4e9a-9a4a-a56fc08ee2d0" + "565226df-e9a7-4a4f-afe3-eb8dabadc59b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012638Z:7459d151-5595-4e9a-9a4a-a56fc08ee2d0" + "EASTUS:20250602T214838Z:565226df-e9a7-4a4f-afe3-eb8dabadc59b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 307E0B7856FA40B8B262884DA9216318 Ref B: MNZ221060608047 Ref C: 2025-06-02T21:48:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:38 GMT" + "Mon, 02 Jun 2025 21:48:37 GMT" + ], + "Content-Length": [ + "1093" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise/Versions/17763.7314.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4xMjcuMjAxODA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UvdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c485b8fe-c8cd-4e35-a1eb-7da112b1a840" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "0c891800-69fd-4f89-9a73-3747761d72ed" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12912,Microsoft.Compute/GetVMImageFromLocation30Min;73912" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "0ee3930b-2f65-408c-9f63-842aed1a6ad0" + "9f3a8889-6269-4e52-9d86-54e3ab734d13" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/94830bed-47fd-4898-a22f-7bee01417092" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14686" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ef220beb-9b90-40c0-b041-b8d868d7525e" + "1225d6c6-740c-46bf-a485-f060163bef74" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012711Z:ef220beb-9b90-40c0-b041-b8d868d7525e" + "EASTUS:20250602T214838Z:1225d6c6-740c-46bf-a485-f060163bef74" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9DA7226B7B8C4136AA5AFC6DF00E9FF4 Ref B: MNZ221060609037 Ref C: 2025-06-02T21:48:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:10 GMT" + "Mon, 02 Jun 2025 21:48:38 GMT" + ], + "Content-Length": [ + "1093" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise/Versions/17763.7322.250524\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "605ecef8-756d-42e4-b66d-37e1ab0c3b14" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1c5c19b2-8bc1-46bb-9259-3e184ae5b64d" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.0.20170415\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.0.20170415\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.0.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170919\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170919\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20171217\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180220\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180510\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4391" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15922,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43922" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "315f2d7d-b674-4de8-a4b0-086a694d501e" - ], - "Cache-Control": [ - "no-cache" + "65a0bdaf-bd32-4a23-bb1a-7326b372c460" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4c828897-a611-4c7c-9925-104deb728001" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "279953ef-55a5-46d5-aeea-e595c6bfe8fa" + "edc1cf57-f135-4464-a905-934ab0f22b9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012638Z:279953ef-55a5-46d5-aeea-e595c6bfe8fa" + "EASTUS2:20250602T214838Z:edc1cf57-f135-4464-a905-934ab0f22b9b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8919B52366D94BF28DECED0B0948E074 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:48:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:38 GMT" + "Mon, 02 Jun 2025 21:48:37 GMT" + ], + "Content-Length": [ + "1845" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-g2/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-g2/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-g2/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-g2/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-g2/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-g2/Versions/17763.7322.250524\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise-g2/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UtZzIvdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "63c2c2c8-28f9-4854-9c2f-ae5aa9a9a2f0" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "d14f7859-11df-4c93-b1f5-412f065b2986" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.0.20170415\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.0.20170415\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.0.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170919\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170919\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20171217\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180220\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180510\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4391" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12911,Microsoft.Compute/GetVMImageFromLocation30Min;73911" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "cabbf9bd-4d07-42a3-a6aa-0d7cc18a9768" + "fde601b7-0a5e-4a8d-b338-3d852c5e5912" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ed9e8846-4aef-4257-a112-92dcbff2252c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14685" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d0e8db0b-2cc2-4154-92e5-cab0b242e03b" + "6e035982-b547-447c-8691-100ec6d34e89" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012711Z:d0e8db0b-2cc2-4154-92e5-cab0b242e03b" + "EASTUS:20250602T214838Z:6e035982-b547-447c-8691-100ec6d34e89" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E2D0AFC324846418560314E6AF08280 Ref B: MNZ221060608053 Ref C: 2025-06-02T21:48:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:10 GMT" + "Mon, 02 Jun 2025 21:48:37 GMT" + ], + "Content-Length": [ + "1305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-g2/Versions/17763.6775.250109\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.0.20170415?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMC4yMDE3MDQxNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise-g2/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UtZzIvdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "49498a7f-1bab-4649-893e-09eafbadfc81" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "d592fc2f-ac98-4789-a144-1bcc434855c8" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.0.20170415\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.0.20170415\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "414" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Pragma": [ + "no-cache" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12910,Microsoft.Compute/GetVMImageFromLocation30Min;73910" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "f452f4ad-8df0-4f19-bb1d-ade21b67ac65" + "5aab6a45-4d3f-4474-80e5-6e4afdda1955" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/56007e82-5e65-47b6-848d-d79902adfa77" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e8bd6c66-b7ac-42c7-a1fb-50e6958f4c58" + "043339d5-5766-4d6f-a343-1d2766647c57" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012638Z:e8bd6c66-b7ac-42c7-a1fb-50e6958f4c58" + "EASTUS:20250602T214838Z:043339d5-5766-4d6f-a343-1d2766647c57" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D1AE262A37F84206A1A4617E4D9847EA Ref B: MNZ221060619023 Ref C: 2025-06-02T21:48:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:38 GMT" + "Mon, 02 Jun 2025 21:48:38 GMT" + ], + "Content-Length": [ + "1305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-g2/Versions/17763.6893.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.0.20170415?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMC4yMDE3MDQxNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise-g2/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UtZzIvdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3233cd7e-a5ae-4f34-b374-fbf2878696c2" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "4966efd5-e533-4dc0-80ed-19658841bda9" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.0.20170415\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.0.20170415\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "414" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12909,Microsoft.Compute/GetVMImageFromLocation30Min;73909" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "78b04c52-5a9b-4053-a91a-2edb45aae9e2" - ], - "Cache-Control": [ - "no-cache" + "e4542d58-bc3b-4d58-94ab-2b110068ca59" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3cb07df1-5828-497c-8177-7241e7d59939" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14684" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9cf52ccd-1adb-49f1-babf-6febc4279160" + "5b18d811-f6e1-4f74-9eff-f0aa722c1f94" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012711Z:9cf52ccd-1adb-49f1-babf-6febc4279160" + "EASTUS2:20250602T214838Z:5b18d811-f6e1-4f74-9eff-f0aa722c1f94" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B1AF6E89B49541D59ADC15F7BFF3B707 Ref B: MNZ221060619025 Ref C: 2025-06-02T21:48:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:10 GMT" + "Mon, 02 Jun 2025 21:48:38 GMT" + ], + "Content-Length": [ + "1305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-g2/Versions/17763.7009.250306\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.0.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMC4yMDE3MDUxMD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise-g2/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UtZzIvdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7ba76a53-ea18-43fe-b913-6598316e2dae" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8b39dd27-e77f-46e2-8f04-776dae92f05b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.0.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "414" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12908,Microsoft.Compute/GetVMImageFromLocation30Min;73908" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9ca624ac-8460-43f9-b353-3b8ea8ce80bb" + "c35c89e6-e104-46a8-a689-8ca7fe10dff4" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a02b4582-f8cf-4f35-8e3e-49f33f15e64a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "76d5ad3e-5457-4a3e-95c3-3b7dd56ec22d" + "5b1b26f5-b55f-437e-9464-451ae13a0b81" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012639Z:76d5ad3e-5457-4a3e-95c3-3b7dd56ec22d" + "EASTUS2:20250602T214839Z:5b1b26f5-b55f-437e-9464-451ae13a0b81" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A08FCA26F3F1451B949153D4CA668EB5 Ref B: MNZ221060609017 Ref C: 2025-06-02T21:48:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:38 GMT" + "Mon, 02 Jun 2025 21:48:38 GMT" + ], + "Content-Length": [ + "1305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-g2/Versions/17763.7240.250409\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.0.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMC4yMDE3MDUxMD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise-g2/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UtZzIvdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8491e03b-9b66-4f3b-b884-f26b9498a808" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "27fefcfd-e4ad-440f-be14-a82748658864" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.0.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "414" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12907,Microsoft.Compute/GetVMImageFromLocation30Min;73907" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "40b58500-eebf-4ebd-83f4-c7d574a89366" - ], - "Cache-Control": [ - "no-cache" + "9ce94f18-a102-4c1e-8b32-4a79f96b785f" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/62a092f2-1f67-4a27-943b-91c41ac71ae1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14683" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "17a39aac-0dd3-48f1-9b80-ec8c9fb62c1a" + "7a01c800-4d93-45b6-9395-abc4e64e8da7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012711Z:17a39aac-0dd3-48f1-9b80-ec8c9fb62c1a" + "EASTUS2:20250602T214839Z:7a01c800-4d93-45b6-9395-abc4e64e8da7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E26920318D89479CB1A92435A0B9EDA3 Ref B: MNZ221060609017 Ref C: 2025-06-02T21:48:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:11 GMT" + "Mon, 02 Jun 2025 21:48:38 GMT" + ], + "Content-Length": [ + "1224" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-g2/Versions/17763.7314.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20170630?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcwNjMwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise-g2/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2UtZzIvdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ab0edace-6962-485c-9fb7-455db0627265" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "cae8f421-b5bb-40ee-b364-dad3cadf8997" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170630\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12906,Microsoft.Compute/GetVMImageFromLocation30Min;73906" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "e8c87fd0-9d8a-4b6c-a3a4-32a5fc4aedb5" + "9bc9382c-b5ce-40da-ad53-84faa6b124c2" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d9212f29-0e38-43ca-88e4-3087e680675b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "170390af-192c-49ed-8441-512d2ab9d5b6" + "a8fcb849-6c6e-4402-b092-4366b3c052cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012639Z:170390af-192c-49ed-8441-512d2ab9d5b6" + "EASTUS2:20250602T214839Z:a8fcb849-6c6e-4402-b092-4366b3c052cb" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4659A219CAE7495B9C3C2C431847F583 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:48:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:38 GMT" + "Mon, 02 Jun 2025 21:48:38 GMT" + ], + "Content-Length": [ + "1224" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-g2/Versions/17763.7322.250524\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20170630?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcwNjMwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise-standard/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2Utc3RhbmRhcmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "59d66c3e-8008-429e-a592-8a63939b41c9" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "40910011-f52f-45fe-876e-fdff01cb79fd" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170630\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15921,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43921" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "255ad9f5-c4cd-4fed-94c1-defeab64a6a1" - ], - "Cache-Control": [ - "no-cache" + "b24d79c2-d34a-4d70-853c-b2c0bedc6275" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6cbfd170-6efd-4d10-93b6-1a909bf95808" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14682" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a7e8d443-7fd0-4cf1-8493-2c24d76bf4f3" + "61c1f6c9-5ae9-41b2-b5ea-adaa566980d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012711Z:a7e8d443-7fd0-4cf1-8493-2c24d76bf4f3" + "EASTUS2:20250602T214839Z:61c1f6c9-5ae9-41b2-b5ea-adaa566980d9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C32ACAB388B84B7380DF7F2C159DF113 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:48:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:11 GMT" + "Mon, 02 Jun 2025 21:48:39 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcwNzEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise-standard-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2Utc3RhbmRhcmQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "61c1b430-e58a-44e7-add2-08b15f76ff8b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "d6b869bf-ec8b-4ad0-bbb2-8177d996efaa" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15920,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43920" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "34d5f17d-b7fc-47be-afcc-576fe0132289" - ], - "Cache-Control": [ - "no-cache" + "0307ac35-417d-489e-8b1d-c5e215d436f2" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4c98bbf6-de8d-421f-b997-0d56566f9aa2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "6da336f2-75d6-44de-a36d-cff8730debf3" + "a9f549e9-6a79-4aa4-8ee1-84643bfd8923" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012639Z:6da336f2-75d6-44de-a36d-cff8730debf3" + "EASTUS2:20250602T214839Z:a9f549e9-6a79-4aa4-8ee1-84643bfd8923" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F449CA1E626340018D51F9C4FB580CED Ref B: MNZ221060609017 Ref C: 2025-06-02T21:48:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:39 GMT" + "Mon, 02 Jun 2025 21:48:38 GMT" + ], + "Content-Length": [ + "327" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1935.2105080716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-standard-g2/Versions/17763.1935.2105080716\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcwNzEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprise-standard-g2/versions/17763.1935.2105080716?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2Utc3RhbmRhcmQtZzIvdmVyc2lvbnMvMTc3NjMuMTkzNS4yMTA1MDgwNzE2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f704c130-a952-4b71-a7ed-82f341e04d3a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "4902e36e-7fd4-4336-a611-7f8caadaa2e6" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12905,Microsoft.Compute/GetVMImageFromLocation30Min;73905" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "8c40c140-6be4-45ca-a3a7-8e4e4223eeb7" + "333d5da8-ce92-46ff-a57a-382ef4575774" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1b4e5104-469b-4837-8290-8aadb777d5bd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14681" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "942a8566-dedd-4f7e-b2eb-227c31400c84" + "7423eaf3-b634-43d1-8f87-102c6e8c569e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012711Z:942a8566-dedd-4f7e-b2eb-227c31400c84" + "EASTUS2:20250602T214839Z:7423eaf3-b634-43d1-8f87-102c6e8c569e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0A62D1A2B7294A4FABDCE85E18AAE05D Ref B: MNZ221060609027 Ref C: 2025-06-02T21:48:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:11 GMT" + "Mon, 02 Jun 2025 21:48:39 GMT" + ], + "Content-Length": [ + "912" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1935.2105080716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprise-standard-g2/Versions/17763.1935.2105080716\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20170822?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcwODIyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4ebc5197-182c-45a2-b6c5-9f888a79af43" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "70c753f1-8fe8-4eac-be6f-45e6ef4e08ea" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170822\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15919,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43919" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7624a8ff-94c6-4919-92a4-f5298d6643bc" - ], - "Cache-Control": [ - "no-cache" + "ab433ebe-c7b8-40d2-8165-3b370b429440" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0efc005f-702d-4ab8-8938-c2d5c4b39b2d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "556afc53-29e5-4ff1-bcb9-7d4142dda34e" + "f3a1b5cd-8e2b-456f-833f-5762dcd83c49" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012639Z:556afc53-29e5-4ff1-bcb9-7d4142dda34e" + "EASTUS:20250602T214840Z:f3a1b5cd-8e2b-456f-833f-5762dcd83c49" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 965BD20A084A4410A6C346694258799F Ref B: MNZ221060619049 Ref C: 2025-06-02T21:48:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:39 GMT" + "Mon, 02 Jun 2025 21:48:39 GMT" + ], + "Content-Length": [ + "1833" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen/Versions/17763.7322.250524\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20170822?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcwODIyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuL3ZlcnNpb25zLzE3NzYzLjY3NzUuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d05b4ca6-8baf-4e11-bd28-a90897a30742" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "33dd9535-7a76-4c9c-a4e5-02e9faab36d6" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170822\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12904,Microsoft.Compute/GetVMImageFromLocation30Min;73904" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "1a0605e6-9a8e-42a6-a738-5942b4498a26" - ], - "Cache-Control": [ - "no-cache" + "47e758c1-28c8-4f31-a163-77889f203549" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9fd17a74-e622-4167-9994-5ad4d3158aaf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14680" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "471023f1-867a-4002-b7d2-fb44d4d9be40" + "5e73de4f-d0de-4258-a383-469b4b8bf940" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012712Z:471023f1-867a-4002-b7d2-fb44d4d9be40" + "EASTUS:20250602T214840Z:5e73de4f-d0de-4258-a383-469b4b8bf940" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1769AE18E12B462599F9BD3CD645CEB4 Ref B: MNZ221060610009 Ref C: 2025-06-02T21:48:40Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:11 GMT" + "Mon, 02 Jun 2025 21:48:39 GMT" + ], + "Content-Length": [ + "1175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen/Versions/17763.6775.250109\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20170919?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcwOTE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuL3ZlcnNpb25zLzE3NzYzLjY4OTMuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "dc44deac-697f-4cb4-bb32-28af7fa50535" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "13376ca1-4e45-4cbf-9685-3de4208ba1b2" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170919\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170919\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12903,Microsoft.Compute/GetVMImageFromLocation30Min;73903" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2b27397b-7dfe-4d1a-a782-03d5e5866155" - ], - "Cache-Control": [ - "no-cache" + "ff1017bd-cd22-41a9-8a63-f95758cf50b3" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c47e2ac3-6f2b-4109-a3da-1cf441195b08" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "92b7ab59-012c-4d70-ac8c-ba0f79095812" + "6bcdbd2e-e0f9-41e3-a7ae-1c4c6d416a6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012639Z:92b7ab59-012c-4d70-ac8c-ba0f79095812" + "EASTUS2:20250602T214840Z:6bcdbd2e-e0f9-41e3-a7ae-1c4c6d416a6b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CAAD5716669C4CDFA094D43A4680E79F Ref B: MNZ221060619039 Ref C: 2025-06-02T21:48:40Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:39 GMT" + "Mon, 02 Jun 2025 21:48:39 GMT" + ], + "Content-Length": [ + "1175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen/Versions/17763.6893.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20170919?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcwOTE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuL3ZlcnNpb25zLzE3NzYzLjcwMDkuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a68dc626-db57-4008-9931-8d42df75094b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3319954a-f207-4d70-91bb-21f2164a575f" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20170919\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20170919\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12902,Microsoft.Compute/GetVMImageFromLocation30Min;73902" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "57933f84-d796-4aa4-81ea-550fbf0a9882" - ], - "Cache-Control": [ - "no-cache" + "d6bde748-a39b-4b9d-b8b5-3f2f4fd2491e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6c91c3f5-7b50-4912-bb10-6f3e3a9b187a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14679" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "894fc2eb-606d-4bbf-b1f8-dc2a82994736" + "d2d6755c-3272-4f71-8e3b-6b69264d3db5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012712Z:894fc2eb-606d-4bbf-b1f8-dc2a82994736" + "EASTUS2:20250602T214840Z:d2d6755c-3272-4f71-8e3b-6b69264d3db5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ABA4997A728F4F6A9B4ADE5884D844FA Ref B: MNZ221060609031 Ref C: 2025-06-02T21:48:40Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:11 GMT" + "Mon, 02 Jun 2025 21:48:40 GMT" + ], + "Content-Length": [ + "1175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen/Versions/17763.7009.250306\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcxMDE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuL3ZlcnNpb25zLzE3NzYzLjcyNDAuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "48914579-7f63-4e41-aa84-c23a12ffa29e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "890fc29e-080c-4e6a-aa60-649bd13161ab" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12901,Microsoft.Compute/GetVMImageFromLocation30Min;73901" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9e0a0e09-e759-428c-8a6e-56641322a349" - ], - "Cache-Control": [ - "no-cache" + "e52529e3-f03c-47ab-97bd-e072f7a98471" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3e3451c9-9d64-4e08-b558-a03b2fbacb8f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ef08fb15-f569-4f94-9e01-014b372997a6" + "e68c9592-2b45-492d-91eb-c4e716d58676" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012639Z:ef08fb15-f569-4f94-9e01-014b372997a6" + "EASTUS2:20250602T214840Z:e68c9592-2b45-492d-91eb-c4e716d58676" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7B94C5A4E7944B7AB05E26839D6F8081 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:48:40Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:39 GMT" + "Mon, 02 Jun 2025 21:48:39 GMT" + ], + "Content-Length": [ + "1175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen/Versions/17763.7240.250409\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcxMDE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuL3ZlcnNpb25zLzE3NzYzLjczMTQuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1e17a531-0058-4744-a72f-29ec5f5cb3c5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1d3464fe-5624-4729-bafe-4d14c9b3a17e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12900,Microsoft.Compute/GetVMImageFromLocation30Min;73900" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2d1cfe35-0d1d-46b8-a6ec-2200da365106" - ], - "Cache-Control": [ - "no-cache" + "57e737a1-9081-4280-8466-d6d2a68fdcd0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/22f5981f-0861-4c18-8acb-a9e6a25cbdb5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14678" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8d83d488-a87c-443a-b56c-c4fb33d85ee4" + "be6a13d4-d7ec-4a0d-99e7-c83ab405b93a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012712Z:8d83d488-a87c-443a-b56c-c4fb33d85ee4" + "EASTUS2:20250602T214840Z:be6a13d4-d7ec-4a0d-99e7-c83ab405b93a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DCCD039309784EF19524235CC81CC3CF Ref B: MNZ221060609017 Ref C: 2025-06-02T21:48:40Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:11 GMT" + "Mon, 02 Jun 2025 21:48:39 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen/Versions/17763.7314.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcxMTE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuL3ZlcnNpb25zLzE3NzYzLjczMjIuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e06f87ce-8354-4bdb-ba31-bf4d62a11d94" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "ac7a7259-d107-4167-ad9e-b61db8d4f446" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12899,Microsoft.Compute/GetVMImageFromLocation30Min;73899" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "30ac2f72-255c-414f-887e-b4e4db95cdd4" - ], - "Cache-Control": [ - "no-cache" + "9e4eb610-13a1-475a-ab1b-08eb6e5cf264" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f359b2b0-f48f-4a0e-917a-d680029e0f0c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "21550081-9026-40fb-8f8e-5ca0b5a1fac9" + "b992fcc4-55f1-4cab-a317-6858750e1765" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012639Z:21550081-9026-40fb-8f8e-5ca0b5a1fac9" + "EASTUS2:20250602T214840Z:b992fcc4-55f1-4cab-a317-6858750e1765" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CBA44142D5814952B42FE5EDE3C49139 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:48:40Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:39 GMT" + "Mon, 02 Jun 2025 21:48:40 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen/Versions/17763.7322.250524\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcxMTE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "26bba08e-bce6-447d-8682-7770bb8fb405" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f453183c-5ba8-4344-89bf-8ae6eac8cae2" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15918,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43918" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "75262396-4e39-404d-979e-a0e1ce09515e" - ], - "Cache-Control": [ - "no-cache" + "d6ce9293-3dd6-4a80-8b8e-e9bd6b70d153" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3d2133dc-77d6-4276-84d3-edbb37aa4e14" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14677" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "6fcfc624-7d8d-4b66-8ae6-3303769ccd0d" + "5ef7a1bb-b952-4b12-b76c-035e36c8c4c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012712Z:6fcfc624-7d8d-4b66-8ae6-3303769ccd0d" + "EASTUS:20250602T214841Z:5ef7a1bb-b952-4b12-b76c-035e36c8c4c7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5755F94BE6DB49869364EE25A87CE0AC Ref B: MNZ221060619023 Ref C: 2025-06-02T21:48:40Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:11 GMT" + "Mon, 02 Jun 2025 21:48:40 GMT" + ], + "Content-Length": [ + "1851" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-g2/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-g2/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-g2/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-g2/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-g2/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-g2/Versions/17763.7322.250524\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20171217?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcxMjE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen-g2/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuLWcyL3ZlcnNpb25zLzE3NzYzLjY3NzUuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "259f66e2-c25a-4ebd-b3a0-a18430fc99ff" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "44dc0ec5-0270-4898-87a2-4bf079c24298" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20171217\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12898,Microsoft.Compute/GetVMImageFromLocation30Min;73898" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "948dd5a1-310d-430b-9ff7-420acf1fe1d6" - ], - "Cache-Control": [ - "no-cache" + "e66be914-ecf9-4ad8-bd1c-1b4cd76fd28e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7ea7ad76-ecd5-4ceb-ae39-f3c4d5cc446f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14890" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8c01e0c6-2079-4fb1-ae83-806cda43eb31" + "ba7a0a8e-94ff-4c62-9b7c-100e9e498738" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012640Z:8c01e0c6-2079-4fb1-ae83-806cda43eb31" + "EASTUS2:20250602T214841Z:ba7a0a8e-94ff-4c62-9b7c-100e9e498738" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FFE7AC330C0045A8B32A7F076711703B Ref B: MNZ221060609031 Ref C: 2025-06-02T21:48:41Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:39 GMT" + "Mon, 02 Jun 2025 21:48:40 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-g2/Versions/17763.6775.250109\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20171217?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTcxMjE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen-g2/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuLWcyL3ZlcnNpb25zLzE3NzYzLjY4OTMuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fc8ddd76-cc42-4921-ab77-4e576277b9f8" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "86cc3754-d2bb-4612-9b3c-2a6f63fc8d99" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20171217\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12897,Microsoft.Compute/GetVMImageFromLocation30Min;73897" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "0649b763-ab7e-49b2-97ad-4aa6599f4777" - ], - "Cache-Control": [ - "no-cache" + "afdf6f91-5783-45c8-904e-0e6aa16feeed" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cf758c25-92d7-444b-9a42-98cfd5b51734" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14676" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "16f4fae7-7a4a-48ca-955c-245ecb0e0305" + "0e63a31f-9552-4214-88f9-bf7605cbe6a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012712Z:16f4fae7-7a4a-48ca-955c-245ecb0e0305" + "EASTUS:20250602T214841Z:0e63a31f-9552-4214-88f9-bf7605cbe6a1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 12D583546EFB4E7AB86A92B8A1B89F8D Ref B: MNZ221060610053 Ref C: 2025-06-02T21:48:41Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:11 GMT" + "Mon, 02 Jun 2025 21:48:40 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-g2/Versions/17763.6893.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20180111?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTgwMTExP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen-g2/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuLWcyL3ZlcnNpb25zLzE3NzYzLjcwMDkuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f17fd6ea-a592-4301-8a0c-d3000128c515" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "94792d6f-ef79-4689-9679-ad435444f9d0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180111\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12896,Microsoft.Compute/GetVMImageFromLocation30Min;73896" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "379d6bf9-b2a8-4425-9caa-656ac726f74f" - ], - "Cache-Control": [ - "no-cache" + "91eead0e-7f53-4ba9-bf70-20df49817009" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/faccdb33-34de-44e9-bc2c-71680275a33a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14889" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "cc712c26-491e-4930-a62d-1fc1902f4581" + "bc9815f0-c642-40a1-aef0-6f9206cc9746" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012640Z:cc712c26-491e-4930-a62d-1fc1902f4581" + "EASTUS:20250602T214841Z:bc9815f0-c642-40a1-aef0-6f9206cc9746" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BC9B3FEF4AA84F058E4BEA4C1F1462E5 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:48:41Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:39 GMT" + "Mon, 02 Jun 2025 21:48:41 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-g2/Versions/17763.7009.250306\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20180111?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTgwMTExP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen-g2/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuLWcyL3ZlcnNpb25zLzE3NzYzLjcyNDAuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4d462a54-913a-4d09-9fe0-1660946e6278" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8bcf7e3f-7250-4a14-b90b-b9e4611c9fcc" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180111\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180111\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12895,Microsoft.Compute/GetVMImageFromLocation30Min;73895" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "5e83d118-0329-40a0-a6b3-9874e9e6d70f" - ], - "Cache-Control": [ - "no-cache" + "2209cdbd-1e2a-4f36-8286-68813b5433b7" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a3d330bf-ad9b-431d-aabe-f283064a46d0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14675" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f1e5aae3-250c-4848-b032-16a51e12329b" + "245796f3-a021-463f-966f-62b675f959d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012712Z:f1e5aae3-250c-4848-b032-16a51e12329b" + "EASTUS:20250602T214841Z:245796f3-a021-463f-966f-62b675f959d6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A90477FC1FF74604B5C4F27FBCF8F0CA Ref B: MNZ221060610021 Ref C: 2025-06-02T21:48:41Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:11 GMT" + "Mon, 02 Jun 2025 21:48:41 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-g2/Versions/17763.7240.250409\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20180220?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTgwMjIwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen-g2/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuLWcyL3ZlcnNpb25zLzE3NzYzLjczMTQuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a6393ec6-5d82-4651-b920-4919eadddfd0" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "20bf0b5d-0803-4578-8b4b-b6ee3ea3493d" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180220\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12894,Microsoft.Compute/GetVMImageFromLocation30Min;73894" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9e1deb41-5fac-4690-a3c5-fa286cb3073d" - ], - "Cache-Control": [ - "no-cache" + "69a6862b-4cc8-492c-9c3c-4353bdf4b62e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bfc06cfc-a6c0-45ce-a240-3226fc4b55c7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14888" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "57f99237-2acb-450e-8843-60e7edad0919" + "287efe3a-c9ed-4a6c-b2ee-08a9db5a9f0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012640Z:57f99237-2acb-450e-8843-60e7edad0919" + "EASTUS:20250602T214841Z:287efe3a-c9ed-4a6c-b2ee-08a9db5a9f0b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 13370D93DDFC4A1EB8CDE1CDB6709858 Ref B: MNZ221060618039 Ref C: 2025-06-02T21:48:41Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:40 GMT" + "Mon, 02 Jun 2025 21:48:41 GMT" + ], + "Content-Length": [ + "1225" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-g2/Versions/17763.7314.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20180220?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTgwMjIwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen-g2/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuLWcyL3ZlcnNpb25zLzE3NzYzLjczMjIuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c17c02c9-8a34-49b2-ae69-95908a17d686" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "ca3cf0bb-f73c-4eec-8d33-3c19d99a163c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180220\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12893,Microsoft.Compute/GetVMImageFromLocation30Min;73893" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "afe00d16-dc11-44ea-a099-39891f0a3d53" - ], - "Cache-Control": [ - "no-cache" + "c29ce56e-4561-485a-94ee-dcd7e56bc6a8" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/89b6a5b4-96d7-4fa3-aa84-37b822e162e4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14674" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "fcb63a2a-deb8-4e24-8c12-2dc56aa951f3" + "1de5564c-cf35-4662-b873-81bd57741408" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012712Z:fcb63a2a-deb8-4e24-8c12-2dc56aa951f3" + "EASTUS2:20250602T214841Z:1de5564c-cf35-4662-b873-81bd57741408" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 52F679235CA944829B244202B66BB1F8 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:48:41Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:12 GMT" + "Mon, 02 Jun 2025 21:48:41 GMT" + ], + "Content-Length": [ + "1225" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-enterprisen-g2/Versions/17763.7322.250524\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTgwMzE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-enterprisen-standard/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWVudGVycHJpc2VuLXN0YW5kYXJkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4492a553-9275-4fda-8219-d92f6c16ee0a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "4902aca5-1cdc-4f49-beda-cfa7672b8498" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15917,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43917" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "139a6809-4a53-46a3-bb27-9a04c9e6b79d" - ], - "Cache-Control": [ - "no-cache" + "b95c66be-d9e8-4d33-9084-c06239faf8ab" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8d081d1c-4069-4f46-8dc0-1c7f31475508" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14887" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "709c7805-2e12-4374-bcd3-871643714f9f" + "089d0622-5881-4755-8ec6-ca5ebfe78639" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012640Z:709c7805-2e12-4374-bcd3-871643714f9f" + "EASTUS2:20250602T214841Z:089d0622-5881-4755-8ec6-ca5ebfe78639" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 777F4741AF0541D4B3D4B26F9873ED92 Ref B: MNZ221060619031 Ref C: 2025-06-02T21:48:41Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:40 GMT" + "Mon, 02 Jun 2025 21:48:41 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTgwMzE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-evd/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWV2ZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c566e361-8fcb-48f4-bbe5-4ade7d901d60" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a0f58db2-8a6b-452d-8d8e-bb680913dd06" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15916,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43916" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "56c3fbc2-9bfc-4241-a7b8-a8663dd8c9e6" - ], - "Cache-Control": [ - "no-cache" + "09a8d3e3-cf58-40d8-86da-1e3b0e9fcff9" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/62b5f429-a392-407a-8a24-31466d2e9edd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14673" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "45bafb31-5e99-46bb-a09d-898909099593" + "c0703868-044b-4c4b-8774-a053fa5ee451" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012712Z:45bafb31-5e99-46bb-a09d-898909099593" + "EASTUS:20250602T214842Z:c0703868-044b-4c4b-8774-a053fa5ee451" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41EA3A6EB1794AA88882D8C8BA10277D Ref B: MNZ221060618011 Ref C: 2025-06-02T21:48:41Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:12 GMT" + "Mon, 02 Jun 2025 21:48:42 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTgwNDEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-evd-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWV2ZC1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b4253c5c-0eac-49a0-ad62-74df93bb2231" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c5cc2abe-3fb1-48d3-90c1-e76a480ce47c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15915,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43915" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "25b5257c-0f1f-43eb-a52f-51d4b4dd21a4" - ], - "Cache-Control": [ - "no-cache" + "daa4a15f-cdb3-47f1-9c6a-bfc6fcc12541" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5dd98446-f63a-4118-b409-d9d2eb945776" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14886" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "fcf6fbfb-58a3-4a7f-be80-5be3d6ce0262" + "a72d1004-86cc-4ed8-b186-1721aa7c6104" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012640Z:fcf6fbfb-58a3-4a7f-be80-5be3d6ce0262" + "EASTUS:20250602T214842Z:a72d1004-86cc-4ed8-b186-1721aa7c6104" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C4611470A81942F2B0261F22391216CB Ref B: MNZ221060618011 Ref C: 2025-06-02T21:48:42Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:40 GMT" + "Mon, 02 Jun 2025 21:48:42 GMT" + ], + "Content-Length": [ + "619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2300.2111032328\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-evd-g2/Versions/17763.2300.2111032328\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2366.2112070401\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-evd-g2/Versions/17763.2366.2112070401\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTgwNDEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-evd-g2/versions/17763.2300.2111032328?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWV2ZC1nMi92ZXJzaW9ucy8xNzc2My4yMzAwLjIxMTEwMzIzMjg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "03887e3f-5cd4-4e4f-9ac1-d7a46b8eef4b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "dc94da70-0310-467e-bb5b-323c822269a0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12892,Microsoft.Compute/GetVMImageFromLocation30Min;73892" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "79d6ddd4-f6c7-4f7c-bc72-0b7c73cfbdbc" - ], - "Cache-Control": [ - "no-cache" + "90e0ec13-c47c-4b15-a425-11e255b82f6e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2f032120-0169-423f-9f43-f529ab6f00d7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14672" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "05b9e16b-802c-4428-bf64-c38038680c79" + "a711cb79-911b-443a-8f60-efdc7c86dbc7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012712Z:05b9e16b-802c-4428-bf64-c38038680c79" + "EASTUS2:20250602T214842Z:a711cb79-911b-443a-8f60-efdc7c86dbc7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A7BECD738E204AF7B1E8E855E8EE7ACA Ref B: MNZ221060610045 Ref C: 2025-06-02T21:48:42Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:12 GMT" + "Mon, 02 Jun 2025 21:48:41 GMT" + ], + "Content-Length": [ + "896" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2300.2111032328\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-evd-g2/Versions/17763.2300.2111032328\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTgwNTEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-evd-g2/versions/17763.2366.2112070401?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LWV2ZC1nMi92ZXJzaW9ucy8xNzc2My4yMzY2LjIxMTIwNzA0MDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f260e69f-d173-4615-a8d3-9f9867740bfb" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "975a37ad-e924-46c2-91cc-7d8a001c0824" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12891,Microsoft.Compute/GetVMImageFromLocation30Min;73891" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2bbdef1e-023a-43d0-93a1-1c40b25507c5" - ], - "Cache-Control": [ - "no-cache" + "28c5e42d-29de-4146-851f-dd7e1c8d8605" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b1b88a3e-d20f-434d-afe3-535c00ede875" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "dad4f708-88c5-4cf8-ac74-975f284f2c22" + "f53b8fec-c7c3-4e1d-a4e8-4d6841afc0d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012640Z:dad4f708-88c5-4cf8-ac74-975f284f2c22" + "EASTUS2:20250602T214842Z:f53b8fec-c7c3-4e1d-a4e8-4d6841afc0d1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 11550F1708BB4D38AA3BED3CABA45636 Ref B: MNZ221060608021 Ref C: 2025-06-02T21:48:42Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:40 GMT" + "Mon, 02 Jun 2025 21:48:41 GMT" + ], + "Content-Length": [ + "896" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2366.2112070401\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-evd-g2/Versions/17763.2366.2112070401\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter-smalldisk/versions/4.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzQuMTI3LjIwMTgwNTEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LXByby92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fb6bd479-f7d5-442d-afb0-b0410089a912" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5c46265e-0280-4c3a-b872-1f4540b5021e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk/Versions/4.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "418" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15914,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43914" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "0c0d1113-f733-45bb-bb7d-b167968c3ede" - ], - "Cache-Control": [ - "no-cache" + "7ba8b2ce-9988-4264-9d38-37f036e893f5" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3bb28c2f-ccd6-44b4-87d6-076a564fa0c1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14671" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "dbf4ad09-b6ba-45d8-a1a1-745addb81084" + "48cd09a3-68b0-4d8e-8e9f-d69a0832c6d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012713Z:dbf4ad09-b6ba-45d8-a1a1-745addb81084" + "EASTUS:20250602T214842Z:48cd09a3-68b0-4d8e-8e9f-d69a0832c6d6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 246E7DB3540B4DF89261731B36DB6B79 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:48:42Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:12 GMT" + "Mon, 02 Jun 2025 21:48:42 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-pro-zh-cn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LXByby16aC1jbi1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "91978c5b-95d3-4192-81c0-bbd98dfa1abf" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "22f87e57-15bc-4bfa-8b13-fe13ab0f93a1" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170421\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170421\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171116\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20171116\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20171217\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180220\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4608" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15913,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43913" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c6b55a34-dbce-417e-a67c-4aae1853faa7" - ], - "Cache-Control": [ - "no-cache" + "a5f244a4-6111-4569-92d3-c26f3931cc4e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9ec4772b-60b0-4cea-911a-3b7522f35043" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f5b12f0a-6823-4804-bac8-15c56ecfb753" + "4210ed1f-29ce-46ae-9e38-4a9ae61b9a7e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012641Z:f5b12f0a-6823-4804-bac8-15c56ecfb753" + "EASTUS:20250602T214842Z:4210ed1f-29ce-46ae-9e38-4a9ae61b9a7e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CF20A42E0FDE4592A564019713FE3F71 Ref B: MNZ221060619049 Ref C: 2025-06-02T21:48:42Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:40 GMT" + "Mon, 02 Jun 2025 21:48:42 GMT" + ], + "Content-Length": [ + "631" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1518.2010132039\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-pro-zh-cn-g2/Versions/17763.1518.2010132039\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1577.2011031610\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-pro-zh-cn-g2/Versions/17763.1577.2011031610\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-pro-zh-cn-g2/versions/17763.1518.2010132039?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LXByby16aC1jbi1nMi92ZXJzaW9ucy8xNzc2My4xNTE4LjIwMTAxMzIwMzk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0adcffd6-a288-4c19-a3ba-10a22e9629de" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b6fb84d1-61bd-4c13-ae5d-e19933e09ed7" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170421\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170421\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171116\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20171116\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20171217\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180220\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4608" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12890,Microsoft.Compute/GetVMImageFromLocation30Min;73890" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "30861206-5e24-4633-94c9-0d09540bc0b5" - ], - "Cache-Control": [ - "no-cache" + "2af4e635-6bea-493c-852e-5b2b4593eefb" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/be77c36b-88a1-48c4-928a-387b908d47fc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14670" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "cc9b1bc9-f53c-4b67-a810-34840f14f9c9" + "cae3a786-a80e-4a78-bb4e-2b4032a97013" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012713Z:cc9b1bc9-f53c-4b67-a810-34840f14f9c9" + "EASTUS2:20250602T214843Z:cae3a786-a80e-4a78-bb4e-2b4032a97013" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6108D3051AA84FBA8D16D51525B175E4 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:48:42Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:12 GMT" + "Mon, 02 Jun 2025 21:48:42 GMT" + ], + "Content-Length": [ + "902" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1518.2010132039\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-pro-zh-cn-g2/Versions/17763.1518.2010132039\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170406?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA0MDY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-pro-zh-cn-g2/versions/17763.1577.2011031610?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LXByby16aC1jbi1nMi92ZXJzaW9ucy8xNzc2My4xNTc3LjIwMTEwMzE2MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fa7a9ac8-59af-4f33-956d-a4ca895141d7" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "d8cbd1c2-08a7-49f6-8904-ff975c0cec02" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170406\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12889,Microsoft.Compute/GetVMImageFromLocation30Min;73889" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "fcb5c497-e204-4ba3-a28a-6b59a602ab8d" - ], - "Cache-Control": [ - "no-cache" + "d2cac0b5-a5a8-4a7c-aaa2-dacf7bc883d7" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b403d4ed-987c-49c5-806c-d09ecef3e59f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14883" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "92b7dd69-4594-44a0-8db3-fef70b376e70" + "c1653a11-0807-4c59-a82f-d2f74f91efa3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012641Z:92b7dd69-4594-44a0-8db3-fef70b376e70" + "EASTUS:20250602T214843Z:c1653a11-0807-4c59-a82f-d2f74f91efa3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 506C20E0EE4F4C2E90ACA06202E8D4A9 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:48:43Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:40 GMT" + "Mon, 02 Jun 2025 21:48:42 GMT" + ], + "Content-Length": [ + "902" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1577.2011031610\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-pro-zh-cn-g2/Versions/17763.1577.2011031610\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170406?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA0MDY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-pron/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LXByb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c2170f4b-ac27-4123-9a4b-e941b315902c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "01ccf359-b8ad-415f-8b67-ff6bfabf1cdf" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170406\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15912,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43912" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "5c9462b8-f124-4bf9-afb8-f463c72b6c8a" - ], - "Cache-Control": [ - "no-cache" + "4a6967c8-e0b1-4f68-a781-16646abf9697" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ddc87615-66b6-43dd-8a2f-a2c8985d423c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14669" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d40834f2-2b38-4d3a-a11a-7ad7195c1928" + "5c2a773a-a6ec-4fa7-bddb-61cedf8d469f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012713Z:d40834f2-2b38-4d3a-a11a-7ad7195c1928" + "EASTUS:20250602T214843Z:5c2a773a-a6ec-4fa7-bddb-61cedf8d469f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 411D3AC00338408394CF0F0A02718A20 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:48:43Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:12 GMT" + "Mon, 02 Jun 2025 21:48:42 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170421?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA0MjE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-pron-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LXByb24tZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "54a9893f-99d4-41ae-b0bf-6a609a25017a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "2a25d9c7-7ae8-4ac9-886d-30a4d3ac3f2e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170421\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170421\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15911,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43911" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ddd567f6-3054-4b88-b7a9-0b6d95b82000" - ], - "Cache-Control": [ - "no-cache" + "b24a2548-7f09-4508-a374-3dbbcdff90b7" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c342bd1c-b015-4a67-887d-8b888cf06706" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14882" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9b261f41-82f7-4c18-94c2-6d29ed1361c0" + "6da3512c-0103-43f4-8d65-ad0368f116bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012641Z:9b261f41-82f7-4c18-94c2-6d29ed1361c0" + "EASTUS:20250602T214843Z:6da3512c-0103-43f4-8d65-ad0368f116bf" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 40A6F3F728FF4772BA004274B3B68434 Ref B: MNZ221060609025 Ref C: 2025-06-02T21:48:43Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:41 GMT" + "Mon, 02 Jun 2025 21:48:42 GMT" + ], + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1518.2010132039\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-pron-g2/Versions/17763.1518.2010132039\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1577.2011031610\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-pron-g2/Versions/17763.1577.2011031610\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170421?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA0MjE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-pron-g2/versions/17763.1518.2010132039?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LXByb24tZzIvdmVyc2lvbnMvMTc3NjMuMTUxOC4yMDEwMTMyMDM5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0400d27f-11b7-497f-b47a-7a911c5d7f74" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "7a58a8ba-694f-48e0-a378-0c478f24c851" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170421\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170421\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12888,Microsoft.Compute/GetVMImageFromLocation30Min;73888" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7b7409bd-9795-404e-bc88-bf508ba2e54e" - ], - "Cache-Control": [ - "no-cache" + "05c2a0ed-f6ca-4c1a-87f1-edef2cac4d89" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5b21b757-dee7-48e4-87e1-d7822ac31636" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14668" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "979685d0-66bf-4d60-8565-3773f3a57d4c" + "18192ab8-9256-4b27-8209-6f8942c7a1c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012713Z:979685d0-66bf-4d60-8565-3773f3a57d4c" + "EASTUS2:20250602T214843Z:18192ab8-9256-4b27-8209-6f8942c7a1c2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 12C2392BF1494C72BAF17BFAC391C7D7 Ref B: MNZ221060608025 Ref C: 2025-06-02T21:48:43Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:12 GMT" + "Mon, 02 Jun 2025 21:48:43 GMT" + ], + "Content-Length": [ + "897" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1518.2010132039\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-pron-g2/Versions/17763.1518.2010132039\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/rs5-pron-g2/versions/17763.1577.2011031610?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvcnM1LXByb24tZzIvdmVyc2lvbnMvMTc3NjMuMTU3Ny4yMDExMDMxNjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c1393321-b240-4735-9012-45f1bc6fc65a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "39ff8c1a-d1b3-4c98-9b47-6a7fd7b51484" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12887,Microsoft.Compute/GetVMImageFromLocation30Min;73887" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "af41dd97-091e-41a0-b13c-1d98ff1a0e00" - ], - "Cache-Control": [ - "no-cache" + "3babdddc-7666-43ea-86bc-8eb6c0a23000" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ff13c426-2ca1-4881-b139-b8cd63f9ab83" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14881" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "6082a2ed-b14b-448b-9bfd-ce0d6e4eac03" + "674f9add-ce3b-4c06-beee-b752528b829f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012641Z:6082a2ed-b14b-448b-9bfd-ce0d6e4eac03" + "EASTUS:20250602T214843Z:674f9add-ce3b-4c06-beee-b752528b829f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7DF1C890B9514A04A5F080A621644AB5 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:48:43Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:41 GMT" + "Mon, 02 Jun 2025 21:48:43 GMT" + ], + "Content-Length": [ + "897" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1577.2011031610\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/rs5-pron-g2/Versions/17763.1577.2011031610\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-avd/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1hdmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d587313c-64a6-42ab-a5b5-05c83f6695d4" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8947c6ad-d88d-42c7-acba-1f98b192a123" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15910,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43910" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ccd0bbad-0fc4-4bce-8134-6db9cd146a7e" - ], - "Cache-Control": [ - "no-cache" + "79db2504-aabe-4ce9-8b36-838bc73dbb39" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d2c6add4-2ba3-419e-a55c-9d5fdca000c1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14667" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "3ed55451-f1d3-4ce9-8fce-f1efd3b666ca" + "6bb76782-bcc7-484a-bbf6-9d54b36774db" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012713Z:3ed55451-f1d3-4ce9-8fce-f1efd3b666ca" + "EASTUS:20250602T214844Z:6bb76782-bcc7-484a-bbf6-9d54b36774db" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 321DE52DC9DB4BA497A34BE7EF5F9954 Ref B: MNZ221060608019 Ref C: 2025-06-02T21:48:43Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:12 GMT" + "Mon, 02 Jun 2025 21:48:43 GMT" + ], + "Content-Length": [ + "611" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-avd/Versions/19044.4412.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-avd/Versions/19044.4529.240607\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170630?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA2MzA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-avd/versions/19044.4412.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1hdmQvdmVyc2lvbnMvMTkwNDQuNDQxMi4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9e7725a5-7088-45f8-854f-0aca4903271c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "e100b406-81ab-4b71-a494-b2767f53879a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170630\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12886,Microsoft.Compute/GetVMImageFromLocation30Min;73886" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "d4c7a613-3062-4f13-a614-02f0f43148b1" - ], - "Cache-Control": [ - "no-cache" + "e75b3d6c-90de-4223-bafc-d91df5d6d3cb" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/74c577e0-2a51-4e65-9179-43ede77adb9a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14880" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7f7356d4-f0ed-4441-a781-704fad9f5963" + "489e0092-d85c-477d-9528-1726f318a462" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012641Z:7f7356d4-f0ed-4441-a781-704fad9f5963" + "EASTUS2:20250602T214844Z:489e0092-d85c-477d-9528-1726f318a462" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BFEF0F51906A4501ADB7F40293379B76 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:48:44Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:41 GMT" + "Mon, 02 Jun 2025 21:48:43 GMT" + ], + "Content-Length": [ + "1044" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-avd/Versions/19044.4412.240510\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170630?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA2MzA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-avd/versions/19044.4529.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1hdmQvdmVyc2lvbnMvMTkwNDQuNDUyOS4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0345a4f1-7a67-4574-8699-bbe22d205468" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "494f3cd8-39cf-4810-b81f-e0fb69f86649" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170630\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12885,Microsoft.Compute/GetVMImageFromLocation30Min;73885" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "5ab22d68-ab85-47f8-86d0-3bfadff88e15" - ], - "Cache-Control": [ - "no-cache" + "63d7b475-5a90-44c8-8e57-05f9a3fea792" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/abe09ff4-c3c1-48bc-99ba-829abb09e76a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14666" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "252e95bc-ceaa-4308-a2a1-3c40af70b208" + "00fef6af-3dff-4ebd-a49e-60a271ae645f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012713Z:252e95bc-ceaa-4308-a2a1-3c40af70b208" + "EASTUS2:20250602T214844Z:00fef6af-3dff-4ebd-a49e-60a271ae645f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DF9C4865C98D4035BD937596D399DF0D Ref B: MNZ221060618011 Ref C: 2025-06-02T21:48:44Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:13 GMT" + "Mon, 02 Jun 2025 21:48:44 GMT" + ], + "Content-Length": [ + "1044" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-avd/Versions/19044.4529.240607\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA3MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-avd-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1hdmQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2346d580-593e-4d07-bf10-bcd791b00a90" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "76d3d654-5e6c-49d2-8af1-e5ddfbe5d0f1" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15909,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43909" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c7b47f31-8da5-4688-9a05-149f983cb2fd" - ], - "Cache-Control": [ - "no-cache" + "4cc89ba0-6db8-4a4d-9c8d-3c7b78b55492" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b830bf68-c896-4a5b-a673-d0235e42a7f6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14879" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "53d80d67-19f1-4cea-91be-f18dd19318d8" + "ab74c631-2b4d-4603-a1a8-2b63920c8f7a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012641Z:53d80d67-19f1-4cea-91be-f18dd19318d8" + "EASTUS2:20250602T214844Z:ab74c631-2b4d-4603-a1a8-2b63920c8f7a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F40FB07F2B84585911CF7785CC3A509 Ref B: MNZ221060609011 Ref C: 2025-06-02T21:48:44Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:41 GMT" + "Mon, 02 Jun 2025 21:48:44 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-avd-g2/Versions/19044.4412.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-avd-g2/Versions/19044.4529.240607\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA3MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-avd-g2/versions/19044.4412.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1hdmQtZzIvdmVyc2lvbnMvMTkwNDQuNDQxMi4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1d1d51de-981e-416b-89d6-5c338d88df1a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "e5faca63-469e-4de1-9ef4-3f5dce92b036" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12884,Microsoft.Compute/GetVMImageFromLocation30Min;73884" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "836c8687-b2fc-409b-a4f2-e975dc8aa2c5" - ], - "Cache-Control": [ - "no-cache" + "9ff7e935-3e82-4fbc-b152-cca066af4fb9" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/91193e96-a7c2-43d3-8e73-dab806134c7e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14665" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "234a0309-f21c-470b-be6a-7c70f355728f" + "6f130d0f-2c4f-46af-b6d1-e07752b54320" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012713Z:234a0309-f21c-470b-be6a-7c70f355728f" + "EASTUS2:20250602T214844Z:6f130d0f-2c4f-46af-b6d1-e07752b54320" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A2BCB063016944C6ACCA50FFE9F1E76A Ref B: MNZ221060608049 Ref C: 2025-06-02T21:48:44Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:13 GMT" + "Mon, 02 Jun 2025 21:48:43 GMT" + ], + "Content-Length": [ + "1175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-avd-g2/Versions/19044.4412.240510\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170822?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA4MjI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-avd-g2/versions/19044.4529.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1hdmQtZzIvdmVyc2lvbnMvMTkwNDQuNDUyOS4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b742a393-12bb-41bd-92fb-3d0b07dc2deb" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "9228de3a-6f3f-4a1d-983e-cb876020c5e8" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170822\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12883,Microsoft.Compute/GetVMImageFromLocation30Min;73883" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "b2408ad5-a296-496c-87f8-0c41fa64272c" - ], - "Cache-Control": [ - "no-cache" + "11487fbb-0e08-42a1-9ccc-8d3cfc27ff22" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fa750a1c-8c93-4488-b484-7ca20084b9dc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14878" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "3e04e099-e4f0-4f98-9a36-d3e50b645050" + "92d8f111-8cb2-4d49-8936-8c56548ac77c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012642Z:3e04e099-e4f0-4f98-9a36-d3e50b645050" + "EASTUS:20250602T214844Z:92d8f111-8cb2-4d49-8936-8c56548ac77c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DD6DB8EC657346E186D4BB94468ADCA3 Ref B: MNZ221060610009 Ref C: 2025-06-02T21:48:44Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:41 GMT" + "Mon, 02 Jun 2025 21:48:43 GMT" + ], + "Content-Length": [ + "1175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-avd-g2/Versions/19044.4529.240607\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170822?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA4MjI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b797a8f6-d4e7-4567-8ca3-0fa03dbe5e59" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a88df918-b851-4deb-a8ee-07ee1bf6d8be" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170822\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15908,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43908" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "369f4806-efb4-4c20-b55c-e86eae23af0e" - ], - "Cache-Control": [ - "no-cache" + "ee79f084-e842-4954-9002-bc29eafdd466" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/27c25366-d140-49c8-9c63-a82d34376437" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14664" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a2638098-2b43-42a2-b560-e32f4449b30d" + "c521ecd0-6198-4b4a-8fd4-7e6b1fff27cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012713Z:a2638098-2b43-42a2-b560-e32f4449b30d" + "EASTUS:20250602T214844Z:c521ecd0-6198-4b4a-8fd4-7e6b1fff27cd" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CA145DC17321456F96CDCD9AF59898E3 Ref B: MNZ221060619049 Ref C: 2025-06-02T21:48:44Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:13 GMT" + "Mon, 02 Jun 2025 21:48:44 GMT" + ], + "Content-Length": [ + "915" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2130.221006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent/Versions/19044.2130.221006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent/Versions/19044.4412.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent/Versions/19044.4529.240607\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA5MTg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent/versions/19044.2130.221006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQvdmVyc2lvbnMvMTkwNDQuMjEzMC4yMjEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7ec6be23-7c88-431c-a308-3bc586013e89" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "cc1ccf93-e184-4d82-9248-bfe0939510ba" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12882,Microsoft.Compute/GetVMImageFromLocation30Min;73882" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "60ac1ada-8232-4338-8da9-df9e69bef96f" - ], - "Cache-Control": [ - "no-cache" + "f7bcd4bf-982b-4b8d-9a39-d045ae40eb8d" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/499aa038-e65b-47ee-b6a9-cc0142e2052b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14877" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "45f1b358-b4d3-46e0-999f-18149acf05e1" + "69ed0ed8-96d4-4ebd-b999-97b36b398641" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012642Z:45f1b358-b4d3-46e0-999f-18149acf05e1" + "EASTUS:20250602T214845Z:69ed0ed8-96d4-4ebd-b999-97b36b398641" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 480AA93268334BB8904A167F0846A176 Ref B: MNZ221060608051 Ref C: 2025-06-02T21:48:44Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:41 GMT" + "Mon, 02 Jun 2025 21:48:44 GMT" + ], + "Content-Length": [ + "1044" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2130.221006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent/Versions/19044.2130.221006\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA5MTg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent/versions/19044.4412.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQvdmVyc2lvbnMvMTkwNDQuNDQxMi4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "aacb5b7b-e629-4052-965a-7c9c87f0487e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "02b2dde0-46ed-41eb-8c40-f987508e71b6" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12881,Microsoft.Compute/GetVMImageFromLocation30Min;73881" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "3ec43589-1693-427f-985f-545214a2be7f" - ], - "Cache-Control": [ - "no-cache" + "ccf622fa-99c7-4c9a-bae4-8a0ecc791593" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ad05714e-5f8f-48ac-be16-97f924711727" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14663" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b659671e-a013-4302-90dd-656822dd4b5b" + "eb181ff4-558c-45fd-8b1f-2607e1b8451c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012714Z:b659671e-a013-4302-90dd-656822dd4b5b" + "EASTUS:20250602T214845Z:eb181ff4-558c-45fd-8b1f-2607e1b8451c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4B608ED533AD4EEDA3837C6BDEE44D0B Ref B: MNZ221060608053 Ref C: 2025-06-02T21:48:45Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:13 GMT" + "Mon, 02 Jun 2025 21:48:44 GMT" + ], + "Content-Length": [ + "1044" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent/Versions/19044.4412.240510\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzEwMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent/versions/19044.4529.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQvdmVyc2lvbnMvMTkwNDQuNDUyOS4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3c44f220-14bb-4c40-9501-6827fcc55419" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "9b938dbf-03a5-42df-a1e3-af7cc1f0dae0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12880,Microsoft.Compute/GetVMImageFromLocation30Min;73880" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "eeff2740-568c-420b-898c-c77e34426271" - ], - "Cache-Control": [ - "no-cache" + "0f9fff68-8b44-44b2-b327-a5eb1c4a0e8a" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d7573f4a-5026-4f80-9dcc-d3ba69b35ee0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14876" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "744723fa-14b5-4f0d-ac42-dd6560c555a9" + "5a523181-8f46-4034-af4f-09db0d32a278" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012642Z:744723fa-14b5-4f0d-ac42-dd6560c555a9" + "EASTUS2:20250602T214845Z:5a523181-8f46-4034-af4f-09db0d32a278" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B5BACFBE37124C188CAAA4C69FEF018E Ref B: MNZ221060610029 Ref C: 2025-06-02T21:48:45Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:42 GMT" + "Mon, 02 Jun 2025 21:48:45 GMT" + ], + "Content-Length": [ + "1044" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent/Versions/19044.4529.240607\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzEwMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "09ed4208-ca01-42e9-849a-6110af1b43bb" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "de7aa145-be62-472c-897b-1bc3a892d413" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15907,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43907" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "a4378086-4e20-4a95-bdba-8c0eb5a8db02" - ], - "Cache-Control": [ - "no-cache" + "8a6bf1a9-dd04-4a13-bf99-d45b3797ef96" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/303fa536-753a-4780-82b4-64ab00fd3263" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14662" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "baf5513b-0666-49b8-ae52-82709e6573bd" + "4fd5a72f-1699-40c5-befb-b3a71d9ebad4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012714Z:baf5513b-0666-49b8-ae52-82709e6573bd" + "EASTUS:20250602T214845Z:4fd5a72f-1699-40c5-befb-b3a71d9ebad4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 45322AE415C04207809900781D6D4718 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:48:45Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:13 GMT" + "Mon, 02 Jun 2025 21:48:44 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-g2/Versions/19044.4412.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-g2/Versions/19044.4529.240607\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20171116?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzExMTY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-g2/versions/19044.4412.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtZzIvdmVyc2lvbnMvMTkwNDQuNDQxMi4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d1243141-2a27-4ce1-ac95-2ae4b064a57d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "35fcc68d-e7d9-417a-a758-9d7b852b49ed" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171116\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20171116\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12879,Microsoft.Compute/GetVMImageFromLocation30Min;73879" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ae3472db-3584-4961-b6ef-78d248b31c53" - ], - "Cache-Control": [ - "no-cache" + "b80991ba-8c77-4370-afe5-b1e7973bd27f" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e91cb94a-cf28-499d-a36c-6b9d9624fdc8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14875" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "3575c339-ad52-42ec-90e4-15b59a4fc50e" + "d04a816e-56da-4700-be7d-2831426f6e58" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012642Z:3575c339-ad52-42ec-90e4-15b59a4fc50e" + "EASTUS:20250602T214845Z:d04a816e-56da-4700-be7d-2831426f6e58" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9043A4423B724A55801FFF90A89308D3 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:48:45Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:42 GMT" + "Mon, 02 Jun 2025 21:48:44 GMT" + ], + "Content-Length": [ + "1175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-g2/Versions/19044.4412.240510\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20171116?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzExMTY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-g2/versions/19044.4529.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtZzIvdmVyc2lvbnMvMTkwNDQuNDUyOS4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f2a37848-39da-469b-aa5e-29e1899b55d8" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5126a831-db70-4c0c-90ee-0f8cd44f378c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171116\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20171116\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12878,Microsoft.Compute/GetVMImageFromLocation30Min;73878" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2df72e98-fe64-4e90-a599-669ca865a202" - ], - "Cache-Control": [ - "no-cache" + "6bc03587-4f56-4b48-ba93-838abacd3cfb" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7fb1452d-6742-4ce7-a51a-e226bbc872bf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14661" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8b3b6e8c-2374-492d-9943-307e4d046ec0" + "5a46dc0f-77b6-4237-afb1-efb1252ea458" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012714Z:8b3b6e8c-2374-492d-9943-307e4d046ec0" + "EASTUS:20250602T214845Z:5a46dc0f-77b6-4237-afb1-efb1252ea458" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 46A8A566B71B473C91EDF91551C7DD46 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:48:45Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:13 GMT" + "Mon, 02 Jun 2025 21:48:45 GMT" + ], + "Content-Length": [ + "1175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-g2/Versions/19044.4529.240607\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20171217?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzEyMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "58fcf436-feb6-4471-90a8-3cc56afccdc6" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "6d6d5dcb-27eb-4da7-890d-492cd4113f5e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20171217\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15906,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43906" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "34deec3d-db9a-46b9-ad61-303be2464af2" - ], - "Cache-Control": [ - "no-cache" + "86f578ab-7f3f-4685-8751-e99f95c64ad0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7315345d-5d6e-4213-8fdc-114e297ab622" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14874" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "12d4c89b-8c12-4c92-986a-9754964f60be" + "4c92d299-f094-42c9-b338-5f239fe0c0a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012642Z:12d4c89b-8c12-4c92-986a-9754964f60be" + "EASTUS:20250602T214848Z:4c92d299-f094-42c9-b338-5f239fe0c0a4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3BA42D5FF50446B7BAD958D94AAD7249 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:48:45Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:42 GMT" + "Mon, 02 Jun 2025 21:48:48 GMT" + ], + "Content-Length": [ + "1857" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc/Versions/19044.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc/Versions/19044.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc/Versions/19044.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc/Versions/19044.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc/Versions/19044.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc/Versions/19044.5859.250525\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20171217?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzEyMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc/versions/19044.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy92ZXJzaW9ucy8xOTA0NC41MzcxLjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7046e647-7f49-4c41-a3dc-3502d6e2bc1a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3a234bd6-b22f-418d-9ff8-0dba70071358" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20171217\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12877,Microsoft.Compute/GetVMImageFromLocation30Min;73877" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9c096f0b-7bc6-453b-934e-5a741b40ea39" - ], - "Cache-Control": [ - "no-cache" + "fbecfa70-1c12-483f-af21-ace27139be6b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/31232054-cc53-495f-ba4d-81994b8602e5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14660" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c2dc893d-0049-4309-a51d-c06d04271653" + "76eb5010-da11-42bf-9eb4-87e59c938857" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012714Z:c2dc893d-0049-4309-a51d-c06d04271653" + "EASTUS2:20250602T214848Z:76eb5010-da11-42bf-9eb4-87e59c938857" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 91222B7CFD71454F9E9EA55A632548DD Ref B: MNZ221060608025 Ref C: 2025-06-02T21:48:48Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:13 GMT" + "Mon, 02 Jun 2025 21:48:48 GMT" + ], + "Content-Length": [ + "1178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc/Versions/19044.5371.250112\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180220?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODAyMjA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc/versions/19044.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy92ZXJzaW9ucy8xOTA0NC41NDg3LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7dde33cc-f420-48ae-8005-c3ff55c8f245" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b85f2664-5f4d-49e9-9d0e-d4449f2a278b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180220\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12876,Microsoft.Compute/GetVMImageFromLocation30Min;73876" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c70fcbba-6622-4019-88fe-81124e4636d9" - ], - "Cache-Control": [ - "no-cache" + "8df27370-fa94-4195-a557-26a36cdc3bdd" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d1d51d3b-9128-493b-8d16-2626357ba85b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14873" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "41f2906b-028a-462f-afe1-16d7832b14f1" + "b0185559-e012-4c15-9970-da94374e5ab0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012642Z:41f2906b-028a-462f-afe1-16d7832b14f1" + "EASTUS:20250602T214848Z:b0185559-e012-4c15-9970-da94374e5ab0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B7BC60F9FDD49B0B78F76D0C446C37D Ref B: MNZ221060619033 Ref C: 2025-06-02T21:48:48Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:42 GMT" + "Mon, 02 Jun 2025 21:48:48 GMT" + ], + "Content-Length": [ + "1178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc/Versions/19044.5487.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180220?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODAyMjA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc/versions/19044.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy92ZXJzaW9ucy8xOTA0NC41NjA4LjI1MDMwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "83cfc28a-2a70-4f7b-8f58-a65db33957fa" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3e42764e-6ad1-48b5-9e25-d0bbe1ce2dd1" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180220\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12875,Microsoft.Compute/GetVMImageFromLocation30Min;73875" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "173faa43-aa21-4b31-b357-bd4b6ac1daff" - ], - "Cache-Control": [ - "no-cache" + "5a6bcb60-5223-44f0-ab89-30cd837d1028" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0fbd0c66-b946-4ce3-8826-d1cf4de6bb60" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14659" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e7850dd3-a6cf-4691-837a-d75458749849" + "bb0385aa-8c10-49c5-a169-ae5a211fab25" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012714Z:e7850dd3-a6cf-4691-837a-d75458749849" + "EASTUS2:20250602T214849Z:bb0385aa-8c10-49c5-a169-ae5a211fab25" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B3CC4B45B97948A3B7EBF3786552A70E Ref B: MNZ221060608033 Ref C: 2025-06-02T21:48:49Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:13 GMT" + "Mon, 02 Jun 2025 21:48:48 GMT" + ], + "Content-Length": [ + "1178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc/Versions/19044.5608.250305\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODAzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc/versions/19044.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy92ZXJzaW9ucy8xOTA0NC41NzM3LjI1MDQwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "46fe0057-0dfb-4615-8f37-850777f3aea1" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c6344922-ae12-4ac5-a8d6-3738ed6570b5" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12874,Microsoft.Compute/GetVMImageFromLocation30Min;73874" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "47effd27-bc3e-4007-bb53-9e5c2fa2c524" - ], - "Cache-Control": [ - "no-cache" + "fbf07dc0-8a0f-4563-a230-f7a1f699fa96" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/de1ebf71-33e9-4ab3-9133-38fbfcb2389d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14872" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f6a5fc84-d165-4ba8-9852-f37f273be308" + "9fe373a8-c397-4aad-b6cc-6d72b5f74a3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012643Z:f6a5fc84-d165-4ba8-9852-f37f273be308" + "EASTUS:20250602T214849Z:9fe373a8-c397-4aad-b6cc-6d72b5f74a3c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D5961C91DCE147659BBB81C4CA955C9F Ref B: MNZ221060610049 Ref C: 2025-06-02T21:48:49Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:42 GMT" + "Mon, 02 Jun 2025 21:48:48 GMT" + ], + "Content-Length": [ + "1178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc/Versions/19044.5737.250407\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODAzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc/versions/19044.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy92ZXJzaW9ucy8xOTA0NC41ODU0LjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6d48e560-17da-4d50-bb52-8a8e9314d9c5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "fa7438da-9e45-4682-afbf-40b4fad7f14a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12873,Microsoft.Compute/GetVMImageFromLocation30Min;73873" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c2177844-ea88-434f-b820-f89123d880de" - ], - "Cache-Control": [ - "no-cache" + "00c67a22-3d9e-43a8-957b-8a960a73b1ab" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a292c6b8-ae53-45ba-9d40-69516c1a995b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14658" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "102c0332-e910-4648-a59d-b9e1258ab9ac" + "aeb9521b-94dd-4bf0-ae16-a544df84b510" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012714Z:102c0332-e910-4648-a59d-b9e1258ab9ac" + "EASTUS:20250602T214849Z:aeb9521b-94dd-4bf0-ae16-a544df84b510" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 37A59B8217AA45A6862B6E8495EA227A Ref B: MNZ221060608035 Ref C: 2025-06-02T21:48:49Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:13 GMT" + "Mon, 02 Jun 2025 21:48:49 GMT" + ], + "Content-Length": [ + "1097" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc/Versions/19044.5854.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODA0MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc/versions/19044.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy92ZXJzaW9ucy8xOTA0NC41ODU5LjI1MDUyNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ba88cb0f-0707-4330-97e1-b5748e41909f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "938fe9ec-95a4-40d7-b09b-4ed7b0c3b1cc" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12872,Microsoft.Compute/GetVMImageFromLocation30Min;73872" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "8b5bb07d-2b0d-4b12-b524-402db2e644ae" - ], - "Cache-Control": [ - "no-cache" + "d7b112ea-5a4f-4f0f-88a4-11f322a58e05" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/32eb4d7c-cf59-49ef-ba7e-4bac68fdc64d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14871" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8e5427ab-e638-47a7-bcf7-232ec2ea4713" + "a9711812-43ee-4446-9c6e-84076c258187" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012643Z:8e5427ab-e638-47a7-bcf7-232ec2ea4713" + "EASTUS2:20250602T214849Z:a9711812-43ee-4446-9c6e-84076c258187" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5FE2A17FCFD4402EA90782A9253AEDB7 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:48:49Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:42 GMT" + "Mon, 02 Jun 2025 21:48:49 GMT" + ], + "Content-Length": [ + "1097" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc/Versions/19044.5859.250525\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODA0MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3cde2107-4950-487e-a15d-611fec8c1368" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "960bb974-59f7-4e88-b042-43ba862cc1d2" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15905,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43905" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "50736566-8100-46a1-ae4f-4e1ac5c884a1" - ], - "Cache-Control": [ - "no-cache" + "08f3c699-c120-4049-8838-ea1664d2db13" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7859095d-2ca0-4361-bf3d-c58e6f69b72b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14657" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "af37f28a-c60b-40e6-9c2d-d9dfa5b41512" + "fd726fda-4ec8-4c38-858a-f5c48859fff9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012714Z:af37f28a-c60b-40e6-9c2d-d9dfa5b41512" + "EASTUS2:20250602T214849Z:fd726fda-4ec8-4c38-858a-f5c48859fff9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 00B1DE43DB944807A85BD1CA22A4249A Ref B: MNZ221060619031 Ref C: 2025-06-02T21:48:49Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:14 GMT" + "Mon, 02 Jun 2025 21:48:48 GMT" + ], + "Content-Length": [ + "1875" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc-g2/Versions/19044.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc-g2/Versions/19044.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc-g2/Versions/19044.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc-g2/Versions/19044.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc-g2/Versions/19044.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc-g2/Versions/19044.5859.250525\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc-g2/versions/19044.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy1nMi92ZXJzaW9ucy8xOTA0NC41MzcxLjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bf00df6d-fe93-445b-a2e2-3b0e03b59053" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "504b17ec-9e1f-4c4e-8c00-02e6a7795a18" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12871,Microsoft.Compute/GetVMImageFromLocation30Min;73871" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "578b6046-7758-4b37-a34c-8ff1252e95b7" - ], - "Cache-Control": [ - "no-cache" + "c29d47cb-f6ea-427f-b4cd-053ce8a2bce0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6e999940-0059-4388-88cf-76c19711cafb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14870" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "58f26318-dd98-4995-be81-60de93513c0c" + "677bccd7-4b67-476e-982c-84b0f6a3e8c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012643Z:58f26318-dd98-4995-be81-60de93513c0c" + "EASTUS:20250602T214849Z:677bccd7-4b67-476e-982c-84b0f6a3e8c0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D5A4FA2EBE954FA99AD3F542818EE4A5 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:48:49Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:42 GMT" + "Mon, 02 Jun 2025 21:48:49 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc-g2/Versions/19044.5371.250112\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc-g2/versions/19044.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy1nMi92ZXJzaW9ucy8xOTA0NC41NDg3LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8b6df650-1820-44ec-90d4-bbaee5528629" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c8319a38-0ea8-4cd5-a4db-e22dc1be3165" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12870,Microsoft.Compute/GetVMImageFromLocation30Min;73870" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "0dd4669b-3de7-4648-9249-4a9d461b3928" - ], - "Cache-Control": [ - "no-cache" + "f8214486-efce-4390-aba8-719eb0a0960d" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/865ff8f2-8a9f-44df-8e62-def8f625e70a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14656" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c833fb13-9d8d-42ba-9b09-38b99d3fa3aa" + "a8e3ad02-1b69-459a-be96-d938693a8320" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012714Z:c833fb13-9d8d-42ba-9b09-38b99d3fa3aa" + "EASTUS2:20250602T214849Z:a8e3ad02-1b69-459a-be96-d938693a8320" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 61EDAF9E0D324DD19741FF65E561C923 Ref B: MNZ221060608045 Ref C: 2025-06-02T21:48:49Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:14 GMT" + "Mon, 02 Jun 2025 21:48:49 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc-g2/Versions/19044.5487.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODA2MTM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc-g2/versions/19044.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy1nMi92ZXJzaW9ucy8xOTA0NC41NjA4LjI1MDMwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "837239f2-92d0-4904-a683-ac3cefacfc59" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "bb71a15c-d83a-49e1-87d7-382340411f1d" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12869,Microsoft.Compute/GetVMImageFromLocation30Min;73869" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "85d08423-691c-4d6b-a735-b99f70071fd8" - ], - "Cache-Control": [ - "no-cache" + "8659ee38-7c10-4237-8028-6ff35da8d890" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8216a838-1b7b-4973-b72c-00c2f0968c40" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "738d26df-cd2d-4c1e-8b89-8bb14c50c2a6" + "6e48604a-685b-4aac-8093-786e8a4824ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012643Z:738d26df-cd2d-4c1e-8b89-8bb14c50c2a6" + "EASTUS:20250602T214850Z:6e48604a-685b-4aac-8093-786e8a4824ac" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 01BD670ACEC7468BB365205ADF1CB606 Ref B: MNZ221060608019 Ref C: 2025-06-02T21:48:49Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:43 GMT" + "Mon, 02 Jun 2025 21:48:49 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc-g2/Versions/19044.5608.250305\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODA2MTM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc-g2/versions/19044.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy1nMi92ZXJzaW9ucy8xOTA0NC41NzM3LjI1MDQwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "279749b6-e5e1-411d-a33d-942b6ee70104" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "4fc3c8eb-e791-46b1-9593-55f2551b48a8" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/2016.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "411" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12868,Microsoft.Compute/GetVMImageFromLocation30Min;73868" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "843c6519-4232-483c-b5c1-7b5d8670d686" - ], - "Cache-Control": [ - "no-cache" + "94908d7d-b056-40de-ae57-6a0c92daabef" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7dd1fe37-1ff4-4dd4-afb5-6ec5a3b198d5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14655" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "2a165daa-7125-43b6-a704-1d1c10a7b449" + "bfa5d874-126a-45b6-a359-6d56f292328c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012714Z:2a165daa-7125-43b6-a704-1d1c10a7b449" + "EASTUS:20250602T214850Z:bfa5d874-126a-45b6-a359-6d56f292328c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4F72F13CDA5745909C89E175D6793820 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:48:50Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:14 GMT" + "Mon, 02 Jun 2025 21:48:49 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc-g2/Versions/19044.5737.250407\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc-g2/versions/19044.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy1nMi92ZXJzaW9ucy8xOTA0NC41ODU0LjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b6f05087-e6c7-45d4-a10e-e1a0045065bb" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b80230f3-976f-4528-bfa7-08d378864a0f" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170411\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170411\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20171216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4788" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12867,Microsoft.Compute/GetVMImageFromLocation30Min;73867" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "a2d6e2d6-c574-411d-b0ac-692d046b1b4e" - ], - "Cache-Control": [ - "no-cache" + "df5c8bfb-777f-4a19-90a1-a356e63ae72f" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dbb9f74d-5591-471a-93db-76f9fda10219" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14868" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d3f4e83c-15e7-4142-bcc2-5eaa19d9f4fa" + "f409372a-cfd1-498f-a30d-86721e1c79a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012643Z:d3f4e83c-15e7-4142-bcc2-5eaa19d9f4fa" + "EASTUS:20250602T214850Z:f409372a-cfd1-498f-a30d-86721e1c79a9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B560CD57ADE44AB94C22B30A3E6EB38 Ref B: MNZ221060608047 Ref C: 2025-06-02T21:48:50Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:43 GMT" + "Mon, 02 Jun 2025 21:48:49 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc-g2/Versions/19044.5854.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-ent-ltsc-g2/versions/19044.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnQtbHRzYy1nMi92ZXJzaW9ucy8xOTA0NC41ODU5LjI1MDUyNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0171513e-aae3-451c-b949-5732073ea4c1" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "6e01544a-809c-46e3-88b2-cd1d51f23bae" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170411\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170411\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20171216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4788" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12866,Microsoft.Compute/GetVMImageFromLocation30Min;73866" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9efa9132-3d6b-4a70-8df0-ac3ee8d75505" - ], - "Cache-Control": [ - "no-cache" + "63919b25-1751-4266-98ea-1380c6a4e540" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9bd5c7e0-7706-4c83-8c81-049e11909f91" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14654" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f64823f2-39ba-46a6-a510-d7ddfece5baa" + "9831e568-77c3-4369-84ce-1a5031bb7d28" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012715Z:f64823f2-39ba-46a6-a510-d7ddfece5baa" + "EASTUS:20250602T214850Z:9831e568-77c3-4369-84ce-1a5031bb7d28" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 779AC92224024454BEEE2552E874F17D Ref B: MNZ221060609035 Ref C: 2025-06-02T21:48:50Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:14 GMT" + "Mon, 02 Jun 2025 21:48:50 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-ent-ltsc-g2/Versions/19044.5859.250525\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170406?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA0MDY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3ba082a6-8cd8-455c-a8c0-ed9aa635cb80" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "6fcbf65b-6564-4103-9e97-083eaec3dbb5" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170406\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15904,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43904" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7097f27e-bdb3-4359-8ed1-a1f62e595e66" - ], - "Cache-Control": [ - "no-cache" + "e90e6fcc-2480-4aff-89d3-e2071bc84aa9" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fc353275-e75a-4bf7-8589-aa8359a3e865" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14867" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d05cfa95-6b50-4011-a3c9-12cd20703288" + "b4c31fae-bdd8-4319-8fa0-4c63b37251b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012643Z:d05cfa95-6b50-4011-a3c9-12cd20703288" + "EASTUS:20250602T214850Z:b4c31fae-bdd8-4319-8fa0-4c63b37251b8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C9718E33ECBE4EF8891C616C9EF08904 Ref B: MNZ221060619029 Ref C: 2025-06-02T21:48:50Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:43 GMT" + "Mon, 02 Jun 2025 21:48:50 GMT" + ], + "Content-Length": [ + "918" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2130.221006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn/Versions/19044.2130.221006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn/Versions/19044.4412.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn/Versions/19044.4529.240607\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170406?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA0MDY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn/versions/19044.2130.221006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuL3ZlcnNpb25zLzE5MDQ0LjIxMzAuMjIxMDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "cce271af-5af3-47e5-867b-6280a9d68123" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3351aace-c1db-4584-b461-31670ed469b5" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170406\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12865,Microsoft.Compute/GetVMImageFromLocation30Min;73865" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "dedac8bd-f84d-4359-b556-3cab829651ac" - ], - "Cache-Control": [ - "no-cache" + "c584fafb-8519-4811-95e0-329e96917815" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6e3dd344-a032-419d-8480-5af80a063cd6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14653" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "42dd9f0d-ce21-45e4-a718-1ad1a3c331b7" + "f4844852-8fdd-4dc9-96fa-37e4cc41516a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012715Z:42dd9f0d-ce21-45e4-a718-1ad1a3c331b7" + "EASTUS2:20250602T214850Z:f4844852-8fdd-4dc9-96fa-37e4cc41516a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0FEA578301584F788060BE5CFE462FD5 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:48:50Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:14 GMT" + "Mon, 02 Jun 2025 21:48:50 GMT" + ], + "Content-Length": [ + "1045" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2130.221006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn/Versions/19044.2130.221006\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170411?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA0MTE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn/versions/19044.4412.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuL3ZlcnNpb25zLzE5MDQ0LjQ0MTIuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "725aef29-1526-4636-bdb1-34ea340b6775" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "87f1e539-27c1-4614-84d4-05594754f50e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170411\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170411\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12864,Microsoft.Compute/GetVMImageFromLocation30Min;73864" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "0f10913d-0b11-4155-9a95-4e248757cc93" + "2c53db92-9a07-43f0-9296-9bf9afd566a1" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a7a6cc18-37b2-4e6c-95fa-7609910ed66c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14866" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7cffcac4-e726-45ad-a733-9b18f1a302db" + "4a8e9ddd-619d-4bbf-a789-bd983c47e369" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012643Z:7cffcac4-e726-45ad-a733-9b18f1a302db" + "EASTUS2:20250602T214850Z:4a8e9ddd-619d-4bbf-a789-bd983c47e369" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A0FBCADFE821444EBD51A966E470B944 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:48:50Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:43 GMT" + "Mon, 02 Jun 2025 21:48:50 GMT" + ], + "Content-Length": [ + "1045" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn/Versions/19044.4412.240510\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170411?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA0MTE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn/versions/19044.4529.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuL3ZlcnNpb25zLzE5MDQ0LjQ1MjkuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5458eeac-2a52-4563-b1a3-a47f82b8017f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3b174852-8340-45ab-b4f0-103cffd5d350" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170411\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170411\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12863,Microsoft.Compute/GetVMImageFromLocation30Min;73863" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9a5142a1-8d87-4329-9a20-0191d87ee886" - ], - "Cache-Control": [ - "no-cache" + "1c2957df-cc92-470f-909a-5b2884cc7ddb" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7c944731-c166-434f-bea3-640e1ae24ace" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14652" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8287af2d-7fa1-4e69-a22f-74afeb99520f" + "d36867d8-5c93-43ee-9e44-edc861e2ff3f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012715Z:8287af2d-7fa1-4e69-a22f-74afeb99520f" + "EASTUS:20250602T214850Z:d36867d8-5c93-43ee-9e44-edc861e2ff3f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 19D61084FEC5455E981888F83CF371DA Ref B: MNZ221060610053 Ref C: 2025-06-02T21:48:50Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:14 GMT" + "Mon, 02 Jun 2025 21:48:50 GMT" + ], + "Content-Length": [ + "1045" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn/Versions/19044.4529.240607\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "216b8ae6-72fd-4b2d-96f9-4dc16c0b1b31" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3c557138-8653-4aeb-b76a-87545355397a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15903,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43903" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "f7b4c7fa-3109-48d4-aa43-7acaadcbb8b6" + "b6536873-7230-4559-8940-293c66aac7f9" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ffd65dff-e062-468a-ae01-a2b751757e9d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14865" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "378ec94e-6281-4342-9518-27db7abb0680" + "02a53214-b9c4-487f-9ff1-e348866f6fe1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012644Z:378ec94e-6281-4342-9518-27db7abb0680" + "EASTUS:20250602T214851Z:02a53214-b9c4-487f-9ff1-e348866f6fe1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D3181D7CE55849EE8B2111F649C6FFB5 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:48:50Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:43 GMT" + "Mon, 02 Jun 2025 21:48:50 GMT" + ], + "Content-Length": [ + "619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-g2/Versions/19044.4412.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-g2/Versions/19044.4529.240607\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-g2/versions/19044.4412.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWcyL3ZlcnNpb25zLzE5MDQ0LjQ0MTIuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f11b6ef3-87df-4bba-b924-6c1cce55f6df" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f3687a34-a162-4dd5-80e8-73c21e54fb4b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12862,Microsoft.Compute/GetVMImageFromLocation30Min;73862" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9899884c-4cf2-4758-831d-89d2665156c0" - ], - "Cache-Control": [ - "no-cache" + "ec54c71e-ad99-42a9-ae02-df1201e863f5" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4800d908-8f3a-4151-b5c0-13822c141a57" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14651" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "210471fa-9bcb-4cd9-a58a-b89ff4a70191" + "39be082b-f5eb-44df-a865-0565440f3ca4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012715Z:210471fa-9bcb-4cd9-a58a-b89ff4a70191" + "EASTUS2:20250602T214851Z:39be082b-f5eb-44df-a865-0565440f3ca4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8A5053DC6C5E4898B29BB380A72ABA79 Ref B: MNZ221060608033 Ref C: 2025-06-02T21:48:51Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:14 GMT" + "Mon, 02 Jun 2025 21:48:50 GMT" + ], + "Content-Length": [ + "1176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-g2/Versions/19044.4412.240510\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170630?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA2MzA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-g2/versions/19044.4529.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWcyL3ZlcnNpb25zLzE5MDQ0LjQ1MjkuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5020b70d-7a7c-4421-843a-a55d16649d75" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b7b8310f-eb3c-45fe-ae7f-71b357a5b3ed" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170630\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12861,Microsoft.Compute/GetVMImageFromLocation30Min;73861" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "771faf74-296a-425a-a885-178f77ac14bd" + "bc6a5842-cd2d-45df-a481-5549f81ed66d" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7211d3d9-6717-4bc3-8619-190d216a8158" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14864" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "37059b1e-b8e3-45d4-a054-46f371aa5f09" + "084c3d97-c9a2-4485-8634-97e402dfaec1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012644Z:37059b1e-b8e3-45d4-a054-46f371aa5f09" + "EASTUS2:20250602T214851Z:084c3d97-c9a2-4485-8634-97e402dfaec1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9E0E5443E36D42AD8AA26114316F513A Ref B: MNZ221060619009 Ref C: 2025-06-02T21:48:51Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:43 GMT" + "Mon, 02 Jun 2025 21:48:51 GMT" + ], + "Content-Length": [ + "1176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-g2/Versions/19044.4529.240607\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170630?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA2MzA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4957de79-25a1-4aef-8fbf-125fd57ce945" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "47afda10-7ba2-4d79-9885-d40c74fedd19" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170630\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15902,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43902" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2b31fbea-0f1c-47d2-931d-6edad375cf2b" - ], - "Cache-Control": [ - "no-cache" + "a6187223-f5f2-4421-b9cb-c42b1163205d" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cf2ef1e5-0e6e-49aa-bf63-2e7199993a2c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14650" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "1a046ecf-598d-411a-bc30-55bc3b088292" + "2a4a8d1d-e020-4944-bcce-a6a35010f49a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012715Z:1a046ecf-598d-411a-bc30-55bc3b088292" + "EASTUS:20250602T214851Z:2a4a8d1d-e020-4944-bcce-a6a35010f49a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 04ECB23C173541EB8D3A2017F25CBE12 Ref B: MNZ221060609007 Ref C: 2025-06-02T21:48:51Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:14 GMT" + "Mon, 02 Jun 2025 21:48:51 GMT" + ], + "Content-Length": [ + "1863" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc/Versions/19044.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc/Versions/19044.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc/Versions/19044.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc/Versions/19044.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc/Versions/19044.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc/Versions/19044.5859.250525\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA3MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc/versions/19044.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MvdmVyc2lvbnMvMTkwNDQuNTM3MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "01fab5ad-18f1-440c-8cac-aa42a83d2dc3" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1a7fa8a0-5d70-4006-a738-0f906122c91e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12860,Microsoft.Compute/GetVMImageFromLocation30Min;73860" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7595a954-b2b7-4a76-9e90-d4e0c8be43ad" + "b316bf3b-bb1b-41eb-8477-005ebc80f6ad" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cdee4eaf-051f-4833-a822-e5ae9ae433fc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14863" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c5d4abc7-39a8-49de-b02e-b0396cd8fb2c" + "c4a3f282-bf94-48c7-bb71-5d29d6acb26a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012644Z:c5d4abc7-39a8-49de-b02e-b0396cd8fb2c" + "EASTUS:20250602T214851Z:c4a3f282-bf94-48c7-bb71-5d29d6acb26a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1D017D14B7984721BDA9CF26AF3E7A9D Ref B: MNZ221060619053 Ref C: 2025-06-02T21:48:51Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:43 GMT" + "Mon, 02 Jun 2025 21:48:50 GMT" + ], + "Content-Length": [ + "1179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc/Versions/19044.5371.250112\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA3MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc/versions/19044.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MvdmVyc2lvbnMvMTkwNDQuNTQ4Ny4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b3926296-dbd6-4fe1-9c9e-88d45e331008" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8ef184ec-b6d7-4241-9400-e8638e012592" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12859,Microsoft.Compute/GetVMImageFromLocation30Min;73859" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "0f5acde7-c0fd-4cde-8ed8-c7314b130e07" - ], - "Cache-Control": [ - "no-cache" + "f4619db3-d83c-4972-9a6d-8a8df77c27d6" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5416212c-75b6-4af0-8854-9b2ecaf9c7f1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14649" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "348c239e-ebd4-4058-88ec-760483292147" + "1a974821-1f55-49f0-be4b-1ba1643ca5e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012715Z:348c239e-ebd4-4058-88ec-760483292147" + "EASTUS2:20250602T214851Z:1a974821-1f55-49f0-be4b-1ba1643ca5e1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C27B996399048C187B004DA7DBAF3F3 Ref B: MNZ221060608031 Ref C: 2025-06-02T21:48:51Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:14 GMT" + "Mon, 02 Jun 2025 21:48:50 GMT" + ], + "Content-Length": [ + "1179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc/Versions/19044.5487.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170822?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA4MjI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc/versions/19044.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MvdmVyc2lvbnMvMTkwNDQuNTYwOC4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "983dac32-176f-4ff1-9ed0-ffb3bbad370c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8f9c62ac-40d7-4704-aab5-668dee307414" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170822\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12858,Microsoft.Compute/GetVMImageFromLocation30Min;73858" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "d2545e08-ed88-411d-adbb-cb141648801b" + "9b92e7df-f514-45b6-8d54-5121355f2d1a" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/054d264c-4d51-48b4-80ba-cc77415b1b25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e5c39bc7-5ebc-4c73-b365-044e5e1c7cb8" + "9cfdc1c0-7685-47c9-a2b9-a605589215f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012644Z:e5c39bc7-5ebc-4c73-b365-044e5e1c7cb8" + "EASTUS:20250602T214851Z:9cfdc1c0-7685-47c9-a2b9-a605589215f5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A7262307632C4A41A0453211B60CCEDF Ref B: MNZ221060609049 Ref C: 2025-06-02T21:48:51Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:44 GMT" + "Mon, 02 Jun 2025 21:48:50 GMT" + ], + "Content-Length": [ + "1179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc/Versions/19044.5608.250305\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170822?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA4MjI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc/versions/19044.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MvdmVyc2lvbnMvMTkwNDQuNTczNy4yNTA0MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e3c3ed51-f766-4706-9d70-05276e695300" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8659a737-9b2c-40a8-a8ff-ca83c93ecaf7" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170822\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12857,Microsoft.Compute/GetVMImageFromLocation30Min;73857" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "eaf47afc-f3d6-4551-9f33-eb92ff246df7" - ], - "Cache-Control": [ - "no-cache" + "99d00ae1-c6bd-4840-99ca-06e3c0340f0b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1bd1e452-91a6-4b01-a05a-6639ea182b16" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14648" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "52015a2e-9328-4698-b9c9-7d70ccbbd974" + "f491eea8-a453-4d79-a81c-0e321622a014" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012715Z:52015a2e-9328-4698-b9c9-7d70ccbbd974" + "EASTUS:20250602T214851Z:f491eea8-a453-4d79-a81c-0e321622a014" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F444B6A8FC654DF78FB7422BD78B3DBF Ref B: MNZ221060619051 Ref C: 2025-06-02T21:48:51Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:15 GMT" + "Mon, 02 Jun 2025 21:48:51 GMT" + ], + "Content-Length": [ + "1179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc/Versions/19044.5737.250407\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA5MTg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc/versions/19044.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MvdmVyc2lvbnMvMTkwNDQuNTg1NC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f0d3c64e-c3af-40f3-ab0c-6cd0dea77809" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "588034a6-e1f3-484a-8147-5526d3a05b8b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12856,Microsoft.Compute/GetVMImageFromLocation30Min;73856" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "3de5d1ec-d02a-4624-9dbd-460ef9a02a92" + "6bf78de0-430b-44fe-b907-3c85bb2fba2c" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6b924021-63a7-41a1-8632-d8b96e8ee69e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a78b1623-fef1-499d-a844-e601f5140e54" + "7e14e1e2-fc24-425b-86cd-3340541eeaee" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012644Z:a78b1623-fef1-499d-a844-e601f5140e54" + "EASTUS:20250602T214852Z:7e14e1e2-fc24-425b-86cd-3340541eeaee" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 052B3536367D4CF999F1602CF60354E9 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:48:52Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:44 GMT" + "Mon, 02 Jun 2025 21:48:51 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc/Versions/19044.5854.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzA5MTg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc/versions/19044.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MvdmVyc2lvbnMvMTkwNDQuNTg1OS4yNTA1MjU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "153ef352-86a0-4dc4-9775-e5a3d65b8d7e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5592c2b5-ada4-42a0-a095-880cf815a0f7" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12855,Microsoft.Compute/GetVMImageFromLocation30Min;73855" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "976ab596-15b3-4a8e-b5ba-fdd7ae062704" - ], - "Cache-Control": [ - "no-cache" + "6beb8556-9987-4dbc-a81d-a9ee90da58c8" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/717d2dc2-35eb-4e03-a6f8-5c40709e9a59" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14647" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "47645d02-853b-449d-af46-d9b9351d57c9" + "548bb1d9-7030-4a2d-b724-125e85fd1952" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012715Z:47645d02-853b-449d-af46-d9b9351d57c9" + "EASTUS2:20250602T214852Z:548bb1d9-7030-4a2d-b724-125e85fd1952" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 369F037D5A224625BD1B2F60049399D0 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:48:52Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:15 GMT" + "Mon, 02 Jun 2025 21:48:51 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc/Versions/19044.5859.250525\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzEwMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f19b7918-8eec-4c1c-ac30-28c07f3eeeef" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c978f702-ab9d-4e3a-bf5a-d20998eb4de6" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15901,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43901" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "d176e827-23e2-456e-9276-303e086806d9" + "8bc7f227-30da-465d-bce1-74c98895bc2d" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9779a33f-eabf-4689-89b6-dc748bbe889b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14860" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e50b32f5-8354-42ab-aadc-323a7bfb3480" + "34c6a082-f947-4df2-aa60-e71c4bdfcf7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012644Z:e50b32f5-8354-42ab-aadc-323a7bfb3480" + "EASTUS2:20250602T214852Z:34c6a082-f947-4df2-aa60-e71c4bdfcf7f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B90CE845D60442068CC61DFF33DE9591 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:48:52Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:44 GMT" + "Mon, 02 Jun 2025 21:48:52 GMT" + ], + "Content-Length": [ + "1881" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc-g2/Versions/19044.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc-g2/Versions/19044.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc-g2/Versions/19044.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc-g2/Versions/19044.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc-g2/Versions/19044.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc-g2/Versions/19044.5859.250525\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzEwMTc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc-g2/versions/19044.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MtZzIvdmVyc2lvbnMvMTkwNDQuNTM3MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5a748bfc-13b7-441e-afc6-bca49422539b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c933c71f-f8cc-494b-a1d0-0e5d9bdc1e7f" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12854,Microsoft.Compute/GetVMImageFromLocation30Min;73854" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "0a254eba-1dd8-43cd-9f2a-a31ff257917e" - ], - "Cache-Control": [ - "no-cache" + "de7fd3ad-0ef8-4d22-8a88-d605e2c40630" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2d09ce8a-53df-4f4c-b210-3877ffc74561" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14646" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "fbb3835c-d8d9-4640-abdd-c80632521480" + "1ced316b-9aec-4283-9937-57673b1a1300" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012716Z:fbb3835c-d8d9-4640-abdd-c80632521480" + "EASTUS:20250602T214852Z:1ced316b-9aec-4283-9937-57673b1a1300" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1BD9E328CD824F5189569FE6BB37F049 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:48:52Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:15 GMT" + "Mon, 02 Jun 2025 21:48:52 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc-g2/Versions/19044.5371.250112\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzExMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc-g2/versions/19044.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MtZzIvdmVyc2lvbnMvMTkwNDQuNTQ4Ny4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "cccbea0a-0934-4736-9332-2e16ba9ef605" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "47c69729-8d56-41c8-acbd-8aaefc94b0dd" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12853,Microsoft.Compute/GetVMImageFromLocation30Min;73853" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "63b2a689-3089-43d6-9272-2dc43da8e550" + "09ad48a5-511b-473c-b064-2e6ba9b3eacc" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7c57dd96-5d49-4a0a-8444-ebe75d40bbd5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14859" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "387c94f9-2f74-40d3-bc3a-fcd68d07e966" + "5215f987-f387-4710-b14d-82747d886571" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012645Z:387c94f9-2f74-40d3-bc3a-fcd68d07e966" + "EASTUS2:20250602T214852Z:5215f987-f387-4710-b14d-82747d886571" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 28B71B4C19854641B79B568000EE1695 Ref B: MNZ221060610039 Ref C: 2025-06-02T21:48:52Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:44 GMT" + "Mon, 02 Jun 2025 21:48:52 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc-g2/Versions/19044.5487.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzExMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc-g2/versions/19044.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MtZzIvdmVyc2lvbnMvMTkwNDQuNTYwOC4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bb75fbe2-c055-4398-81ba-21facb79299f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "d8d34138-2918-4ed9-b43b-a29efd0c356e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12852,Microsoft.Compute/GetVMImageFromLocation30Min;73852" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "1f843332-a5c1-4206-9f6d-49af5c5ce6a9" - ], - "Cache-Control": [ - "no-cache" + "f41115b4-4674-40b3-a12a-a9335fe57df6" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d19a3e81-4563-4dc6-b474-85c5e94bcc25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14645" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "4e815956-4d02-4299-be5e-d7913b5f216c" + "cced6afc-e825-4d8d-b200-c82bf79835e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012716Z:4e815956-4d02-4299-be5e-d7913b5f216c" + "EASTUS2:20250602T214852Z:cced6afc-e825-4d8d-b200-c82bf79835e2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0E4A6A1348D5421CAA20135272BADF3D Ref B: MNZ221060609021 Ref C: 2025-06-02T21:48:52Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:15 GMT" + "Mon, 02 Jun 2025 21:48:51 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc-g2/Versions/19044.5608.250305\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20171216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzEyMTY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc-g2/versions/19044.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MtZzIvdmVyc2lvbnMvMTkwNDQuNTczNy4yNTA0MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9e0e3f64-df72-41dd-af1b-391e4201207e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "bf37e588-4947-47e9-b31d-e45beb7712bd" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20171216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12851,Microsoft.Compute/GetVMImageFromLocation30Min;73851" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "3bdd2ddf-0bfe-486d-8774-494a7080a6f0" + "44fee75b-ea9c-427e-9a39-0ad27e92610f" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8d8d15dc-5515-41a3-8cec-52908aa84980" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14858" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "5c555db4-b096-40a6-b599-0fabec0633fc" + "8380a8d5-a442-4520-9536-9059150a95d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012645Z:5c555db4-b096-40a6-b599-0fabec0633fc" + "EASTUS:20250602T214852Z:8380a8d5-a442-4520-9536-9059150a95d4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 258B785238A74BA6A70EB74F6DBF61A1 Ref B: MNZ221060618035 Ref C: 2025-06-02T21:48:52Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:44 GMT" + "Mon, 02 Jun 2025 21:48:51 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc-g2/Versions/19044.5737.250407\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20171216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxNzEyMTY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc-g2/versions/19044.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MtZzIvdmVyc2lvbnMvMTkwNDQuNTg1NC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d9f403f8-30b4-4193-a854-4c3b17cb112c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "269f2079-0399-43d5-9e2b-9bc7c6b53cf4" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20171216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12850,Microsoft.Compute/GetVMImageFromLocation30Min;73850" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "56e0a54d-6196-492f-b23d-282d189d2cd3" - ], - "Cache-Control": [ - "no-cache" + "84bf57d2-590d-411f-8d9f-54b05d1e2cda" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f24903a0-4516-476c-81be-7657d69e1969" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14644" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "7d432c39-4837-4fb4-9088-624a1d8add36" + "1a726d6d-7359-459d-8a76-f944eed33d1c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012716Z:7d432c39-4837-4fb4-9088-624a1d8add36" + "EASTUS:20250602T214852Z:1a726d6d-7359-459d-8a76-f944eed33d1c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CD832641CA604F60BD57E0C53BE15DAD Ref B: MNZ221060610031 Ref C: 2025-06-02T21:48:52Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:15 GMT" + "Mon, 02 Jun 2025 21:48:52 GMT" + ], + "Content-Length": [ + "1235" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc-g2/Versions/19044.5854.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODAyMTY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-entn-ltsc-g2/versions/19044.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1lbnRuLWx0c2MtZzIvdmVyc2lvbnMvMTkwNDQuNTg1OS4yNTA1MjU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e56c2592-ad0a-4952-a30c-5b0e5ea8c51f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f1569325-1a4b-474f-9b9c-16a8c2f211a8" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12849,Microsoft.Compute/GetVMImageFromLocation30Min;73849" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "d4ffe0a8-18dc-435e-ade1-647bdd8e828a" + "2b5238a3-8a34-4873-879f-091da1703ca6" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e9988f02-1fe4-4217-b45a-4b905832bc9d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b93a3613-25b3-4dcb-89e8-555a096f0df1" + "68992bd7-8800-4ec0-b455-c27df767bb54" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012645Z:b93a3613-25b3-4dcb-89e8-555a096f0df1" + "EASTUS2:20250602T214853Z:68992bd7-8800-4ec0-b455-c27df767bb54" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 064095E68A2A475683487656B9C15DD5 Ref B: MNZ221060609021 Ref C: 2025-06-02T21:48:53Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:44 GMT" + "Mon, 02 Jun 2025 21:48:52 GMT" + ], + "Content-Length": [ + "1235" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-entn-ltsc-g2/Versions/19044.5859.250525\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODAyMTY/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1f76778a-fbe7-43d3-8960-b0e96b36f7b5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c39a80c0-51b8-4933-bf32-5fd70aa4940a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15900,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43900" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "41609638-09de-4ca2-8f60-9186fb800470" - ], - "Cache-Control": [ - "no-cache" + "3430a280-e326-428e-a1fe-350f6474754e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/908f1231-3040-4348-ae6d-0f5dcb3f2564" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14643" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d6e8c1f9-bf86-4931-b443-18ee75d8f9e5" + "644187bb-8e38-4a3b-aa4c-fc012ce944fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012716Z:d6e8c1f9-bf86-4931-b443-18ee75d8f9e5" + "EASTUS:20250602T214853Z:644187bb-8e38-4a3b-aa4c-fc012ce944fc" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2BCB71D3A8A84B398BE46562AEBBDFA9 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:48:53Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:15 GMT" + "Mon, 02 Jun 2025 21:48:52 GMT" + ], + "Content-Length": [ + "915" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2130.221006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro/Versions/19044.2130.221006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230609\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro/Versions/19044.3086.230609\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro/Versions/19044.3086.230621\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODAzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro/versions/19044.2130.221006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8vdmVyc2lvbnMvMTkwNDQuMjEzMC4yMjEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "97ac8c67-084a-427f-841a-582a3cd4627d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "95af5ee3-720e-4227-a152-06ef027f1153" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12848,Microsoft.Compute/GetVMImageFromLocation30Min;73848" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "17cc33c7-bcfc-42b7-b5b3-d44caf1707a7" + "82a5053d-f925-48c0-8f3a-3d5b6a754da4" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6cbcd031-a9e3-4e51-a716-9ff0a2feb950" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "839eb47f-7c7e-4a35-8ac1-3fd7601c67bc" + "6032fb18-3ab5-4dab-b99e-384dc5a45cf2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012645Z:839eb47f-7c7e-4a35-8ac1-3fd7601c67bc" + "EASTUS2:20250602T214853Z:6032fb18-3ab5-4dab-b99e-384dc5a45cf2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D901ABE934644872B92A9C941C83DAF5 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:48:53Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:45 GMT" + "Mon, 02 Jun 2025 21:48:52 GMT" + ], + "Content-Length": [ + "1044" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2130.221006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro/Versions/19044.2130.221006\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODAzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro/versions/19044.3086.230609?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8vdmVyc2lvbnMvMTkwNDQuMzA4Ni4yMzA2MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c414140e-e6b8-4bd0-bcc7-7e6ce0716d92" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "68201f9b-4f84-46c0-b191-9f1c07829b56" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12847,Microsoft.Compute/GetVMImageFromLocation30Min;73847" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ba195bd4-dad0-4050-a531-6c8131e70e81" - ], - "Cache-Control": [ - "no-cache" + "9e4467a8-9573-4553-90f0-238edfb9fa08" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0926d127-3cf8-422f-8c65-e021b87ffb45" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14642" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8414c752-4e5d-4e91-b2de-924301bd1c3b" + "35aa4b0f-9058-4dbd-a66c-02b20ae8ae6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012716Z:8414c752-4e5d-4e91-b2de-924301bd1c3b" + "EASTUS2:20250602T214853Z:35aa4b0f-9058-4dbd-a66c-02b20ae8ae6a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 86C0F70F1487420C8C1DF4239E71373A Ref B: MNZ221060608033 Ref C: 2025-06-02T21:48:53Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:15 GMT" + "Mon, 02 Jun 2025 21:48:52 GMT" + ], + "Content-Length": [ + "1044" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230609\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro/Versions/19044.3086.230609\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODA0MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro/versions/19044.3086.230621?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8vdmVyc2lvbnMvMTkwNDQuMzA4Ni4yMzA2MjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a3deed0d-dc94-4088-ba8b-f33d238867b9" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "85a867ca-175f-4f40-8a0b-cc51f8e1eb13" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12846,Microsoft.Compute/GetVMImageFromLocation30Min;73846" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "e0d1b5a4-4ff0-474d-b90b-85475a3e67be" + "21ccd0aa-caff-4f88-8622-33b940476a19" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/05e55238-f8b0-4ee9-b27a-81810e3bbab2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d3d7cfd9-75b0-4c40-bcb2-277827010e99" + "4ba731a7-64ad-41f3-98ef-97842afdeb3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012645Z:d3d7cfd9-75b0-4c40-bcb2-277827010e99" + "EASTUS:20250602T214853Z:4ba731a7-64ad-41f3-98ef-97842afdeb3c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9224418488444BEAA3B904635CF5BF8F Ref B: MNZ221060608023 Ref C: 2025-06-02T21:48:53Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:45 GMT" + "Mon, 02 Jun 2025 21:48:53 GMT" + ], + "Content-Length": [ + "1044" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro/Versions/19044.3086.230621\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODA0MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8tZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "00ad8ed0-84c8-4dc7-99ae-f29b435f97e1" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b013598d-34b4-4615-a62c-722f84b57e08" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15899,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43899" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9c6961e5-af5b-4a40-9ef7-01acea8c7483" - ], - "Cache-Control": [ - "no-cache" + "838d9ef5-e71e-4133-ad3b-3bffad54f6c0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5da9f6cc-a959-4d8d-8eba-0d6ad6ac994b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14641" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8a83491f-b8b6-49e5-900b-f443844775bb" + "1916ae4f-5bf8-4572-bd2f-38ad45ed6281" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012716Z:8a83491f-b8b6-49e5-900b-f443844775bb" + "EASTUS:20250602T214853Z:1916ae4f-5bf8-4572-bd2f-38ad45ed6281" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A435212BCF40484CA03D4BC00386CFC1 Ref B: MNZ221060609053 Ref C: 2025-06-02T21:48:53Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:15 GMT" + "Mon, 02 Jun 2025 21:48:53 GMT" + ], + "Content-Length": [ + "924" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2130.221006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-g2/Versions/19044.2130.221006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230609\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-g2/Versions/19044.3086.230609\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-g2/Versions/19044.3086.230621\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro-g2/versions/19044.2130.221006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8tZzIvdmVyc2lvbnMvMTkwNDQuMjEzMC4yMjEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "89f6ad27-ace9-4d12-9450-37aff4696e0e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "4b17e0b7-07b6-49c1-8449-a12108080967" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12845,Microsoft.Compute/GetVMImageFromLocation30Min;73845" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "8977d0e6-4377-4d1a-9407-94047c1c9b98" + "39782de7-0194-45c3-8d4e-876df12df596" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5cc4d7aa-b50e-4045-acb9-03886f817c5f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14854" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c42bea76-3ec2-4e06-8e7b-d91eaa6e6929" + "5cc16057-1869-438e-ad12-8867bc202001" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012645Z:c42bea76-3ec2-4e06-8e7b-d91eaa6e6929" + "EASTUS2:20250602T214853Z:5cc16057-1869-438e-ad12-8867bc202001" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 635F0E5B732346B39A57BAD7183A539E Ref B: MNZ221060618053 Ref C: 2025-06-02T21:48:53Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:45 GMT" + "Mon, 02 Jun 2025 21:48:53 GMT" + ], + "Content-Length": [ + "1158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2130.221006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-g2/Versions/19044.2130.221006\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro-g2/versions/19044.3086.230609?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8tZzIvdmVyc2lvbnMvMTkwNDQuMzA4Ni4yMzA2MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f25e5be8-52fb-4355-a2f8-27e8fa948648" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "4b7f62ce-ad1c-4f2d-b5b6-72161fd96865" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12844,Microsoft.Compute/GetVMImageFromLocation30Min;73844" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ed400b23-56a4-4200-93e4-632acce9cfcf" - ], - "Cache-Control": [ - "no-cache" + "367c1e7e-3e24-4c52-abd2-896ed054b2c4" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/25cb4844-dbbf-4043-8163-d0b972eaf0f7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14640" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "43def069-7886-4080-8cc5-2465260ad1b7" + "4251b2ba-9b4c-4aaa-ba83-7b3d8e6ec8ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012716Z:43def069-7886-4080-8cc5-2465260ad1b7" + "EASTUS:20250602T214853Z:4251b2ba-9b4c-4aaa-ba83-7b3d8e6ec8ac" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 46B7D2587A6A49F3AB9B316DDD0BF8CD Ref B: MNZ221060610021 Ref C: 2025-06-02T21:48:53Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:16 GMT" + "Mon, 02 Jun 2025 21:48:53 GMT" + ], + "Content-Length": [ + "1158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230609\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-g2/Versions/19044.3086.230609\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODA2MTM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro-g2/versions/19044.3086.230621?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8tZzIvdmVyc2lvbnMvMTkwNDQuMzA4Ni4yMzA2MjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "210e3a5e-4b7e-4666-989d-815131ec3a90" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "6090ab6a-caba-44e7-b179-14b69d227350" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12843,Microsoft.Compute/GetVMImageFromLocation30Min;73843" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "394e72c6-bcf8-428b-8e87-10ba9dc8dd31" + "f566f082-e625-41eb-b15b-09f16a0a3f6d" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/87cb288a-78b8-4cdc-85b6-f0b50f6fa4c3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14853" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9710b865-6df0-4fb5-9c90-f439abf99bda" + "8aaf5095-8e6a-4c5f-987a-3093bef68456" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012646Z:9710b865-6df0-4fb5-9c90-f439abf99bda" + "EASTUS2:20250602T214854Z:8aaf5095-8e6a-4c5f-987a-3093bef68456" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2522595501784A31BEA318F4B5DCAA32 Ref B: MNZ221060609031 Ref C: 2025-06-02T21:48:53Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:45 GMT" + "Mon, 02 Jun 2025 21:48:53 GMT" + ], + "Content-Length": [ + "1158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-g2/Versions/19044.3086.230621\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMjAxNi4xMjcuMjAxODA2MTM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro-zh-cn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8temgtY24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "dbb903d0-2091-4960-88f4-071756449272" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "813b3327-a14f-462b-8833-3ac3dbbb5acf" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/2016.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15898,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43898" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "adbde982-08df-4de1-b2d9-d4fc5ded6708" - ], - "Cache-Control": [ - "no-cache" + "e1b3e269-f20c-4199-8808-2e4c5750267e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e306c3fd-7f87-41be-a4a4-8cde084b7c4e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14639" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "568de40f-0433-4d92-9aa7-663d30a5e2b9" + "8daf5af8-6610-4006-aab5-c33be29a3553" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012716Z:568de40f-0433-4d92-9aa7-663d30a5e2b9" + "EASTUS:20250602T214854Z:8daf5af8-6610-4006-aab5-c33be29a3553" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D1D2907756E34B82951251D8379D63A9 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:48:54Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:16 GMT" + "Mon, 02 Jun 2025 21:48:54 GMT" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230609\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-zh-cn/Versions/19044.3086.230609\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-zh-cn/Versions/19044.3086.230621\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro-zh-cn/versions/19044.3086.230609?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8temgtY24vdmVyc2lvbnMvMTkwNDQuMzA4Ni4yMzA2MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5e004c6b-a893-45fe-875b-4959d630238b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "65d9457b-2a6d-404c-8a73-c1bb9a1ba41b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.0.20170412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.0.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20170630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20170822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20171216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4272" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12842,Microsoft.Compute/GetVMImageFromLocation30Min;73842" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9401234e-0585-47eb-b0ae-8adbd0dfac93" + "56cf7237-a8fd-4ad1-a993-6d8d80ffce35" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/581c66b1-0eff-4c92-ac61-522b7d6607fb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "92d8600c-357d-45d8-a71b-babc514efbbf" + "48917bfc-102c-4728-96fc-966b5892abe7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012646Z:92d8600c-357d-45d8-a71b-babc514efbbf" + "EASTUS2:20250602T214854Z:48917bfc-102c-4728-96fc-966b5892abe7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7485827A4A844F6F958DCC2178C8934B Ref B: MNZ221060610047 Ref C: 2025-06-02T21:48:54Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:45 GMT" + "Mon, 02 Jun 2025 21:48:53 GMT" + ], + "Content-Length": [ + "1050" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230609\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-zh-cn/Versions/19044.3086.230609\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro-zh-cn/versions/19044.3086.230621?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8temgtY24vdmVyc2lvbnMvMTkwNDQuMzA4Ni4yMzA2MjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6fb1f83e-e7c1-4864-ab67-a2c05d9e9d38" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "64ff63e1-4b1b-411c-841b-c5b650dbe475" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.0.20170412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.0.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20170630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20170822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20171216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4272" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12841,Microsoft.Compute/GetVMImageFromLocation30Min;73841" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "0dacb66b-d64a-4e41-bb85-006a10b03052" - ], - "Cache-Control": [ - "no-cache" + "670dd095-16aa-46e4-9a6a-528c541ef918" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9deae045-e391-42c8-9ed1-c3524b765c10" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14638" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "32113e6c-e218-4803-883c-f59fa7ac98c8" + "36fb1cc9-b81e-48bf-87a2-afb4baf4cd67" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012717Z:32113e6c-e218-4803-883c-f59fa7ac98c8" + "EASTUS:20250602T214854Z:36fb1cc9-b81e-48bf-87a2-afb4baf4cd67" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 09FFF3F816074549A69546F11FB1D40E Ref B: MNZ221060619037 Ref C: 2025-06-02T21:48:54Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:16 GMT" + "Mon, 02 Jun 2025 21:48:54 GMT" + ], + "Content-Length": [ + "1050" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-zh-cn/Versions/19044.3086.230621\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.0.20170412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMC4yMDE3MDQxMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro-zh-cn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8temgtY24tZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9cb1adeb-36af-4404-b657-d142d8a7ff12" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "49188c78-8a62-470c-b3f8-434c4737e0b1" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.0.20170412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "429" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15897,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43897" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "33b4fcc8-c3ec-4efc-9d16-af9d767d67dc" + "e0f85a0e-9da3-4fa0-b436-648684751707" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2be9b2ea-fa5c-4347-ae9b-9b412f0d742d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "687c5a8a-9e88-4c6c-9e49-8741ba7168fe" + "d4d51c6c-adb9-4a4f-a562-c4ce7d7dbf2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012646Z:687c5a8a-9e88-4c6c-9e49-8741ba7168fe" + "EASTUS2:20250602T214854Z:d4d51c6c-adb9-4a4f-a562-c4ce7d7dbf2d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F88081A296D14A2693ED4AB32EC30828 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:48:54Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:45 GMT" + "Mon, 02 Jun 2025 21:48:53 GMT" + ], + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230609\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-zh-cn-g2/Versions/19044.3086.230609\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-zh-cn-g2/Versions/19044.3086.230621\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.0.20170412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMC4yMDE3MDQxMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro-zh-cn-g2/versions/19044.3086.230609?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8temgtY24tZzIvdmVyc2lvbnMvMTkwNDQuMzA4Ni4yMzA2MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "86f0e829-56bc-4943-a384-cc49e308d41d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "afa0e6ca-6629-4eb0-9438-ac76ea5b672f" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.0.20170412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "429" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12840,Microsoft.Compute/GetVMImageFromLocation30Min;73840" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "630e8ac3-2e22-4d8a-b7de-02bd7a276026" - ], - "Cache-Control": [ - "no-cache" + "7f5c22d7-7155-4d4b-bc5b-7b76101a362c" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2041aef1-10f9-4106-97f4-1bfc8fab5c7b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14637" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f0bcc8cb-88a2-4323-bbc0-2d0ee93f6f05" + "645210b4-d57d-4589-92fd-b146ddc82c3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012717Z:f0bcc8cb-88a2-4323-bbc0-2d0ee93f6f05" + "EASTUS:20250602T214854Z:645210b4-d57d-4589-92fd-b146ddc82c3a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8E2C45D2F4AE48C89FF7980646ADC17E Ref B: MNZ221060609039 Ref C: 2025-06-02T21:48:54Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:16 GMT" + "Mon, 02 Jun 2025 21:48:54 GMT" + ], + "Content-Length": [ + "1164" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230609\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-zh-cn-g2/Versions/19044.3086.230609\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.0.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMC4yMDE3MDUxMD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pro-zh-cn-g2/versions/19044.3086.230621?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm8temgtY24tZzIvdmVyc2lvbnMvMTkwNDQuMzA4Ni4yMzA2MjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f7f66ca0-45ee-472e-9423-91091bc61837" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "7a8d34fb-0673-4b6c-a612-23863660e6a4" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.0.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "429" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12839,Microsoft.Compute/GetVMImageFromLocation30Min;73839" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "a5d35981-4a85-4614-911f-5a8e9b1e24fb" + "7cde31f7-d81e-4a34-8ea0-158e6e6ce8f6" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3b89e81e-24c6-4efe-9572-7a8efabce867" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "29c75dc9-a560-4485-bd75-ee38fddd6290" + "7935a5f9-9c58-428a-90cd-10900fb14f96" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012646Z:29c75dc9-a560-4485-bd75-ee38fddd6290" + "EASTUS2:20250602T214854Z:7935a5f9-9c58-428a-90cd-10900fb14f96" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E1F95CA9E68C47FFAF09C9BA1346BA41 Ref B: MNZ221060610029 Ref C: 2025-06-02T21:48:54Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:46 GMT" + "Mon, 02 Jun 2025 21:48:54 GMT" + ], + "Content-Length": [ + "1164" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pro-zh-cn-g2/Versions/19044.3086.230621\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.0.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMC4yMDE3MDUxMD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pron/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7df03a4a-6517-4047-8ea2-a8e27e39bdb2" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "2ebcfda4-6131-4e59-9ace-e2916d6c5cee" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.0.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "429" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15896,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43896" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "d5c1900a-630a-402c-be19-5d09f8e886de" - ], - "Cache-Control": [ - "no-cache" + "774ed694-4f7f-43fc-bbae-a48779e99a13" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f8cfca96-c876-4e9e-aa67-8d1167c26710" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14636" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "fcef6e9a-9363-4aa5-b6de-ee96057b9cda" + "c670b272-ff1e-4c28-802f-15e7f7391e0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012717Z:fcef6e9a-9363-4aa5-b6de-ee96057b9cda" + "EASTUS:20250602T214855Z:c670b272-ff1e-4c28-802f-15e7f7391e0f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7BA87B5849A44C088A7429A853678BF0 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:48:55Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:16 GMT" + "Mon, 02 Jun 2025 21:48:54 GMT" + ], + "Content-Length": [ + "613" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230609\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pron/Versions/19044.3086.230609\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pron/Versions/19044.3086.230621\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20170630?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNjMwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pron/versions/19044.3086.230609?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm9uL3ZlcnNpb25zLzE5MDQ0LjMwODYuMjMwNjA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8a4e9ac1-4234-4e18-89ea-f3d07cf23601" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "343f4041-c194-4fa7-8599-5b7103061ff6" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20170630\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12838,Microsoft.Compute/GetVMImageFromLocation30Min;73838" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "e17c0a8a-7e50-42c9-84dd-0d2a0e9cde81" + "54c888a9-f63e-49c9-957c-2415c136d278" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6c640e9d-354b-4343-9040-77206dc86b4c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14849" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8f7ec259-6de5-4ebb-abdc-45e9b9e4a0e0" + "b9a911b4-1374-4e5f-b687-c819213a76ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012646Z:8f7ec259-6de5-4ebb-abdc-45e9b9e4a0e0" + "EASTUS:20250602T214855Z:b9a911b4-1374-4e5f-b687-c819213a76ba" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 29CCC444A1BD4F83B83425A470BBFB96 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:48:55Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:46 GMT" + "Mon, 02 Jun 2025 21:48:54 GMT" + ], + "Content-Length": [ + "1045" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230609\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pron/Versions/19044.3086.230609\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20170630?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNjMwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pron/versions/19044.3086.230621?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm9uL3ZlcnNpb25zLzE5MDQ0LjMwODYuMjMwNjIxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fd43aca1-d28c-4aba-b73a-32d9496e1fc7" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a9545045-3866-4cd2-9dda-cc694d111141" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20170630\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12837,Microsoft.Compute/GetVMImageFromLocation30Min;73837" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "5b5bc2a4-9b5b-4a0e-8992-bd89bd00410e" - ], - "Cache-Control": [ - "no-cache" + "5812ff8a-0168-4be7-a4b7-93e000555985" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ca24c30b-de54-4193-8f3c-398ca113a504" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14635" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "1e1cde27-7cd0-469e-a323-e51e67dd1eee" + "25a9be63-a045-4bf7-b26c-28e825b79b9d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012717Z:1e1cde27-7cd0-469e-a323-e51e67dd1eee" + "EASTUS2:20250602T214855Z:25a9be63-a045-4bf7-b26c-28e825b79b9d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2FFD605AF42A44888D196FF18A1A56F0 Ref B: MNZ221060609017 Ref C: 2025-06-02T21:48:55Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:16 GMT" + "Mon, 02 Jun 2025 21:48:54 GMT" + ], + "Content-Length": [ + "1045" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pron/Versions/19044.3086.230621\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20170822?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwODIyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pron-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm9uLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b9485757-c740-4265-a6fc-e3015d5e9005" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "6924150a-088a-466a-8bd7-8b923811370a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20170822\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15895,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43895" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "929ebf7b-8253-4ee1-8c67-67a9f86f1285" + "16a58ee3-de0b-4917-b51c-7a5f0b0cc59b" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8449a92d-9361-4c0e-be3a-3893932a2bde" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14848" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "31f1f560-fae5-419a-81fd-e51b243ca7bf" + "24c66f88-8eb1-41cc-a58a-592b58f7ee89" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012646Z:31f1f560-fae5-419a-81fd-e51b243ca7bf" + "EASTUS:20250602T214855Z:24c66f88-8eb1-41cc-a58a-592b58f7ee89" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F319170A7DB64E36822124693F08F614 Ref B: MNZ221060610035 Ref C: 2025-06-02T21:48:55Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:46 GMT" + "Mon, 02 Jun 2025 21:48:55 GMT" + ], + "Content-Length": [ + "619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230609\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pron-g2/Versions/19044.3086.230609\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pron-g2/Versions/19044.3086.230621\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20170822?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwODIyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pron-g2/versions/19044.3086.230609?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm9uLWcyL3ZlcnNpb25zLzE5MDQ0LjMwODYuMjMwNjA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "62a49f45-0db6-4735-a9a0-b70306c692d7" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "aaba4b95-026a-40b4-8fe8-81f0eef192c1" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20170822\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12836,Microsoft.Compute/GetVMImageFromLocation30Min;73836" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "a3b14372-b194-4da7-b428-9a707b61fec9" - ], - "Cache-Control": [ - "no-cache" + "24271fc4-80f2-48d9-8325-dfff891fb6d5" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fce757f5-c6ab-4403-9b9a-b43db15e389d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14634" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "95742996-b926-4346-a620-71c001237f3e" + "c762010c-5320-4c79-943b-93d381af2504" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012717Z:95742996-b926-4346-a620-71c001237f3e" + "EASTUS2:20250602T214855Z:c762010c-5320-4c79-943b-93d381af2504" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5921FB8CD9F34022AC65ACA59630E454 Ref B: MNZ221060609017 Ref C: 2025-06-02T21:48:55Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:16 GMT" + "Mon, 02 Jun 2025 21:48:54 GMT" + ], + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230609\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pron-g2/Versions/19044.3086.230609\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwOTE4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-21h2-pron-g2/versions/19044.3086.230621?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjFoMi1wcm9uLWcyL3ZlcnNpb25zLzE5MDQ0LjMwODYuMjMwNjIxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fa14ecf2-b7a0-4702-951e-cd4830be7a00" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "ddfe0d41-9d45-438e-a5d2-54d03b14c8d2" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12835,Microsoft.Compute/GetVMImageFromLocation30Min;73835" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ac9fa7b3-9f8d-44bb-969a-cb167f315d5d" + "dcadb73c-c767-46cd-bbc0-6573126c1049" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/386d5813-956e-411b-a51a-b663b64ab6fa" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14847" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "76b77b52-5f9b-4ab0-9399-2110c82499c0" + "13d92f6b-8c92-43df-b35a-35cc7c599116" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012646Z:76b77b52-5f9b-4ab0-9399-2110c82499c0" + "EASTUS:20250602T214855Z:13d92f6b-8c92-43df-b35a-35cc7c599116" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B028CE14A0F8424C9DB51096143D8E44 Ref B: MNZ221060619023 Ref C: 2025-06-02T21:48:55Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:46 GMT" + "Mon, 02 Jun 2025 21:48:55 GMT" + ], + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-21h2-pron-g2/Versions/19044.3086.230621\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwOTE4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2be138b8-69f2-4610-a90c-b77eb91f5282" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "2739831b-f095-4945-8147-f74953649bdb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15894,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43894" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "61f1fd9d-9af3-42a6-87b8-558eb38e4e36" - ], - "Cache-Control": [ - "no-cache" + "71c26d84-69cb-4e15-9718-6b92156c7a7d" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dd23e0cf-5633-4c5f-9333-15af0203bfd2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14633" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "3490b99a-0969-472d-aaf4-da6f7fc3d968" + "43a6d4a9-5873-48ae-bf9c-2ff6967f7771" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012717Z:3490b99a-0969-472d-aaf4-da6f7fc3d968" + "EASTUS:20250602T214855Z:43a6d4a9-5873-48ae-bf9c-2ff6967f7771" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B28B52ADC7C6420DA94813AD6B114964 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:48:55Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:16 GMT" + "Mon, 02 Jun 2025 21:48:55 GMT" + ], + "Content-Length": [ + "1827" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd/Versions/19045.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd/Versions/19045.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd/Versions/19045.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd/Versions/19045.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd/Versions/19045.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd/Versions/19045.5859.250525\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMDE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd/versions/19045.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQvdmVyc2lvbnMvMTkwNDUuNTM3MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b4166ba9-b3bb-450c-a6dd-7af4ff2c12ad" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "624756b1-39eb-4948-bfb7-d08f507a4bae" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12834,Microsoft.Compute/GetVMImageFromLocation30Min;73834" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "ed3a7225-5357-480f-b4b4-07ec3b4fe02c" + "291f17f3-f417-4d98-97c9-2ab7a7b3a590" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/18af88b4-33f3-4144-b588-580d54702ab9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14846" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "516c57bb-5368-423a-8266-1d761b11ff46" + "7e5fddcd-8b23-48d4-bc58-57268bed8f40" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012647Z:516c57bb-5368-423a-8266-1d761b11ff46" + "EASTUS2:20250602T214855Z:7e5fddcd-8b23-48d4-bc58-57268bed8f40" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C290FD86662B40A38C5839789AAFF6F6 Ref B: MNZ221060609011 Ref C: 2025-06-02T21:48:55Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:46 GMT" + "Mon, 02 Jun 2025 21:48:55 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd/Versions/19045.5371.250112\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMDE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd/versions/19045.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQvdmVyc2lvbnMvMTkwNDUuNTQ4Ny4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f7249e06-8ea2-4a68-a6c6-ba301704ef57" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "47a93a74-660c-420e-aa56-976ef9baf9c1" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12833,Microsoft.Compute/GetVMImageFromLocation30Min;73833" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "053295a9-3be3-4ad5-9f3c-8120b7e7d89f" - ], - "Cache-Control": [ - "no-cache" + "94569038-942e-49ac-8b2a-4bc35e30c4ed" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3278003f-630e-48ac-9769-cd1d8fa55ed9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14632" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "99c2bd00-4c43-4b86-85ef-2e00a31bc94f" + "0ba53aad-601b-4243-b123-a9db8e8346a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012717Z:99c2bd00-4c43-4b86-85ef-2e00a31bc94f" + "EASTUS2:20250602T214856Z:0ba53aad-601b-4243-b123-a9db8e8346a0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DBDC9EDA96284FB69B374DE8D3844E91 Ref B: MNZ221060609027 Ref C: 2025-06-02T21:48:55Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:17 GMT" + "Mon, 02 Jun 2025 21:48:55 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd/Versions/19045.5487.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMTE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd/versions/19045.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQvdmVyc2lvbnMvMTkwNDUuNTYwOC4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e576b334-b872-4edf-bd83-49e7c77779ed" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "25a376ce-88b8-47a7-8734-6469d489063c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12832,Microsoft.Compute/GetVMImageFromLocation30Min;73832" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "1cbaf992-cbf7-47c1-aebc-1b68ca2f27ff" + "79be9585-7a5c-4612-a717-0246f0536707" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ced85c2c-b3d5-4a72-9356-73fc4f8cbdc8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14845" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9bec55ef-8831-40ec-b9e3-7928b5618bcf" + "8f2a24ac-2234-4960-ac81-21cb24e10267" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012647Z:9bec55ef-8831-40ec-b9e3-7928b5618bcf" + "EASTUS:20250602T214856Z:8f2a24ac-2234-4960-ac81-21cb24e10267" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AED70E563C7D4A9587CBA3E7E4A7BA93 Ref B: MNZ221060610035 Ref C: 2025-06-02T21:48:56Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:46 GMT" + "Mon, 02 Jun 2025 21:48:55 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd/Versions/19045.5608.250305\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMTE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd/versions/19045.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQvdmVyc2lvbnMvMTkwNDUuNTczNy4yNTA0MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "10866291-5ba4-46c8-a084-1933205f4374" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3d15ac57-8cb4-4c50-be70-eb0b0aed7672" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12831,Microsoft.Compute/GetVMImageFromLocation30Min;73831" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "0de3234f-f40a-4be2-b092-fd87bf3dac96" - ], - "Cache-Control": [ - "no-cache" + "33baf1f4-c179-4bcb-bb57-3adb56b36b36" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/19adff8a-e5a8-41d7-9462-cabb72ca1047" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14631" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "5585f5a3-53ba-4279-96c1-02cd422148fc" + "c58c9012-612b-4fd5-b83a-fd0382c830f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012717Z:5585f5a3-53ba-4279-96c1-02cd422148fc" + "EASTUS:20250602T214856Z:c58c9012-612b-4fd5-b83a-fd0382c830f3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6E01F842C2C74604A79E2C7EA76E9FA6 Ref B: MNZ221060609023 Ref C: 2025-06-02T21:48:56Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:17 GMT" + "Mon, 02 Jun 2025 21:48:56 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd/Versions/19045.5737.250407\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20171216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMjE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd/versions/19045.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQvdmVyc2lvbnMvMTkwNDUuNTg1NC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3f152f1b-1683-4678-94d8-0004ff1234c2" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "51683189-c310-4672-881d-5e4ef5674094" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20171216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12830,Microsoft.Compute/GetVMImageFromLocation30Min;73830" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "114a84cc-04c1-4c10-8db5-12a424393e62" + "1eee808f-2eb1-4098-9620-cc6a48bdac74" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9d2298b6-3c93-469a-a2eb-5f9b28571130" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14844" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f950c825-43f5-4c61-a26a-99c35ad95546" + "0257cbf9-4e47-405d-84be-8ecaba263e86" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012647Z:f950c825-43f5-4c61-a26a-99c35ad95546" + "EASTUS:20250602T214856Z:0257cbf9-4e47-405d-84be-8ecaba263e86" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FE7147BEDE624E1C849ECEF61B41C801 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:48:56Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:47 GMT" + "Mon, 02 Jun 2025 21:48:55 GMT" + ], + "Content-Length": [ + "1013" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd/Versions/19045.5854.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20171216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMjE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd/versions/19045.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQvdmVyc2lvbnMvMTkwNDUuNTg1OS4yNTA1MjU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "04fa2954-1260-49cc-afca-b0389115a433" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "427b5f32-c4b2-46f8-80fa-40415777fb7a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20171216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12829,Microsoft.Compute/GetVMImageFromLocation30Min;73829" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "3a325c5c-bf27-4023-8b23-c1d225f8bbbb" - ], - "Cache-Control": [ - "no-cache" + "3bf15b5d-27af-4a36-92fd-11e6b904daee" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e1a3d66c-0c89-44e4-8714-1ea6ee45893c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14630" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "ee81cedd-ac3b-46be-a1cf-fb2a7fc986d7" + "bdaf96ce-96a6-4695-917d-711b2e9ff6e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012718Z:ee81cedd-ac3b-46be-a1cf-fb2a7fc986d7" + "EASTUS:20250602T214856Z:bdaf96ce-96a6-4695-917d-711b2e9ff6e9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 177B615E41C949ECA77BA2E560ECC202 Ref B: MNZ221060609047 Ref C: 2025-06-02T21:48:56Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:17 GMT" + "Mon, 02 Jun 2025 21:48:56 GMT" + ], + "Content-Length": [ + "1013" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd/Versions/19045.5859.250525\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwMjE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1f90f3c2-4fee-4a28-b7b3-f70b6c3596ce" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "bdd20190-09e8-487e-8098-3a26b9a5fff5" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15893,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43893" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "fdbabb48-d7f9-4ab6-aac7-c8d436e03b60" + "b67fd7b9-4c33-468e-bec5-f5098c648536" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b2f426bf-38fb-4fcf-a1e9-bc7d209a56be" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14843" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "71a985ab-96f3-4d01-8025-b8c70a6ffcfa" + "fa443cdd-0f22-49bd-8554-22bf90f4ced9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012647Z:71a985ab-96f3-4d01-8025-b8c70a6ffcfa" + "EASTUS:20250602T214856Z:fa443cdd-0f22-49bd-8554-22bf90f4ced9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5732064E6A8F40D1804E4BB00A498550 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:48:56Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:47 GMT" + "Mon, 02 Jun 2025 21:48:56 GMT" + ], + "Content-Length": [ + "1845" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd-g2/Versions/19045.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd-g2/Versions/19045.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd-g2/Versions/19045.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd-g2/Versions/19045.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd-g2/Versions/19045.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd-g2/Versions/19045.5859.250525\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwMjE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd-g2/versions/19045.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQtZzIvdmVyc2lvbnMvMTkwNDUuNTM3MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4e384e41-6511-4eb1-893d-e56c2f61390a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "84289a18-860a-454b-9417-abbc99494561" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12828,Microsoft.Compute/GetVMImageFromLocation30Min;73828" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "f73ba9bb-aca3-4de6-ac08-821146c862b2" - ], - "Cache-Control": [ - "no-cache" + "dfd51055-11c6-49f5-abae-623eb1604c09" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/412708eb-2e0d-4ecf-9fd2-05324b3a924e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14629" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "3f67d1aa-1652-4043-be6b-a2b050e3e0ae" + "1031d634-f129-4257-8575-984877cbb87d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012718Z:3f67d1aa-1652-4043-be6b-a2b050e3e0ae" + "EASTUS2:20250602T214857Z:1031d634-f129-4257-8575-984877cbb87d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 75B7F87DFD9644D98F2CD7660FDD8A60 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:48:56Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:17 GMT" + "Mon, 02 Jun 2025 21:48:56 GMT" + ], + "Content-Length": [ + "1310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd-g2/Versions/19045.5371.250112\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwMzE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd-g2/versions/19045.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQtZzIvdmVyc2lvbnMvMTkwNDUuNTQ4Ny4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fb30e7ba-ca37-467a-829e-68859d0f6d6b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "6665ec73-d09a-420a-bd5b-80df4f705d43" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12827,Microsoft.Compute/GetVMImageFromLocation30Min;73827" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "fd179542-6af7-4489-a51c-0929cd26a12d" + "130d3c8e-4c40-407f-9bea-4d66dcb2ac05" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/32c36e0a-cc2c-41a1-9078-4d1b6a86d1c0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14842" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ae572354-a62e-426d-99d7-83e378775d49" + "0c8daace-a665-419d-b068-e8897fd10680" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012647Z:ae572354-a62e-426d-99d7-83e378775d49" + "EASTUS:20250602T214857Z:0c8daace-a665-419d-b068-e8897fd10680" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 63E520209A0D4C91B2E10268E0118696 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:48:57Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:47 GMT" + "Mon, 02 Jun 2025 21:48:56 GMT" + ], + "Content-Length": [ + "1310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd-g2/Versions/19045.5487.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwMzE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd-g2/versions/19045.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQtZzIvdmVyc2lvbnMvMTkwNDUuNTYwOC4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ab700aa5-3523-4be6-9bac-59b12447bb91" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "49df2a7c-d67b-492e-bc50-a4f7fa3ad308" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12826,Microsoft.Compute/GetVMImageFromLocation30Min;73826" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "d473735c-c24a-44aa-8a44-a569c7ddb6b5" - ], - "Cache-Control": [ - "no-cache" + "013488bb-71cf-4f21-985b-7db2acdd7cc1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d010b511-5697-4a36-8252-a4812391efff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14628" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "4ea9e1e8-15eb-431a-8944-e7481f02d86d" + "0c8a63dc-a7f1-4292-a39a-27cb512c787e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012718Z:4ea9e1e8-15eb-431a-8944-e7481f02d86d" + "EASTUS:20250602T214857Z:0c8a63dc-a7f1-4292-a39a-27cb512c787e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3A3B9AB4C14C4F65920C966D5A3EE229 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:48:57Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:17 GMT" + "Mon, 02 Jun 2025 21:48:56 GMT" + ], + "Content-Length": [ + "1310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd-g2/Versions/19045.5608.250305\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNDEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd-g2/versions/19045.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQtZzIvdmVyc2lvbnMvMTkwNDUuNTczNy4yNTA0MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4f3bd4dd-ed98-4ac6-a792-bd8a893ecbf2" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "e7e93457-2f8b-4d3b-8a1a-0406745a0fdb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12825,Microsoft.Compute/GetVMImageFromLocation30Min;73825" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "d612aab9-3506-4ae1-b154-cd31e150e742" + "01444435-9abc-49d0-afbe-ae7e51af8aa0" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b36d599f-251c-4b60-a7b4-b21e8aeaf137" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14841" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "610bf89d-7272-44cd-bd52-d46f3bc4dbf0" + "03736c24-9c56-41c1-a509-1ca664a99301" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012647Z:610bf89d-7272-44cd-bd52-d46f3bc4dbf0" + "EASTUS2:20250602T214857Z:03736c24-9c56-41c1-a509-1ca664a99301" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3AB35E617B2B4B94A2C1F8E8EBD7BF53 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:48:57Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:47 GMT" + "Mon, 02 Jun 2025 21:48:56 GMT" + ], + "Content-Length": [ + "1310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd-g2/Versions/19045.5737.250407\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNDEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd-g2/versions/19045.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQtZzIvdmVyc2lvbnMvMTkwNDUuNTg1NC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c5015bcc-6268-4766-a230-5221645eaffb" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c06b1265-d6fd-46e8-824f-d12a76127606" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12824,Microsoft.Compute/GetVMImageFromLocation30Min;73824" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c36d78a7-f5b7-49b3-b9dc-0e19d471af2a" - ], - "Cache-Control": [ - "no-cache" + "3b96cbb8-19ba-41cf-8b8d-a7aa43dc6769" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2ccd6785-a6de-4acc-a911-7d6babd67ae5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14627" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "202abc9e-e9d3-4e0b-9aac-ffba6e724b46" + "c7302385-112b-412a-a5ab-e5d3fce5650e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012718Z:202abc9e-e9d3-4e0b-9aac-ffba6e724b46" + "EASTUS2:20250602T214857Z:c7302385-112b-412a-a5ab-e5d3fce5650e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F7337FA5AA374F4CA34C13B105361284 Ref B: MNZ221060608021 Ref C: 2025-06-02T21:48:57Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:17 GMT" + "Mon, 02 Jun 2025 21:48:56 GMT" + ], + "Content-Length": [ + "1229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd-g2/Versions/19045.5854.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNTEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-avd-g2/versions/19045.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1hdmQtZzIvdmVyc2lvbnMvMTkwNDUuNTg1OS4yNTA1MjU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "99897474-d1bd-4aaa-a534-d173602d8a12" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1cce10a8-bf30-48cc-94c0-2674a0625fa4" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12823,Microsoft.Compute/GetVMImageFromLocation30Min;73823" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9f2f03c4-d66c-4a3b-866f-235e339ef6d6" + "4995001e-914a-46e1-9bd7-bc6848f21499" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5ea6ca18-37ea-45b6-9b3e-e19898b095e8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14840" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "04ed5cee-07db-4c19-a4bc-05482af4719b" + "d3cfa9c5-8937-424b-acda-e448b1901e0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012648Z:04ed5cee-07db-4c19-a4bc-05482af4719b" + "EASTUS:20250602T214857Z:d3cfa9c5-8937-424b-acda-e448b1901e0c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F2F19CDA544545D683CC4B4B9B5954A0 Ref B: MNZ221060609047 Ref C: 2025-06-02T21:48:57Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:47 GMT" + "Mon, 02 Jun 2025 21:48:57 GMT" + ], + "Content-Length": [ + "1229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-avd-g2/Versions/19045.5859.250525\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNTEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "966e527a-8bbd-4757-9618-26dd98b282db" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "7e3ceef6-f942-4da0-833b-1ca78551087b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15892,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43892" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "55a67bed-7e00-4d45-8e30-32b5c4463e25" - ], - "Cache-Control": [ - "no-cache" + "1d02d6e7-980f-4d05-ad1a-615431553a4b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6e3b90d0-681a-4bcc-b0fa-1b37737c5c76" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14626" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d2ba2124-8e04-42a2-ab31-0f65ede5bf1c" + "cdd6984a-929e-425a-8f68-74e62c0f6bf0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012718Z:d2ba2124-8e04-42a2-ab31-0f65ede5bf1c" + "EASTUS:20250602T214857Z:cdd6984a-929e-425a-8f68-74e62c0f6bf0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB02C409E5714AA5A2F6F9E1875580D6 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:48:57Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:17 GMT" + "Mon, 02 Jun 2025 21:48:57 GMT" + ], + "Content-Length": [ + "1827" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent/Versions/19045.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent/Versions/19045.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent/Versions/19045.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent/Versions/19045.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent/Versions/19045.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent/Versions/19045.5859.250525\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNjEzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent/versions/19045.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQvdmVyc2lvbnMvMTkwNDUuNTM3MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9212fb8a-8175-4881-8443-8222bb365d3f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "bdb793d6-4df9-46ff-b396-a0f1df3e32ce" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12822,Microsoft.Compute/GetVMImageFromLocation30Min;73822" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "6cbdb68d-361e-4477-9fc0-361607d9fcdf" + "b41afd4b-6ebc-4f35-9750-ca894d0a666c" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/43974996-f313-4930-9d73-7eefae011d37" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "3d2dfc71-be24-43ce-b499-048d33a70fd6" + "158cbb0a-8009-453c-98e5-0899eee2b64d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012648Z:3d2dfc71-be24-43ce-b499-048d33a70fd6" + "EASTUS2:20250602T214857Z:158cbb0a-8009-453c-98e5-0899eee2b64d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4736D7B0DD4F4692A120F0E67BFF718E Ref B: MNZ221060610025 Ref C: 2025-06-02T21:48:57Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:47 GMT" + "Mon, 02 Jun 2025 21:48:57 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent/Versions/19045.5371.250112\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/2016.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNjEzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent/versions/19045.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQvdmVyc2lvbnMvMTkwNDUuNTQ4Ny4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4a2e2572-2fcd-44e6-9fbf-6e679b49b396" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f98ffc0b-d20d-4b32-870b-03c1da6267ba" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/2016.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "433" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Pragma": [ + "no-cache" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12821,Microsoft.Compute/GetVMImageFromLocation30Min;73821" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "e471f85f-5401-464a-a3b8-5148dae23f0f" + "8f4ab3e6-0613-4327-ab63-1bb113704b06" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/119faab4-8915-4767-a266-11c626cc3e3d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14625" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "1b9a218f-9cdf-4323-9879-c800566e1454" + "576662eb-d8dc-4a70-ae9e-646ffbe3f298" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012718Z:1b9a218f-9cdf-4323-9879-c800566e1454" + "EASTUS2:20250602T214858Z:576662eb-d8dc-4a70-ae9e-646ffbe3f298" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 37251E05738941F0AC20F880F632A985 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:48:58Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:17 GMT" + "Mon, 02 Jun 2025 21:48:57 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent/Versions/19045.5487.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent/versions/19045.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQvdmVyc2lvbnMvMTkwNDUuNTYwOC4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1eb380dd-b691-45fd-9313-814939447f4f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "dd6e7bb3-50b0-45f3-bf8f-5b61a7bf5d3c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.0.20170412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.0.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20171217\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180220\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180510\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4116" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12820,Microsoft.Compute/GetVMImageFromLocation30Min;73820" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "a80d05f5-b738-4f52-ba8f-e78c4ec7fed7" - ], - "Cache-Control": [ - "no-cache" + "49d3f925-2f7d-4bc6-8c88-c9c5c16bdcb4" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0710f840-a29a-4065-98fe-cb66d47fa10c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14838" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "aa0077f6-6eda-4892-a3bd-f2f8c03f6e06" + "2a326c7c-9596-4197-8e29-cd7beba33b06" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012648Z:aa0077f6-6eda-4892-a3bd-f2f8c03f6e06" + "EASTUS:20250602T214859Z:2a326c7c-9596-4197-8e29-cd7beba33b06" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 643373FFAE0241789E22E732FDF9B55F Ref B: MNZ221060618039 Ref C: 2025-06-02T21:48:59Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:47 GMT" + "Mon, 02 Jun 2025 21:48:59 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent/Versions/19045.5608.250305\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent/versions/19045.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQvdmVyc2lvbnMvMTkwNDUuNTczNy4yNTA0MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f5155b9f-2773-4d9d-b008-c055a1f2717f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a1b98925-1893-4bf2-acce-36d6682da7c9" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.0.20170412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.0.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170630\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20171017\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20171217\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180220\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180510\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4116" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12819,Microsoft.Compute/GetVMImageFromLocation30Min;73819" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2b844a96-639d-401e-9e83-c360a33edb1a" + "56eaf5a7-7ca5-45d2-a101-fc67e0398ead" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/adbc32e3-82c3-4f03-87a1-84d7affd535a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14624" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "b6537ff7-ca6c-47b7-9bc6-9156efce11a5" + "6d7a53e0-f99a-4e02-941d-b8e3474f06d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012718Z:b6537ff7-ca6c-47b7-9bc6-9156efce11a5" + "EASTUS:20250602T214859Z:6d7a53e0-f99a-4e02-941d-b8e3474f06d5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 831FAA4017C843E1BEEA1776D66963B2 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:48:59Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:17 GMT" + "Mon, 02 Jun 2025 21:48:59 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent/Versions/19045.5737.250407\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.0.20170412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMC4yMDE3MDQxMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent/versions/19045.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQvdmVyc2lvbnMvMTkwNDUuNTg1NC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6dc2fb22-f955-4ae3-9c01-3e3d662c085e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3fc12871-6ce1-41af-b3d1-e290f2a39f9a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.0.20170412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12818,Microsoft.Compute/GetVMImageFromLocation30Min;73818" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "0f99fdc7-1598-4d0e-aa1e-e7f11b51a29e" - ], - "Cache-Control": [ - "no-cache" + "ed4b5df8-36da-43dd-aa01-b6b52e449042" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ddd5700b-90df-4a86-955c-1273b68fd360" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b022430f-fbcb-49fc-a77d-49771760f570" + "12df6580-c0aa-4a04-a2f4-0691fd611b6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012648Z:b022430f-fbcb-49fc-a77d-49771760f570" + "EASTUS2:20250602T214859Z:12df6580-c0aa-4a04-a2f4-0691fd611b6c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A512F954970A425FA38B93076AD01E02 Ref B: MNZ221060610019 Ref C: 2025-06-02T21:48:59Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:48 GMT" + "Mon, 02 Jun 2025 21:48:59 GMT" + ], + "Content-Length": [ + "1013" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent/Versions/19045.5854.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.0.20170412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMC4yMDE3MDQxMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent/versions/19045.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQvdmVyc2lvbnMvMTkwNDUuNTg1OS4yNTA1MjU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1f7614d5-054a-455d-a013-91278005894c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "4fb6b5c7-89dd-4b38-860b-6c4a94bed2d0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.0.20170412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12817,Microsoft.Compute/GetVMImageFromLocation30Min;73817" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "318143a2-48bf-4f42-8745-a856c00f65e2" + "1fab2ad8-0690-4bc3-8342-3d542f482aac" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2a729de0-287f-43d1-9a93-94685381e817" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14623" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8e8b63c5-f0b8-4344-8254-fd41e30c6d00" + "1b55245d-2503-4bf1-9258-3da5637bc00b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012718Z:8e8b63c5-f0b8-4344-8254-fd41e30c6d00" + "EASTUS:20250602T214900Z:1b55245d-2503-4bf1-9258-3da5637bc00b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D47253AA484748D6A8B086B0CB602F5D Ref B: MNZ221060610051 Ref C: 2025-06-02T21:48:59Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:18 GMT" + "Mon, 02 Jun 2025 21:48:59 GMT" + ], + "Content-Length": [ + "1013" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent/Versions/19045.5859.250525\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.0.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMC4yMDE3MDUxMD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4535494a-54a4-447d-ae19-074f0485b403" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "94efb9cc-a1c7-4564-b2a6-81e7900c635f" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.0.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15891,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43891" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "8d3d5ddb-b437-4cc9-9cbb-80e40699556a" - ], - "Cache-Control": [ - "no-cache" + "3914bea2-5182-49d5-ac26-f42c2a52e31b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/551811d5-4035-474e-9927-52e456acb5a7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "782690a8-e147-447e-be1f-4ba7bcffd9c9" + "8331720a-fbb3-4914-9654-be4807788f51" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012648Z:782690a8-e147-447e-be1f-4ba7bcffd9c9" + "EASTUS:20250602T214900Z:8331720a-fbb3-4914-9654-be4807788f51" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AA39D92DFD1A437AA7D866E5627052AE Ref B: MNZ221060609053 Ref C: 2025-06-02T21:49:00Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:48 GMT" + "Mon, 02 Jun 2025 21:48:59 GMT" + ], + "Content-Length": [ + "1845" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent-g2/Versions/19045.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent-g2/Versions/19045.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent-g2/Versions/19045.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent-g2/Versions/19045.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent-g2/Versions/19045.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent-g2/Versions/19045.5859.250525\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.0.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMC4yMDE3MDUxMD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent-g2/versions/19045.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQtZzIvdmVyc2lvbnMvMTkwNDUuNTM3MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b8ed75ee-9e7c-4905-942d-3ef88f1e2960" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "9d2c909c-701c-4347-a91f-12a16174abfa" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.0.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12816,Microsoft.Compute/GetVMImageFromLocation30Min;73816" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "42735656-af53-43de-83f2-5317da4f13dc" + "507559e2-50f0-47de-b6c3-d04d02c1bf2f" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/549c4653-520e-4a6e-8413-34459a2bf115" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14622" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a8941f93-bc99-4e7c-897d-acebadc7a51e" + "a721eda8-7644-4e78-afe1-6475654fcc30" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012718Z:a8941f93-bc99-4e7c-897d-acebadc7a51e" + "EASTUS:20250602T214900Z:a721eda8-7644-4e78-afe1-6475654fcc30" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6718C59E4CFA4CFD89EEE99DF56F5D8C Ref B: MNZ221060618037 Ref C: 2025-06-02T21:49:00Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:18 GMT" + "Mon, 02 Jun 2025 21:48:59 GMT" + ], + "Content-Length": [ + "1310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent-g2/Versions/19045.5371.250112\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20170630?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNjMwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent-g2/versions/19045.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQtZzIvdmVyc2lvbnMvMTkwNDUuNTQ4Ny4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8ac195ab-5f82-4078-81cc-612f53e9664e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a4f72b55-921b-46c5-9e05-1b4dfc7a8bb5" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170630\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12815,Microsoft.Compute/GetVMImageFromLocation30Min;73815" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "96435785-f1a0-4634-a157-02911aaa27fc" - ], - "Cache-Control": [ - "no-cache" + "42a6efef-121e-491b-a636-136a5d046216" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c52dadb4-939c-47e7-bff9-29127f96db32" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14835" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d675bb97-60a2-4fab-95d9-01eed84dab63" + "18d8a23d-d12a-4c6d-90bd-9f740fb8518d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012649Z:d675bb97-60a2-4fab-95d9-01eed84dab63" + "EASTUS2:20250602T214900Z:18d8a23d-d12a-4c6d-90bd-9f740fb8518d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BE405E76536E42E0AC72F5C3BC6258C8 Ref B: MNZ221060608031 Ref C: 2025-06-02T21:49:00Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:48 GMT" + "Mon, 02 Jun 2025 21:48:59 GMT" + ], + "Content-Length": [ + "1310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent-g2/Versions/19045.5487.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20170630?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNjMwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent-g2/versions/19045.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQtZzIvdmVyc2lvbnMvMTkwNDUuNTYwOC4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "75386777-492f-4551-a96f-f7cf85ce5609" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "527b705f-48a8-4079-aa81-31ea080d196c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170630\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170630\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12814,Microsoft.Compute/GetVMImageFromLocation30Min;73814" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "0e588929-a163-439f-b6e0-2372090a8868" + "05b1b4a2-f48c-48c4-a1a6-e447ffdca1e7" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c948647f-3e3e-4abd-a10c-c9fceda16466" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14621" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "66f6268d-84e6-4f5d-bdfe-fcc74f513ddf" + "4af669e7-4b29-47fa-b9c7-83ae06e202a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012719Z:66f6268d-84e6-4f5d-bdfe-fcc74f513ddf" + "EASTUS2:20250602T214900Z:4af669e7-4b29-47fa-b9c7-83ae06e202a6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E034242DBADD46EB91861522D873C903 Ref B: MNZ221060608037 Ref C: 2025-06-02T21:49:00Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:18 GMT" + "Mon, 02 Jun 2025 21:49:00 GMT" + ], + "Content-Length": [ + "1310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent-g2/Versions/19045.5608.250305\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNzEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent-g2/versions/19045.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQtZzIvdmVyc2lvbnMvMTkwNDUuNTczNy4yNTA0MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0231c8cc-b687-44db-809b-1d8abaddae9a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5374611c-684c-44b2-9cbe-163fda3bff71" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12813,Microsoft.Compute/GetVMImageFromLocation30Min;73813" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "6184c8c8-4dd1-4e45-944d-d117c3e46d5f" - ], - "Cache-Control": [ - "no-cache" + "c7243490-76a3-4baf-92a8-b934a7846043" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bf7dab5b-1330-43b7-9c6b-d03967976a65" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14834" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ccef97fc-f882-4121-b8ec-49f7c3fa91d1" + "8e9fac69-6713-42f3-9252-27a544784105" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012649Z:ccef97fc-f882-4121-b8ec-49f7c3fa91d1" + "EASTUS2:20250602T214900Z:8e9fac69-6713-42f3-9252-27a544784105" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ADA06DA8B96F4D9EAD1D2E90AFE52793 Ref B: MNZ221060610025 Ref C: 2025-06-02T21:49:00Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:48 GMT" + "Mon, 02 Jun 2025 21:49:00 GMT" + ], + "Content-Length": [ + "1310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent-g2/Versions/19045.5737.250407\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNzEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent-g2/versions/19045.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQtZzIvdmVyc2lvbnMvMTkwNDUuNTg1NC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "827f07fc-4b12-46ee-90ca-c1aed2e0a7da" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c7e9c734-b395-4ee5-9e83-73d7cb0aa7cc" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12812,Microsoft.Compute/GetVMImageFromLocation30Min;73812" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "4a8db49a-6f71-47c7-876b-a6f5b391c146" + "466f95f1-07e9-4380-aed6-a3f192fae6be" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/93d6c8e9-114d-41b5-bd50-c02cb280ee8a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14620" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b4958d46-a91f-4e68-88e5-1fa8b8427513" + "6a33dd6f-22e6-477e-ba49-eda890ffa0e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012719Z:b4958d46-a91f-4e68-88e5-1fa8b8427513" + "EASTUS:20250602T214900Z:6a33dd6f-22e6-477e-ba49-eda890ffa0e5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EA8222C3FA8C47BFBE525FBAA8CD6850 Ref B: MNZ221060619029 Ref C: 2025-06-02T21:49:00Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:18 GMT" + "Mon, 02 Jun 2025 21:49:00 GMT" + ], + "Content-Length": [ + "1229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent-g2/Versions/19045.5854.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20170822?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwODIyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-ent-g2/versions/19045.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnQtZzIvdmVyc2lvbnMvMTkwNDUuNTg1OS4yNTA1MjU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c5f91539-9571-4313-bb57-14ecd6fea4d0" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5e29f66c-326a-4463-9467-5f588de972a5" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170822\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12811,Microsoft.Compute/GetVMImageFromLocation30Min;73811" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "3d7b7ee0-6ddb-445c-811b-bf1a74d0012e" - ], - "Cache-Control": [ - "no-cache" + "791f08bb-8431-49a1-8a93-560732f6fe19" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6a1e0837-30d6-4599-ad63-2b19520b8371" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "55ca2fb0-73bd-4587-a64c-ed7a0a387cac" + "ebb0f157-eafe-4a22-9fbf-83ed5e16389b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012649Z:55ca2fb0-73bd-4587-a64c-ed7a0a387cac" + "EASTUS:20250602T214901Z:ebb0f157-eafe-4a22-9fbf-83ed5e16389b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4CA43CDDFE444118B4CF06038D600C9A Ref B: MNZ221060619021 Ref C: 2025-06-02T21:49:01Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:48 GMT" + "Mon, 02 Jun 2025 21:49:00 GMT" + ], + "Content-Length": [ + "1229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-ent-g2/Versions/19045.5859.250525\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20170822?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwODIyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6731efec-7162-4989-b312-70bdf99f6cf3" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "31c5a04e-50f5-42ce-9661-eae6a24912f0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170822\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170822\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15890,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43890" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "42997bb9-f7cf-482b-84cd-5e140b653ea3" + "30952f15-bb9b-40b7-9807-e52aabf3380b" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/181f5827-1b17-49da-959b-8dacf0c2cc30" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14619" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f40572a5-565a-49d8-8551-a3287061e33f" + "3139f486-e4d6-456b-8526-b6c7848ee334" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012719Z:f40572a5-565a-49d8-8551-a3287061e33f" + "EASTUS:20250602T214901Z:3139f486-e4d6-456b-8526-b6c7848ee334" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7E93043E862A4A50838D6CC0C9CB2E2D Ref B: MNZ221060610031 Ref C: 2025-06-02T21:49:01Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:18 GMT" + "Mon, 02 Jun 2025 21:49:00 GMT" + ], + "Content-Length": [ + "1833" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn/Versions/19045.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn/Versions/19045.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn/Versions/19045.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn/Versions/19045.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn/Versions/19045.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn/Versions/19045.5859.250525\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwOTE4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn/versions/19045.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuL3ZlcnNpb25zLzE5MDQ1LjUzNzEuMjUwMTEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fc414d71-fcd9-4140-9161-51e12634dc31" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3d96c200-019a-461f-884f-19ee56d6694b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12810,Microsoft.Compute/GetVMImageFromLocation30Min;73810" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "eafcc184-2b35-43d5-9dae-c16d18d8df2f" - ], - "Cache-Control": [ - "no-cache" + "47c8bbe6-9cd8-4754-9a77-0bb6787ab2bb" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a6f6af6b-3510-447c-b4af-12bbca100092" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14832" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "bedc4688-05c3-4668-855e-6567f3d42722" + "4ec73239-4b83-4a13-9663-4d6bb6c5e2d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012649Z:bedc4688-05c3-4668-855e-6567f3d42722" + "EASTUS:20250602T214901Z:4ec73239-4b83-4a13-9663-4d6bb6c5e2d6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9125DD9D58A14730892CBED2E95BD873 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:49:01Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:49 GMT" + "Mon, 02 Jun 2025 21:49:00 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn/Versions/19045.5371.250112\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwOTE4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn/versions/19045.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuL3ZlcnNpb25zLzE5MDQ1LjU0ODcuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a2daacec-062a-4594-a103-998956567667" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1bb5332b-d486-455d-933b-414ca8c8792e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12809,Microsoft.Compute/GetVMImageFromLocation30Min;73809" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "08e0d20f-15d3-4959-b47f-9be8f8be80b1" + "37986b85-63c2-4689-b89f-af44c02c4f6c" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/134f5e7b-b83f-489c-8558-5bb1596a505d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14618" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f44852d6-5622-4cf2-82d4-de2d4d7c9a2a" + "3a490312-4085-4a6f-bfa8-7bc48a237e4c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012719Z:f44852d6-5622-4cf2-82d4-de2d4d7c9a2a" + "EASTUS2:20250602T214901Z:3a490312-4085-4a6f-bfa8-7bc48a237e4c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 578255265B5840E387BCC710FE16E42B Ref B: MNZ221060609019 Ref C: 2025-06-02T21:49:01Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:18 GMT" + "Mon, 02 Jun 2025 21:49:00 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn/Versions/19045.5487.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMDE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn/versions/19045.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuL3ZlcnNpb25zLzE5MDQ1LjU2MDguMjUwMzA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b651a479-c864-491d-a7f9-d7a1d7976b41" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "e3a8ec18-316e-4a9f-9f23-ce164020d21a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12808,Microsoft.Compute/GetVMImageFromLocation30Min;73808" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "9f146c38-1355-4d4d-88b3-81359e9bb180" - ], - "Cache-Control": [ - "no-cache" + "d482ea81-2055-43b8-8e86-a140f4850a61" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3ef2f725-b3f2-4dfe-aed8-841abb45389c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "e9ecd70c-7425-468a-b08a-d650e6d53fad" + "5d21eefe-4ad7-40ab-94e9-b4fea3b56285" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012649Z:e9ecd70c-7425-468a-b08a-d650e6d53fad" + "EASTUS2:20250602T214901Z:5d21eefe-4ad7-40ab-94e9-b4fea3b56285" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F599022FBE5F4F83B7D4763E35958292 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:49:01Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:49 GMT" + "Mon, 02 Jun 2025 21:49:01 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn/Versions/19045.5608.250305\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20171017?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMDE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn/versions/19045.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuL3ZlcnNpb25zLzE5MDQ1LjU3MzcuMjUwNDA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "517bbf2d-d790-4b9b-a6c1-e4888bcd2458" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "469426f1-4ee3-46e0-ab61-a83c52d9d9c0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171017\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20171017\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12807,Microsoft.Compute/GetVMImageFromLocation30Min;73807" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "bd8e5556-b5fc-4ac3-9e35-eaf88d85aa9e" + "db87b0c5-4654-4cff-ba87-3a11bf09f337" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5840f8c0-7526-43e1-86d9-52aa73461f4f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14617" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7ecc2bb0-4c93-4b61-8151-f4d956609feb" + "6213f099-17f5-450d-b992-0eb3458596d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012719Z:7ecc2bb0-4c93-4b61-8151-f4d956609feb" + "EASTUS2:20250602T214901Z:6213f099-17f5-450d-b992-0eb3458596d4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 12683DFA75D344A6AD485D674F17606C Ref B: MNZ221060619025 Ref C: 2025-06-02T21:49:01Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:18 GMT" + "Mon, 02 Jun 2025 21:49:01 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn/Versions/19045.5737.250407\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMTE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn/versions/19045.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuL3ZlcnNpb25zLzE5MDQ1LjU4NTQuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "99ee1687-b7ce-41f5-b2af-690fe74a9e90" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b2a6c8a1-02cb-42c3-af61-b694515eee95" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Pragma": [ + "no-cache" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12806,Microsoft.Compute/GetVMImageFromLocation30Min;73806" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "7cb4f31a-1eb4-417d-a6c1-80db89b3157e" + "a1e6a35e-8111-4800-ab92-e1bac77105e4" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/91b90dd9-7387-4b83-ae8f-7122ab019e1b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "4a1a6d65-b08c-4874-9a16-13946ade5f66" + "e3da0227-6435-46e9-93f7-873a14d8bee3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012649Z:4a1a6d65-b08c-4874-9a16-13946ade5f66" + "EASTUS2:20250602T214901Z:e3da0227-6435-46e9-93f7-873a14d8bee3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A5E7D002D15646D1BB47D2437D49948E Ref B: MNZ221060619025 Ref C: 2025-06-02T21:49:01Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:49 GMT" + "Mon, 02 Jun 2025 21:49:01 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn/Versions/19045.5854.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMTE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn/versions/19045.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuL3ZlcnNpb25zLzE5MDQ1LjU4NTkuMjUwNTI1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0ed1ee6e-a09f-4653-bcc3-b7a5e19ac1c1" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c084605c-26a5-4e4e-bbeb-3b63cc509e50" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12805,Microsoft.Compute/GetVMImageFromLocation30Min;73805" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "db31a8d8-0883-4418-adaf-46a913c9aba5" - ], - "Cache-Control": [ - "no-cache" + "be84fc1d-279c-46eb-bb3d-afc86a3ca09e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1554f8dd-8763-4f74-b6df-d0d334a10cb0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14616" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "1a422c36-283f-4220-a26b-1368ded36932" + "038cb442-1b01-4175-8a3b-5392ef0764f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012719Z:1a422c36-283f-4220-a26b-1368ded36932" + "EASTUS:20250602T214902Z:038cb442-1b01-4175-8a3b-5392ef0764f4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FBBAD620957145399F27C7B8E65E05BE Ref B: MNZ221060618037 Ref C: 2025-06-02T21:49:02Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:18 GMT" + "Mon, 02 Jun 2025 21:49:01 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn/Versions/19045.5859.250525\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20171217?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMjE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "44e01533-80a3-4012-846b-3d77f5ee8802" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b681c943-e184-4ea9-9b73-b6f03baced4f" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20171217\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15889,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43889" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "8abb8ca1-9ac9-477c-83fb-a085fcfcce62" + "fb2fad11-c873-4eee-a4f1-adc223aa21ce" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a03cf6a9-d013-4bd0-96ab-79ed3d5f1260" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14829" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a80fd78e-ea55-4bee-bee9-3c9cb9eb1e97" + "df35d77b-e3bc-4179-b85d-b04d669cee1f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012650Z:a80fd78e-ea55-4bee-bee9-3c9cb9eb1e97" + "EASTUS2:20250602T214902Z:df35d77b-e3bc-4179-b85d-b04d669cee1f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F95515019D494A6C8AE27945070DD7E5 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:49:02Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:49 GMT" + "Mon, 02 Jun 2025 21:49:01 GMT" + ], + "Content-Length": [ + "1851" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn-g2/Versions/19045.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn-g2/Versions/19045.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn-g2/Versions/19045.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn-g2/Versions/19045.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn-g2/Versions/19045.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn-g2/Versions/19045.5859.250525\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20171217?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMjE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn-g2/versions/19045.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuLWcyL3ZlcnNpb25zLzE5MDQ1LjUzNzEuMjUwMTEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1a5edbe5-2234-4ed6-974e-0604d066af6f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "90807493-901d-4674-9c97-7c2c63c9c64b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171217\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20171217\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12804,Microsoft.Compute/GetVMImageFromLocation30Min;73804" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "a5eeecb4-f08d-4c68-8007-db92af82d4f8" - ], - "Cache-Control": [ - "no-cache" + "54da6872-e620-4268-9c47-d881ae04a719" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/da854737-d235-4353-9013-8fcdc02218c5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14615" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "08d17a9e-fb10-43c0-ab05-8f3d094f9b5d" + "b6564d67-43f6-45a1-9f17-83fde5f9cdea" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012719Z:08d17a9e-fb10-43c0-ab05-8f3d094f9b5d" + "EASTUS2:20250602T214902Z:b6564d67-43f6-45a1-9f17-83fde5f9cdea" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 55E5896FB04740A9B167A8FC100C4D04 Ref B: MNZ221060608031 Ref C: 2025-06-02T21:49:02Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:19 GMT" + "Mon, 02 Jun 2025 21:49:01 GMT" + ], + "Content-Length": [ + "1311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn-g2/Versions/19045.5371.250112\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20180220?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwMjIwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn-g2/versions/19045.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuLWcyL3ZlcnNpb25zLzE5MDQ1LjU0ODcuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f38db58f-6542-4628-ae5d-137285f0cc65" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "eb3a5baa-8243-4f56-9dad-212d4bb3ce57" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180220\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12803,Microsoft.Compute/GetVMImageFromLocation30Min;73803" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "bc6cca10-c433-438d-9b43-0c87a2969062" + "a9bb739f-e4ac-4653-a1f3-cbcb5f747fe7" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e9352609-1394-4295-93e9-08fe1f345cff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "ef9284c2-2b67-4015-8e32-3e5ef2b750e3" + "e7a3b1d7-ee8d-477f-849b-7455a6865656" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012650Z:ef9284c2-2b67-4015-8e32-3e5ef2b750e3" + "EASTUS2:20250602T214902Z:e7a3b1d7-ee8d-477f-849b-7455a6865656" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 32DCEB80644C4FADACDC43CD92B241D1 Ref B: MNZ221060619045 Ref C: 2025-06-02T21:49:02Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:49 GMT" + "Mon, 02 Jun 2025 21:49:02 GMT" + ], + "Content-Length": [ + "1311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn-g2/Versions/19045.5487.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20180220?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwMjIwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn-g2/versions/19045.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuLWcyL3ZlcnNpb25zLzE5MDQ1LjU2MDguMjUwMzA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2cc728fb-2bff-44f7-b269-2e8e6a9f2cdc" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "7467db59-9c43-447f-8687-e7c85e92a419" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180220\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12802,Microsoft.Compute/GetVMImageFromLocation30Min;73802" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c21945f0-8f6f-4ab0-a78e-780b21d77c45" - ], - "Cache-Control": [ - "no-cache" + "759bdaad-ad44-4146-b18a-74362399611c" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/57ae62cc-67f4-42d0-86f4-565e6b655851" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14614" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "15d02668-e229-45d3-954e-ffe6c4672f91" + "0c625457-e392-4983-af4e-f9049e2b88dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012719Z:15d02668-e229-45d3-954e-ffe6c4672f91" + "EASTUS:20250602T214902Z:0c625457-e392-4983-af4e-f9049e2b88dd" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DCAA4EC0BD9F4EB69384F3138AD2157C Ref B: MNZ221060609047 Ref C: 2025-06-02T21:49:02Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:19 GMT" + "Mon, 02 Jun 2025 21:49:02 GMT" + ], + "Content-Length": [ + "1311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn-g2/Versions/19045.5608.250305\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwMzE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn-g2/versions/19045.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuLWcyL3ZlcnNpb25zLzE5MDQ1LjU3MzcuMjUwNDA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3d871664-9a3e-42cf-9398-41eb09e9f57c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b5c26be6-86d9-4256-9e6b-0c8616daf95c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12801,Microsoft.Compute/GetVMImageFromLocation30Min;73801" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2f80e68e-7e91-40e3-aba6-2544500b0ba6" + "c0b70c7b-eac1-415b-b4a6-366123b381a4" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6d55f51f-920f-4497-8ec1-35992c4a2e9e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c00ade34-2566-437c-a680-27dbf3828f86" + "80f8b6f5-b024-4cf0-9ed0-ba1940f99944" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012650Z:c00ade34-2566-437c-a680-27dbf3828f86" + "EASTUS2:20250602T214902Z:80f8b6f5-b024-4cf0-9ed0-ba1940f99944" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B01CE46683D4974A5F944E5C800FEDC Ref B: MNZ221060619053 Ref C: 2025-06-02T21:49:02Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:49 GMT" + "Mon, 02 Jun 2025 21:49:02 GMT" + ], + "Content-Length": [ + "1311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn-g2/Versions/19045.5737.250407\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwMzE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn-g2/versions/19045.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuLWcyL3ZlcnNpb25zLzE5MDQ1LjU4NTQuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c7761385-d0a5-4ba7-a413-1547212b8004" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "bff19802-4f7a-46f1-9be3-397e12149746" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12800,Microsoft.Compute/GetVMImageFromLocation30Min;73800" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2c3cf274-826a-46f0-a9bb-bf168b36118e" - ], - "Cache-Control": [ - "no-cache" + "5ecdf017-6c97-4be0-8c19-83d38de2071b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6150811c-e7ed-44bc-8de1-a839b5b7aca2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14613" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "3f7ef3b2-8a8d-4f18-bf9c-e4618d3a6f09" + "d6489776-0467-40a2-9a54-003e01d37a85" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012720Z:3f7ef3b2-8a8d-4f18-bf9c-e4618d3a6f09" + "EASTUS:20250602T214902Z:d6489776-0467-40a2-9a54-003e01d37a85" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F89C459CDE35440FB3AF60792E11A1E7 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:02Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:19 GMT" + "Mon, 02 Jun 2025 21:49:02 GMT" + ], + "Content-Length": [ + "1230" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn-g2/Versions/19045.5854.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNDEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-entn-g2/versions/19045.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1lbnRuLWcyL3ZlcnNpb25zLzE5MDQ1LjU4NTkuMjUwNTI1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "affe7660-0779-4e95-a6a4-c858b2353dc6" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a52a0f89-7d68-4654-8cd3-e9003114fec3" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12799,Microsoft.Compute/GetVMImageFromLocation30Min;73799" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "2e225c11-018f-48ff-9e5c-31d18ebb0fa9" + "e32505b9-6fc0-456c-ac80-69c39da5aa6e" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bd9a508c-9575-4ee1-b28b-422801e1baf3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e733d35f-fd3a-4ae2-8828-a50a03f64533" + "636d4291-04d1-4d2c-b8f1-c4c6ae85db66" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012650Z:e733d35f-fd3a-4ae2-8828-a50a03f64533" + "EASTUS:20250602T214903Z:636d4291-04d1-4d2c-b8f1-c4c6ae85db66" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F7C761D9643A425BAFEB7F2C93D39222 Ref B: MNZ221060609053 Ref C: 2025-06-02T21:49:02Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:50 GMT" + "Mon, 02 Jun 2025 21:49:02 GMT" + ], + "Content-Length": [ + "1230" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-entn-g2/Versions/19045.5859.250525\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNDEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c1f19ad2-ece5-4fca-b36c-4db8e8dae137" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "70660b1b-091b-4fdd-a4c8-44f21e3dc0ce" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15888,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43888" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "921cf09f-7271-41b0-ab28-f4df1d3d17ee" - ], - "Cache-Control": [ - "no-cache" + "9a38cc33-1d18-4742-9e41-56ab32ae337f" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f88e349e-331c-451a-a251-d9d3063818a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14612" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "d04a70a7-7b80-4d7f-83ca-6730348dc249" + "46b48bb4-9a18-4d23-a859-694c3300f241" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012720Z:d04a70a7-7b80-4d7f-83ca-6730348dc249" + "EASTUS2:20250602T214903Z:46b48bb4-9a18-4d23-a859-694c3300f241" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1EBFBAECAB3C4EF29A72417748FEBE7F Ref B: MNZ221060608033 Ref C: 2025-06-02T21:49:03Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:19 GMT" + "Mon, 02 Jun 2025 21:49:02 GMT" + ], + "Content-Length": [ + "1827" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro/Versions/19045.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro/Versions/19045.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro/Versions/19045.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro/Versions/19045.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro/Versions/19045.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro/Versions/19045.5859.250525\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNTEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro/versions/19045.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8vdmVyc2lvbnMvMTkwNDUuNTM3MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "12248ce9-55fc-44e9-b7fb-2c59f3c35f1f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "e61b1e06-daa9-4ae1-ad68-f0206b3167a4" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12798,Microsoft.Compute/GetVMImageFromLocation30Min;73798" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "daa38594-ae2d-47d7-a47d-4f2bec5b159c" + "d81d8a2a-c7d3-4ac1-a0ee-68e0bc8f7cb5" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1884b07e-1836-4dde-833a-2d84f14218bc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "9b0232f0-4df2-46da-aab3-5b62930f41bf" + "f71a5811-73fc-4a14-936a-30c640effcf4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012650Z:9b0232f0-4df2-46da-aab3-5b62930f41bf" + "EASTUS2:20250602T214903Z:f71a5811-73fc-4a14-936a-30c640effcf4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 83B610B8DF074A0D9D199A8329B8CADE Ref B: MNZ221060608049 Ref C: 2025-06-02T21:49:03Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:50 GMT" + "Mon, 02 Jun 2025 21:49:02 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro/Versions/19045.5371.250112\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/2016.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNTEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro/versions/19045.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8vdmVyc2lvbnMvMTkwNDUuNTQ4Ny4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a6596a6a-b2ab-4a60-b320-4f618db7c35e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3956926b-42a5-4068-ae79-ba7675c2a166" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/2016.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12797,Microsoft.Compute/GetVMImageFromLocation30Min;73797" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "25a21ea2-6766-451e-9af3-02565f81bb87" - ], - "Cache-Control": [ - "no-cache" + "9bf60154-e715-44ff-bf3c-2672ae4b5762" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f3cfeebe-a546-47fe-9339-0513e28bdce5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14611" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b1f02d74-2dba-4197-b0f9-5704b79212fc" + "d944050f-8af0-4e06-863a-38b90e32aecb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012720Z:b1f02d74-2dba-4197-b0f9-5704b79212fc" + "EASTUS:20250602T214903Z:d944050f-8af0-4e06-863a-38b90e32aecb" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D3891EB92CD641E6853BC58D702AFCE9 Ref B: MNZ221060609037 Ref C: 2025-06-02T21:49:03Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:19 GMT" + "Mon, 02 Jun 2025 21:49:03 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro/Versions/19045.5487.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro/versions/19045.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8vdmVyc2lvbnMvMTkwNDUuNTYwOC4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c4ec6b3b-33fe-4084-b591-b0f436cbe77e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "90278a3b-0727-4884-b344-20dad473fae1" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170411\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170411\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170619\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171026\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20171026\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171116\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20171116\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20171216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180220\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4848" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12796,Microsoft.Compute/GetVMImageFromLocation30Min;73796" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "a7cd491b-09cb-46ed-9f8d-659bdfbcffeb" + "b8301ead-0857-42f8-9c7c-59dbb2c418a1" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3a1fa714-a465-42bf-9843-ac0e87b37f25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f1091d04-eb5f-4e23-8f33-be0c16986a30" + "c2585e11-698d-42ea-adc3-32d342fd75d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012650Z:f1091d04-eb5f-4e23-8f33-be0c16986a30" + "EASTUS2:20250602T214903Z:c2585e11-698d-42ea-adc3-32d342fd75d8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 44554CE8203A4D39BE0FB26DF36817CB Ref B: MNZ221060609017 Ref C: 2025-06-02T21:49:03Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:50 GMT" + "Mon, 02 Jun 2025 21:49:02 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro/Versions/19045.5608.250305\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro/versions/19045.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8vdmVyc2lvbnMvMTkwNDUuNTczNy4yNTA0MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "16d8ac95-b3bf-4f2b-a034-41b1309a5f9c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "dc1ebb75-66d9-4aa3-a34b-86d7f004ff15" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170411\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170411\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170619\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170712\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170918\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171026\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20171026\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171116\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20171116\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20171216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180220\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "4848" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12795,Microsoft.Compute/GetVMImageFromLocation30Min;73795" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "07e5a960-35b9-4af3-bf96-88d744a4a869" - ], - "Cache-Control": [ - "no-cache" + "9c6af709-e114-4dae-8212-8a5a8c8f5d59" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9999f336-7e8e-450e-b2f7-b4b412031f56" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14610" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ceb7a039-a8d5-47de-b1ee-26032049e635" + "d7651fe0-5c42-42a5-bc41-6f640dd133aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012720Z:ceb7a039-a8d5-47de-b1ee-26032049e635" + "EASTUS2:20250602T214903Z:d7651fe0-5c42-42a5-bc41-6f640dd133aa" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F181FC9E8C474C9499DA442D40AFAB0B Ref B: MNZ221060608039 Ref C: 2025-06-02T21:49:03Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:19 GMT" + "Mon, 02 Jun 2025 21:49:02 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro/Versions/19045.5737.250407\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170406?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNDA2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro/versions/19045.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8vdmVyc2lvbnMvMTkwNDUuNTg1NC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2f7d4f67-5850-481f-81a6-670239ffd2b6" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f143a41e-c595-47e0-a3ed-100a047afe77" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170406\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12794,Microsoft.Compute/GetVMImageFromLocation30Min;73794" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "404fc622-4862-4e0a-95b8-9513cce027e8" + "88376f70-c92f-4041-9c98-592b081b2933" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3172358a-c657-4e4b-9785-a95f7892b75c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14823" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "7f9439d7-612f-421a-bfa0-1c5c3fc1312f" + "a2526f28-0aea-418f-8ba0-d1d93d8a7f29" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012651Z:7f9439d7-612f-421a-bfa0-1c5c3fc1312f" + "EASTUS:20250602T214903Z:a2526f28-0aea-418f-8ba0-d1d93d8a7f29" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B3125EE3DAE24A939738DABC44C78A77 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:49:03Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:50 GMT" + "Mon, 02 Jun 2025 21:49:03 GMT" + ], + "Content-Length": [ + "1013" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro/Versions/19045.5854.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170406?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNDA2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro/versions/19045.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8vdmVyc2lvbnMvMTkwNDUuNTg1OS4yNTA1MjU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "42b716bb-2b07-4f2d-a619-11406559453a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "6a6b153e-e4ed-48b1-9c88-5ba67ef60f19" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170406\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170406\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12793,Microsoft.Compute/GetVMImageFromLocation30Min;73793" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "c596a434-f37a-414e-aee6-d5f9bb2daf38" - ], - "Cache-Control": [ - "no-cache" + "549e1133-ff2f-4ce5-934e-47f186faf2b9" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/88f9a69b-e7ce-40e0-bc6d-d21dc7407508" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14609" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c0be2776-9839-4226-bbf7-51b1bba1af47" + "e7d94856-8a2e-4c81-a535-5d426bb0812b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012720Z:c0be2776-9839-4226-bbf7-51b1bba1af47" + "EASTUS:20250602T214903Z:e7d94856-8a2e-4c81-a535-5d426bb0812b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BAC8427912574E5B853B36DA3506EDB6 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:49:03Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:19 GMT" + "Mon, 02 Jun 2025 21:49:03 GMT" + ], + "Content-Length": [ + "1013" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro/Versions/19045.5859.250525\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170411?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNDExP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8tZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8003e2d7-8e0d-4058-a835-90868123dc28" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8e76078c-a6ef-4e94-84ab-d4b931364b7b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170411\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170411\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15887,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43887" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" ], "x-ms-request-id": [ - "61970127-8f2e-4df7-94ec-3fb205729cf3" + "55bf4717-fb4e-4537-b369-64d173956baa" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/af3ad968-5c51-49e8-8064-0548516c01f7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14822" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c1f7c93a-5e86-493c-8e68-b0419bb72fe1" + "9e05b608-f1bd-4f12-9a50-083167910431" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012651Z:c1f7c93a-5e86-493c-8e68-b0419bb72fe1" + "EASTUS2:20250602T214904Z:9e05b608-f1bd-4f12-9a50-083167910431" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2C00EE53C02C4133ADDC204F2A75B4F3 Ref B: MNZ221060608033 Ref C: 2025-06-02T21:49:03Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:50 GMT" + "Mon, 02 Jun 2025 21:49:03 GMT" + ], + "Content-Length": [ + "1845" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-g2/Versions/19045.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-g2/Versions/19045.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-g2/Versions/19045.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-g2/Versions/19045.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-g2/Versions/19045.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-g2/Versions/19045.5859.250525\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170411?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNDExP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-g2/versions/19045.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8tZzIvdmVyc2lvbnMvMTkwNDUuNTM3MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c0de4ecf-3c60-4bf5-8b3f-ea746f0d2cb4" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "237be9bf-2bbf-44f8-90fb-cdcde879469b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170411\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170411\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Pragma": [ + "no-cache" ], - "Expires": [ + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12792,Microsoft.Compute/GetVMImageFromLocation30Min;73792" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b1736384-7935-42c7-87a9-c3066e6b9eb5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f1e96f1d-5136-4e1d-9406-55bf4ff55a56" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "88fcec5a-cd03-48a1-9e97-d2fa1c384d93" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214904Z:88fcec5a-cd03-48a1-9e97-d2fa1c384d93" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 30C1DF5C186B4583B03E7B981CD8CE19 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:49:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:03 GMT" + ], + "Content-Length": [ + "1310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-g2/Versions/19045.5371.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-g2/versions/19045.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8tZzIvdmVyc2lvbnMvMTkwNDUuNTQ4Ny4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ab844920-1b0a-4530-8a84-85c26ba71b57" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12791,Microsoft.Compute/GetVMImageFromLocation30Min;73791" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3c0faaf5-80f4-4917-a4e4-03ea854a7497" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/26e4fba6-e809-4926-9a79-c464d5121b19" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5bfbec1f-660a-4541-a31a-2c35bd050b7a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214904Z:5bfbec1f-660a-4541-a31a-2c35bd050b7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3CF44B72C1E14A7EAFE763F7509328C8 Ref B: MNZ221060619025 Ref C: 2025-06-02T21:49:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:03 GMT" + ], + "Content-Length": [ + "1310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-g2/Versions/19045.5487.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-g2/versions/19045.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8tZzIvdmVyc2lvbnMvMTkwNDUuNTYwOC4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6f7b6790-0e36-4dda-9eb5-b91dc4c1ba63" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12790,Microsoft.Compute/GetVMImageFromLocation30Min;73790" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "27ba2156-0563-4dec-b7d2-8f96c4ab9f66" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d8d044b0-4d64-415d-b32a-101b4b9105eb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4e1e8765-5aaa-43dd-83e1-ff79c6673c57" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214904Z:4e1e8765-5aaa-43dd-83e1-ff79c6673c57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 984A28DF177F47BE8404C0F114C5A096 Ref B: MNZ221060608019 Ref C: 2025-06-02T21:49:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:04 GMT" + ], + "Content-Length": [ + "1310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-g2/Versions/19045.5608.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-g2/versions/19045.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8tZzIvdmVyc2lvbnMvMTkwNDUuNTczNy4yNTA0MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1457356c-16ef-4757-92af-1afeaaa71973" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12789,Microsoft.Compute/GetVMImageFromLocation30Min;73789" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e6f8bb03-bcda-4485-ae74-44b1b4badac6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3d61fdfd-c1eb-41e6-8e69-3adde81d799e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5cc2122c-37b4-4615-9a94-8a2eb4ee9685" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214904Z:5cc2122c-37b4-4615-9a94-8a2eb4ee9685" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E9CE66E9EF524C3393AF8302A4F9F72A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:49:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:04 GMT" + ], + "Content-Length": [ + "1310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-g2/Versions/19045.5737.250407\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-g2/versions/19045.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8tZzIvdmVyc2lvbnMvMTkwNDUuNTg1NC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b98444be-abec-4f1f-a655-4561957f7001" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12788,Microsoft.Compute/GetVMImageFromLocation30Min;73788" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e5bb81ac-5ee1-4130-8433-fef41821a18a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/14560ebd-b892-4112-bb4c-8bdcc263ef3b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "1fed7471-d270-4136-9e8b-514e717dc56c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214904Z:1fed7471-d270-4136-9e8b-514e717dc56c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A5538766651A4A26930017D46E801A29 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:49:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:04 GMT" + ], + "Content-Length": [ + "1229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-g2/Versions/19045.5854.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-g2/versions/19045.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8tZzIvdmVyc2lvbnMvMTkwNDUuNTg1OS4yNTA1MjU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ccf33550-fc4b-4c79-8893-aee54a8043c6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12787,Microsoft.Compute/GetVMImageFromLocation30Min;73787" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "5705ba74-f2da-45f2-9f61-5f8b45c65146" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0147d387-97d3-4a99-87eb-406b0540e83b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7cbd1e01-a8f6-4aa4-a6e7-25820e6ad356" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214905Z:7cbd1e01-a8f6-4aa4-a6e7-25820e6ad356" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7A524E65971A4CD59FD62AD7EF30DD75 Ref B: MNZ221060609031 Ref C: 2025-06-02T21:49:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:04 GMT" + ], + "Content-Length": [ + "1229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-g2/Versions/19045.5859.250525\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "24afa1e5-8018-4d6b-9ac4-b9027a7930e8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15886,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43886" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "599f5435-2369-46ea-8697-0ace2b4b5755" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6f721fa1-7266-413a-a56e-f03ad5536afe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5fba8463-229b-48e2-aa28-e4e0ec1b025d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214905Z:5fba8463-229b-48e2-aa28-e4e0ec1b025d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FCC788BE3D18497AB8FE54F653C0FD73 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:49:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:04 GMT" + ], + "Content-Length": [ + "1863" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn/Versions/19045.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn/Versions/19045.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn/Versions/19045.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn/Versions/19045.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn/Versions/19045.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn/Versions/19045.5859.250525\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn/versions/19045.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24vdmVyc2lvbnMvMTkwNDUuNTM3MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b82e9b35-8c20-42d6-b0bf-bf4402960937" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12786,Microsoft.Compute/GetVMImageFromLocation30Min;73786" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b2725d0f-44ca-41d7-ba69-951908093411" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/98e8bbbe-3e89-4493-9832-dad59a3f3cda" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cde8d829-c134-4837-8cef-89bdbba4dd29" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214905Z:cde8d829-c134-4837-8cef-89bdbba4dd29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2A7D84C005B64B20A76F37E03EDAFEF2 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:49:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:04 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn/Versions/19045.5371.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn/versions/19045.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24vdmVyc2lvbnMvMTkwNDUuNTQ4Ny4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "10b8cba8-2643-4706-b071-0db51131dc9d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12785,Microsoft.Compute/GetVMImageFromLocation30Min;73785" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0426f4be-b15c-441f-a22a-025c8a8d945c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/25ca8d85-c9df-4aec-9616-3c86910b934d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3f45fdb0-e1a5-4450-8920-101e6cf13a98" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214905Z:3f45fdb0-e1a5-4450-8920-101e6cf13a98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 778A101D1D5B4F47BE49420FCE599E5F Ref B: MNZ221060619033 Ref C: 2025-06-02T21:49:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:04 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn/Versions/19045.5487.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn/versions/19045.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24vdmVyc2lvbnMvMTkwNDUuNTYwOC4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "afc99070-aaeb-4466-acf1-4e49c85e3c84" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12784,Microsoft.Compute/GetVMImageFromLocation30Min;73784" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d0293381-a00d-4419-8d17-97a535fa5ea1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d27b2da6-f729-4d98-98f6-0c4c1aa3a1e9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "67bf6164-6238-48e9-a603-da156cfbebc9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214905Z:67bf6164-6238-48e9-a603-da156cfbebc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BA505E45607146DD87FAFE9877E4895E Ref B: MNZ221060608021 Ref C: 2025-06-02T21:49:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:04 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn/Versions/19045.5608.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn/versions/19045.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24vdmVyc2lvbnMvMTkwNDUuNTczNy4yNTA0MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8aa4d0ad-f951-4c81-b717-b26d890a117a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12783,Microsoft.Compute/GetVMImageFromLocation30Min;73783" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "7275d3ba-1774-4bd8-9c11-0822b7c4bc1b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2f93618f-7bbd-4416-8f68-096bdd36541b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4526cedd-12b9-4cfd-a805-34fc28dcd8c3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214905Z:4526cedd-12b9-4cfd-a805-34fc28dcd8c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1CFCCEC294F94497BE6F9AA959AA0444 Ref B: MNZ221060609031 Ref C: 2025-06-02T21:49:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:05 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn/Versions/19045.5737.250407\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn/versions/19045.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24vdmVyc2lvbnMvMTkwNDUuNTg1NC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "78e3cc31-e218-4ab8-9a07-02997ebcc74b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12782,Microsoft.Compute/GetVMImageFromLocation30Min;73782" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "03b41e29-2c26-4ae6-81db-c8468ecc6e76" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/34f126e5-d356-4daf-91f9-06c671803976" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "392704c2-bdb5-4f8d-96ea-ff1782d21021" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214905Z:392704c2-bdb5-4f8d-96ea-ff1782d21021" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CDC5B87E919943D2A04E7E79E8B4D86F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:49:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:05 GMT" + ], + "Content-Length": [ + "1019" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn/Versions/19045.5854.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn/versions/19045.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24vdmVyc2lvbnMvMTkwNDUuNTg1OS4yNTA1MjU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2a5e4e0c-baf3-419f-ae8d-415913ca4b3f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12781,Microsoft.Compute/GetVMImageFromLocation30Min;73781" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "070801b5-ec7f-4d43-8941-37499fc84ded" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/42416830-8fa5-4699-83d2-242160b98868" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9d1ec134-7682-495e-9ef5-49f3d5dfb3d2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214905Z:9d1ec134-7682-495e-9ef5-49f3d5dfb3d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ABECBE8B567E431CBD91E2440C90AB71 Ref B: MNZ221060609019 Ref C: 2025-06-02T21:49:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:04 GMT" + ], + "Content-Length": [ + "1019" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn/Versions/19045.5859.250525\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24tZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "aed21ddb-83db-443f-b717-69ac0d855867" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15885,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43885" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ca03afc0-06bb-4e46-943e-d04e7118fc48" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f906c53d-2c6e-42e7-a9df-76d430656a47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f3ae9c67-bab9-4f9d-b412-a0f7af4f713e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214906Z:f3ae9c67-bab9-4f9d-b412-a0f7af4f713e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6C329047A19E4C938296841C1621F35B Ref B: MNZ221060610031 Ref C: 2025-06-02T21:49:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:05 GMT" + ], + "Content-Length": [ + "1881" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn-g2/Versions/19045.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn-g2/Versions/19045.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn-g2/Versions/19045.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn-g2/Versions/19045.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn-g2/Versions/19045.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn-g2/Versions/19045.5859.250525\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn-g2/versions/19045.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24tZzIvdmVyc2lvbnMvMTkwNDUuNTM3MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e2b2616d-e143-459f-8f9c-12f6bcd038c3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12780,Microsoft.Compute/GetVMImageFromLocation30Min;73780" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "002bf199-6d22-46db-a5f7-83687cdf022a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6081903d-554b-4554-b9b6-505cff2fb2dc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "98e2077e-ae7f-4d4a-af41-91b9dd77163c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214906Z:98e2077e-ae7f-4d4a-af41-91b9dd77163c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 091C45C590AD4A0D8404EB659809C48C Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:05 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn-g2/Versions/19045.5371.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn-g2/versions/19045.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24tZzIvdmVyc2lvbnMvMTkwNDUuNTQ4Ny4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1ba57fd5-2e0b-4190-9a25-717bd36bd477" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12779,Microsoft.Compute/GetVMImageFromLocation30Min;73779" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ff91c127-b449-451d-b9d3-7cda872b32ee" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9ad8c470-9a4a-43cc-869b-411e18397ee1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ca05f5f7-4e00-44bd-af7c-f135d3645585" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214906Z:ca05f5f7-4e00-44bd-af7c-f135d3645585" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5DBA5AD78A0548AB86FC543C20318BE3 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:49:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:05 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn-g2/Versions/19045.5487.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn-g2/versions/19045.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24tZzIvdmVyc2lvbnMvMTkwNDUuNTYwOC4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "94f1adad-05f8-424a-bb8e-dc39e498df42" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12778,Microsoft.Compute/GetVMImageFromLocation30Min;73778" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "333bb115-7c02-47ff-9a37-78fbd1d84458" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a379f3ed-4b51-4092-8f69-bf7b758ee898" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d17e8733-3d30-4f06-ae43-f143eeb0ef89" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214906Z:d17e8733-3d30-4f06-ae43-f143eeb0ef89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0171F964FD414B749B24D7F33CCB3DBD Ref B: MNZ221060619037 Ref C: 2025-06-02T21:49:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:05 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn-g2/Versions/19045.5608.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn-g2/versions/19045.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24tZzIvdmVyc2lvbnMvMTkwNDUuNTczNy4yNTA0MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7e299192-acef-4dfd-bf60-4c48d4badfa9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12777,Microsoft.Compute/GetVMImageFromLocation30Min;73777" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "6261947c-79cb-4274-bc7e-f3ca4da0cf9f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6d7d27c6-a085-4de4-afc2-ca987f411255" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "948cdb3a-8e70-427b-be7a-f1c56053e53c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214906Z:948cdb3a-8e70-427b-be7a-f1c56053e53c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B23009F89F6435286F58B4569AE50DB Ref B: MNZ221060618021 Ref C: 2025-06-02T21:49:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:05 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn-g2/Versions/19045.5737.250407\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn-g2/versions/19045.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24tZzIvdmVyc2lvbnMvMTkwNDUuNTg1NC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "499b648a-65de-4da6-a6be-ec7257c9512e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12776,Microsoft.Compute/GetVMImageFromLocation30Min;73776" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ccd374cd-e4d3-4f7b-98a2-182cc65da0ba" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f56f735e-a543-4a94-bc39-58a49cfa15a6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1e429003-69a2-4197-abc5-0aa9eb49b0a0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214906Z:1e429003-69a2-4197-abc5-0aa9eb49b0a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 827633BACBF1415B9BEAA88312240952 Ref B: MNZ221060610045 Ref C: 2025-06-02T21:49:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:05 GMT" + ], + "Content-Length": [ + "1235" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn-g2/Versions/19045.5854.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pro-zh-cn-g2/versions/19045.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm8temgtY24tZzIvdmVyc2lvbnMvMTkwNDUuNTg1OS4yNTA1MjU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f12c459e-c8d1-4974-a195-04cf9664f1b6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12775,Microsoft.Compute/GetVMImageFromLocation30Min;73775" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "85ab1978-33e4-4dc1-a8b1-d7dcb60eca51" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3555110c-072d-4a37-b608-e993a23dc7e8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "b9f80e10-10b9-49b3-a5d0-85d85def1b13" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214906Z:b9f80e10-10b9-49b3-a5d0-85d85def1b13" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D139863044D0495C936C258A413BAF1D Ref B: MNZ221060618053 Ref C: 2025-06-02T21:49:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:06 GMT" + ], + "Content-Length": [ + "1235" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pro-zh-cn-g2/Versions/19045.5859.250525\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cd713292-8c08-4d3a-a61d-29a56d1eea13" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15884,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43884" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "4172f2b1-9701-4f50-8a54-d36eea14f717" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c904f834-f4fe-44bb-a2ac-f5db40166c1e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ccc5c973-135d-4c58-b64a-47efc1dbd12c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214906Z:ccc5c973-135d-4c58-b64a-47efc1dbd12c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 806B18694D9440D886EBCE86BB8A2AEA Ref B: MNZ221060618039 Ref C: 2025-06-02T21:49:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:06 GMT" + ], + "Content-Length": [ + "1833" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron/Versions/19045.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron/Versions/19045.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron/Versions/19045.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron/Versions/19045.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron/Versions/19045.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron/Versions/19045.5859.250525\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron/versions/19045.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uL3ZlcnNpb25zLzE5MDQ1LjUzNzEuMjUwMTEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a627e655-c274-469b-a8a0-96ada12bd063" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12774,Microsoft.Compute/GetVMImageFromLocation30Min;73774" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "45b2379b-165f-44d3-a947-0fa77998513c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/54673a84-b19e-452b-83e5-d83269902f0e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f4622b6a-d01e-47f7-8aa4-789b3f63aed4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214906Z:f4622b6a-d01e-47f7-8aa4-789b3f63aed4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ED4605098A2A4043B828B7E8CF59D55E Ref B: MNZ221060609039 Ref C: 2025-06-02T21:49:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:06 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron/Versions/19045.5371.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron/versions/19045.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uL3ZlcnNpb25zLzE5MDQ1LjU0ODcuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8410939c-e7ea-4fd5-b347-85598fe0d37f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12773,Microsoft.Compute/GetVMImageFromLocation30Min;73773" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "fbe94006-6a51-4027-891b-76cec482e9cf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d6f0c305-f157-4f10-a782-b8402a014866" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b435c37f-a596-4a4b-b52f-257ead0ecc3c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214907Z:b435c37f-a596-4a4b-b52f-257ead0ecc3c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 223E4C4B9ED046E8A968A4710A655D54 Ref B: MNZ221060609007 Ref C: 2025-06-02T21:49:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:06 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron/Versions/19045.5487.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron/versions/19045.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uL3ZlcnNpb25zLzE5MDQ1LjU2MDguMjUwMzA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6bcd2c50-b844-416b-a2b8-540e5952b686" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12772,Microsoft.Compute/GetVMImageFromLocation30Min;73772" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "92d9ee79-157b-4def-af55-68fa2731c6f4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/47f56555-648d-4456-80b8-0ba94c8fa0a0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d981ecb7-3f79-42dc-9cb7-ad0e15e3724c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214907Z:d981ecb7-3f79-42dc-9cb7-ad0e15e3724c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 35F48A99F265485C90561FFCF0784BE4 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:49:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:06 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron/Versions/19045.5608.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron/versions/19045.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uL3ZlcnNpb25zLzE5MDQ1LjU3MzcuMjUwNDA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6c289f36-da73-4e06-ba8e-4089a18c0a19" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12771,Microsoft.Compute/GetVMImageFromLocation30Min;73771" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "4c453019-3122-465d-a176-77c76e89412a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f3e7222d-e827-45af-96b5-6ce616ae4598" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bd2b3e17-7b9d-4cf2-ac84-75ba7675903a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214907Z:bd2b3e17-7b9d-4cf2-ac84-75ba7675903a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3CDABC1CA29E4F4CBD49E26C68A72284 Ref B: MNZ221060618027 Ref C: 2025-06-02T21:49:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:06 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron/Versions/19045.5737.250407\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron/versions/19045.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uL3ZlcnNpb25zLzE5MDQ1LjU4NTQuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1b73d911-3b02-4617-a4c5-c4a17574c187" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12770,Microsoft.Compute/GetVMImageFromLocation30Min;73770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "9d25d189-9d05-40dc-a530-9b2ed6daf30b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/316b2881-fe0d-4483-a6f7-42f2d84503fd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9658acd9-b4d3-4fa1-b86e-3a2f83357834" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214907Z:9658acd9-b4d3-4fa1-b86e-3a2f83357834" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1F379A58772C4206A382EE975D20B284 Ref B: MNZ221060619011 Ref C: 2025-06-02T21:49:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:07 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron/Versions/19045.5854.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron/versions/19045.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uL3ZlcnNpb25zLzE5MDQ1LjU4NTkuMjUwNTI1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c50a4e8c-28bd-431a-acf9-f5e34d65bbe7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12769,Microsoft.Compute/GetVMImageFromLocation30Min;73769" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f22c789d-e490-424b-a22f-1d026ddb4997" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/56cfdb5a-b301-4733-8f08-15872c02c435" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "71dde79d-fa70-43b0-b513-4cfcd4bcecea" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214907Z:71dde79d-fa70-43b0-b513-4cfcd4bcecea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 98196A279BDE4A5DB1A5BA1DC5242D50 Ref B: MNZ221060610029 Ref C: 2025-06-02T21:49:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:07 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron/Versions/19045.5859.250525\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fc93881d-c120-4658-8582-81ddfb941610" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15883,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43883" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "8121b70f-0202-488a-8fde-a10a24c4dcff" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1f98b38b-224b-4421-be97-eb507e4d0711" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2ffb67aa-b0f9-4ca1-aa9d-52bce5a537ce" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214907Z:2ffb67aa-b0f9-4ca1-aa9d-52bce5a537ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C80046B3F15F4CE98D73EC6FBC2643F3 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:49:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:07 GMT" + ], + "Content-Length": [ + "1851" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron-g2/Versions/19045.5371.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron-g2/Versions/19045.5487.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron-g2/Versions/19045.5608.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron-g2/Versions/19045.5737.250407\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron-g2/Versions/19045.5854.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron-g2/Versions/19045.5859.250525\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron-g2/versions/19045.5371.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uLWcyL3ZlcnNpb25zLzE5MDQ1LjUzNzEuMjUwMTEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "567ff04f-295b-4871-962f-8bbe7f9448e4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12768,Microsoft.Compute/GetVMImageFromLocation30Min;73768" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e283b373-4a5d-452c-b87f-41fa3a4684c8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/46dba92b-1efc-4348-93cd-4ce7268c949c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0473288f-c09b-4f2b-8830-48054fd2defc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214907Z:0473288f-c09b-4f2b-8830-48054fd2defc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2DE5C80A21CC40FB8B028CF1BEEA7855 Ref B: MNZ221060610035 Ref C: 2025-06-02T21:49:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:07 GMT" + ], + "Content-Length": [ + "1311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron-g2/Versions/19045.5371.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron-g2/versions/19045.5487.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uLWcyL3ZlcnNpb25zLzE5MDQ1LjU0ODcuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e41c2afa-e957-4492-9b24-ff6009b895fa" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12767,Microsoft.Compute/GetVMImageFromLocation30Min;73767" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d7067289-7b42-4dca-9a03-b1f877df70fd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6a205dd3-2e77-4c1b-ac7b-920c6f9e565d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "11f77243-18de-480e-83ba-0ca46b760843" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214907Z:11f77243-18de-480e-83ba-0ca46b760843" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ACE91B1811B64E6BAC7544485939DDAC Ref B: MNZ221060618029 Ref C: 2025-06-02T21:49:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:07 GMT" + ], + "Content-Length": [ + "1311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron-g2/Versions/19045.5487.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron-g2/versions/19045.5608.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uLWcyL3ZlcnNpb25zLzE5MDQ1LjU2MDguMjUwMzA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4d416c00-9a60-4822-b3cf-f7661394a2dc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12766,Microsoft.Compute/GetVMImageFromLocation30Min;73766" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "bc7ee3a7-f03e-474f-9be7-785c07b7b82a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8c4414e4-f5a0-46ba-9264-58dd5cdac447" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c24ed217-7b34-465c-9c77-db2d916a68cb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214907Z:c24ed217-7b34-465c-9c77-db2d916a68cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F461A6871224F2BB502ED82D3542B50 Ref B: MNZ221060609035 Ref C: 2025-06-02T21:49:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:07 GMT" + ], + "Content-Length": [ + "1311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron-g2/Versions/19045.5608.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron-g2/versions/19045.5737.250407?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uLWcyL3ZlcnNpb25zLzE5MDQ1LjU3MzcuMjUwNDA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f70d23cd-69a8-44da-a5d2-961e15b95c80" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12765,Microsoft.Compute/GetVMImageFromLocation30Min;73765" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ff114047-6425-49c5-a656-ed7ffde70bb7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9544171d-aa49-4952-84b0-b3b78fba8048" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "68ebc888-1b98-4e96-a998-3988e2588ca5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214907Z:68ebc888-1b98-4e96-a998-3988e2588ca5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CE9C92F2344D404AB8C474D9085BD44F Ref B: MNZ221060619017 Ref C: 2025-06-02T21:49:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:07 GMT" + ], + "Content-Length": [ + "1311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron-g2/Versions/19045.5737.250407\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron-g2/versions/19045.5854.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uLWcyL3ZlcnNpb25zLzE5MDQ1LjU4NTQuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c99bbf0d-be13-4524-b644-b567814cd823" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12764,Microsoft.Compute/GetVMImageFromLocation30Min;73764" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b3948c18-e023-4f65-a293-ed71c6d02b50" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d3cc1fed-7d0e-4b02-9cc3-37ea17c86b40" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fbba715d-cf2e-41d3-ae43-11d054de877b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214908Z:fbba715d-cf2e-41d3-ae43-11d054de877b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F1E2596DD6C74136BE80752AEDDA8069 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:49:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:07 GMT" + ], + "Content-Length": [ + "1230" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron-g2/Versions/19045.5854.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/Windows-10/skus/win10-22h2-pron-g2/versions/19045.5859.250525?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzLTEwL3NrdXMvd2luMTAtMjJoMi1wcm9uLWcyL3ZlcnNpb25zLzE5MDQ1LjU4NTkuMjUwNTI1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a6dfe17f-2528-4d36-b405-f83d5edf26e2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12763,Microsoft.Compute/GetVMImageFromLocation30Min;73763" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e768d069-d5dc-4500-84a7-e87b56eb30d0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bcfa9a64-d39e-4bc4-a875-533702eb32c8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "398d4f4f-5096-40ad-94a4-380acefdd685" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214908Z:398d4f4f-5096-40ad-94a4-380acefdd685" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9727630AEC9C40D48AD4F419AE2AF7A3 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:49:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:07 GMT" + ], + "Content-Length": [ + "1230" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5859.250525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/Windows-10/Skus/win10-22h2-pron-g2/Versions/19045.5859.250525\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-10-20h2-vhd-client-prod-stage/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTEwLTIwaDItdmhkLWNsaWVudC1wcm9kLXN0YWdlL3NrdXM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "84665def-865a-4c2f-a9ba-891811f6c7df" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9997,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29997" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "14201112-1a54-451d-91b0-7160ad00d355" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c0a01ba1-e2ba-441a-8aed-97ff58d09389" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9028e68c-99b8-4537-80e8-e0fabca66fee" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214908Z:9028e68c-99b8-4537-80e8-e0fabca66fee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2D701441062E4FED878A9797C23614B0 Ref B: MNZ221060619029 Ref C: 2025-06-02T21:49:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:07 GMT" + ], + "Content-Length": [ + "2119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-ent-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-10-20h2-vhd-client-prod-stage/Skus/20h2-ent-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-entn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-10-20h2-vhd-client-prod-stage/Skus/20h2-entn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-pro-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-10-20h2-vhd-client-prod-stage/Skus/20h2-pro-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-pro-zh-cn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-10-20h2-vhd-client-prod-stage/Skus/20h2-pro-zh-cn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-pron-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-10-20h2-vhd-client-prod-stage/Skus/20h2-pron-g2\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-10-20h2-vhd-client-prod-stage/skus/20h2-ent-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTEwLTIwaDItdmhkLWNsaWVudC1wcm9kLXN0YWdlL3NrdXMvMjBoMi1lbnQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f7cdacd9-1a01-4a54-bc1e-f9f1ec0a2755" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15882,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43882" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "41e421bc-955a-4bae-9e9b-b7d19096e74b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4f241b8a-3df2-4368-9d3e-e5ae6af0c7dc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2cbc4feb-2dd3-4bcc-b198-2ab6bb3ef29b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214908Z:2cbc4feb-2dd3-4bcc-b198-2ab6bb3ef29b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A1BB7AC86D5141EAA047EB31563B4F94 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:49:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:08 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-10-20h2-vhd-client-prod-stage/skus/20h2-entn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTEwLTIwaDItdmhkLWNsaWVudC1wcm9kLXN0YWdlL3NrdXMvMjBoMi1lbnRuLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5795057f-d95d-4594-ac68-1df01966e8e3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15881,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43881" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "2ea9664c-c691-442b-9125-ce5a723ba564" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b9a40ceb-1184-4d9b-9615-296b5df8a4fb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7de5155a-90bc-428d-9d4c-44347a711b6a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214908Z:7de5155a-90bc-428d-9d4c-44347a711b6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4017D769BB3A4AA6A8B11EE900E031C0 Ref B: MNZ221060608037 Ref C: 2025-06-02T21:49:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:08 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-10-20h2-vhd-client-prod-stage/skus/20h2-pro-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTEwLTIwaDItdmhkLWNsaWVudC1wcm9kLXN0YWdlL3NrdXMvMjBoMi1wcm8tZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "59d26c2f-8723-46e3-8720-21b5ea86cc4f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15880,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43880" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "de8696b1-6037-47e1-a38d-1a7d4dee79d2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8af58db1-ea46-4471-b2fd-999035e5affb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "791b6170-f09f-4cff-afbe-8d491806b7d3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214908Z:791b6170-f09f-4cff-afbe-8d491806b7d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6D39FF6AF7AF433A84414C58C0ECB9ED Ref B: MNZ221060610011 Ref C: 2025-06-02T21:49:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:07 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-10-20h2-vhd-client-prod-stage/skus/20h2-pro-zh-cn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTEwLTIwaDItdmhkLWNsaWVudC1wcm9kLXN0YWdlL3NrdXMvMjBoMi1wcm8temgtY24tZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4b9d68c5-2c80-4d86-8fbf-311e6f998df1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15879,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43879" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "76139f48-c058-4e8d-a8a0-841bb18a8796" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e4a307dc-a8cc-4375-a240-9a19941c66f6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9016fa0e-1778-4c49-a0fc-c8a56d387df7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214908Z:9016fa0e-1778-4c49-a0fc-c8a56d387df7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 17102731586140A8AC72844947B414DE Ref B: MNZ221060608039 Ref C: 2025-06-02T21:49:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:07 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-10-20h2-vhd-client-prod-stage/skus/20h2-pron-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTEwLTIwaDItdmhkLWNsaWVudC1wcm9kLXN0YWdlL3NrdXMvMjBoMi1wcm9uLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "119071c0-ec48-407c-9445-cb83461718b1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15878,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43878" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "6edc8908-1593-4592-8029-c090d8851042" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/16cb5989-ca20-4d55-956d-48969589910f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b25bc643-b960-47b8-9f71-2902e84457c8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214908Z:b25bc643-b960-47b8-9f71-2902e84457c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 75DAFA61608249ADA16531AF5DE1F610 Ref B: MNZ221060619031 Ref C: 2025-06-02T21:49:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:08 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "de2ebf52-e185-474d-9241-ffb713f0de98" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9996,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d81d63a1-d6b5-40c1-b743-0307627e2241" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/42dd8f9b-1ad4-4b66-a16d-9b67138d1371" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1ba23eb3-7f4e-4806-a924-c899d98a081f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214909Z:1ba23eb3-7f4e-4806-a924-c899d98a081f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41393A58FDEA44E98C2D4726CCD970BF Ref B: MNZ221060618045 Ref C: 2025-06-02T21:49:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:08 GMT" + ], + "Content-Length": [ + "7231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-21h2-avd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-21h2-avd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-21h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-21h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-21h2-pro-zh-cn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-21h2-pro-zh-cn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-22h2-avd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-avd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-22h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-22h2-entn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-entn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-avd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-avd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-entn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-entn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-pro-zh-cn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro-zh-cn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-pron\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pron\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-24h2-avd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-24h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-24h2-entn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-24h2-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-24h2-pro-zh-cn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-24h2-pron\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-21h2-avd/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjFoMi1hdmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "857c69dd-9cde-432a-a614-42dd765b2d05" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15877,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43877" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f213b8c5-4e78-4894-b192-4ac7a6e4567f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/abc2654e-252f-47b8-aa72-c0f87b4762ca" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4636c194-36fd-4fdb-a950-891586f2c2e3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214909Z:4636c194-36fd-4fdb-a950-891586f2c2e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 78862CAE0B744CB3B7A2488BDF057801 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:49:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:08 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.1100.221015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-21h2-avd/Versions/22000.1100.221015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.739.220608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-21h2-avd/Versions/22000.739.220608\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-21h2-avd/versions/22000.1100.221015?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjFoMi1hdmQvdmVyc2lvbnMvMjIwMDAuMTEwMC4yMjEwMTU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b30cec6c-9f31-493c-a025-20ee4b1f2eed" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12762,Microsoft.Compute/GetVMImageFromLocation30Min;73762" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "49f530f2-7543-4920-bb08-8a297bfe15e8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0b01fa82-9b22-4f76-a2d1-cabdd62555f3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1542621a-3ada-4648-94bd-9d77b9391304" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214909Z:1542621a-3ada-4648-94bd-9d77b9391304" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6ABC42A8BD2D4C73B5B300C0EB237CEF Ref B: MNZ221060618009 Ref C: 2025-06-02T21:49:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:09 GMT" + ], + "Content-Length": [ + "1088" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.1100.221015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-21h2-avd/Versions/22000.1100.221015\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-21h2-avd/versions/22000.739.220608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjFoMi1hdmQvdmVyc2lvbnMvMjIwMDAuNzM5LjIyMDYwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9d86e09e-a81e-4449-a029-384c986edca7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12761,Microsoft.Compute/GetVMImageFromLocation30Min;73761" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f20c6774-089b-450c-9703-16d784ffdc51" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4a141654-7c92-4403-ba07-0bde28b90d7d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dea75cf2-fdf6-40f4-972d-169980219cba" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214909Z:dea75cf2-fdf6-40f4-972d-169980219cba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7DFCC382A06C43B3B31CC132C08BD58A Ref B: MNZ221060608035 Ref C: 2025-06-02T21:49:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:09 GMT" + ], + "Content-Length": [ + "1086" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.739.220608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-21h2-avd/Versions/22000.739.220608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-21h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjFoMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "749d5e4c-7383-4ea8-8f2c-fde89195012a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15876,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43876" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "561ae8e6-94d0-4df5-9aa4-25dbb6990067" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e32216bd-2f80-46b3-880b-1a341b65bc11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8ca33538-fc20-43e5-9c78-a10edd5ef905" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214909Z:8ca33538-fc20-43e5-9c78-a10edd5ef905" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B51C094A3D7243458A9A4B41B7FFB017 Ref B: MNZ221060609029 Ref C: 2025-06-02T21:49:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:09 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.1100.221015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-21h2-ent/Versions/22000.1100.221015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.739.220608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-21h2-ent/Versions/22000.739.220608\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-21h2-ent/versions/22000.1100.221015?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjFoMi1lbnQvdmVyc2lvbnMvMjIwMDAuMTEwMC4yMjEwMTU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5e49e831-201b-4e0e-9170-5d4611330c20" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12760,Microsoft.Compute/GetVMImageFromLocation30Min;73760" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3e8fa3eb-39d5-4819-946b-17d6e73ffa50" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9984c9f2-282f-4b46-a8d4-b4c15bbebc14" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "59c69838-d8f2-4c32-b5b3-94cec8cb742a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214910Z:59c69838-d8f2-4c32-b5b3-94cec8cb742a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 418763014F00465FB6A3B520D53EFE05 Ref B: MNZ221060610049 Ref C: 2025-06-02T21:49:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:09 GMT" + ], + "Content-Length": [ + "1088" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.1100.221015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-21h2-ent/Versions/22000.1100.221015\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-21h2-ent/versions/22000.739.220608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjFoMi1lbnQvdmVyc2lvbnMvMjIwMDAuNzM5LjIyMDYwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c3ec856b-4f0d-4093-9221-cddc26f5bdcd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12759,Microsoft.Compute/GetVMImageFromLocation30Min;73759" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "583d31fc-06ad-4f99-8ced-5dbab9290ed8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1ac71f77-724a-4794-b1ba-0e10b1d90c06" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8367cc7b-cb2d-455c-aaf1-86aa100bb20e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214910Z:8367cc7b-cb2d-455c-aaf1-86aa100bb20e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C0550EB21B18426FAAF7981BEBC4A221 Ref B: MNZ221060610045 Ref C: 2025-06-02T21:49:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:09 GMT" + ], + "Content-Length": [ + "1086" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.739.220608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-21h2-ent/Versions/22000.739.220608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-21h2-pro-zh-cn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjFoMi1wcm8temgtY24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "deefbdc3-2c00-42de-8dc7-b40a984400c6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15875,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43875" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "66de0331-17ce-4d76-84a2-d65b10d4ed9f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d7648e99-41a2-4f5d-b781-ac8ef0965b81" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ea100311-0f8e-4b47-872e-b130a9094d4e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214910Z:ea100311-0f8e-4b47-872e-b130a9094d4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 76C5898AD7D44E31888D153331293873 Ref B: MNZ221060619047 Ref C: 2025-06-02T21:49:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:10 GMT" + ], + "Content-Length": [ + "313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.1100.221015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-21h2-pro-zh-cn/Versions/22000.1100.221015\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-21h2-pro-zh-cn/versions/22000.1100.221015?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjFoMi1wcm8temgtY24vdmVyc2lvbnMvMjIwMDAuMTEwMC4yMjEwMTU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "01befea4-fe0e-478c-bf69-065c6820b796" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12758,Microsoft.Compute/GetVMImageFromLocation30Min;73758" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ef3b7c06-4ae0-4d99-b873-b683da6cdee4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/734942db-781d-497b-9a46-754d211bedaf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7447eee8-6927-42d7-b790-b8715a8eec2c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214910Z:7447eee8-6927-42d7-b790-b8715a8eec2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DEBC7B2026324340B2216307214F75F3 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:49:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:09 GMT" + ], + "Content-Length": [ + "1178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.1100.221015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-21h2-pro-zh-cn/Versions/22000.1100.221015\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-avd/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1hdmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a97059e8-77a0-4dcb-be6f-aa7ef79b7e55" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15874,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43874" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "a1b29ecb-34e6-44a4-bbef-364953f3edf3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b10ad334-7990-4f42-a97b-627cdc686fb1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "3dcf5f2a-0644-4138-a54a-e55ec2ae477e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214910Z:3dcf5f2a-0644-4138-a54a-e55ec2ae477e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5A36F9079702436C98264DAD5409D4EC Ref B: MNZ221060610009 Ref C: 2025-06-02T21:49:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:09 GMT" + ], + "Content-Length": [ + "1523" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-avd/Versions/22621.4751.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-avd/Versions/22621.4890.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-avd/Versions/22621.5039.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-avd/Versions/22621.5192.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-avd/Versions/22621.5335.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-avd/versions/22621.4751.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1hdmQvdmVyc2lvbnMvMjI2MjEuNDc1MS4yNTAxMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8dbdb710-e638-477f-8bbd-b82bd674d99f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12757,Microsoft.Compute/GetVMImageFromLocation30Min;73757" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "bf2d605d-4dfb-495c-91a1-cd1efdd1044d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8c6021dd-c4ea-4934-b787-599c31f69d74" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e91a6fff-bb75-45bb-b3c7-7ef821c548ef" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214910Z:e91a6fff-bb75-45bb-b3c7-7ef821c548ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 150FA27B9C4E4B4FB46C88F7BDBDCDD1 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:49:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:10 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-avd/Versions/22621.4751.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-avd/versions/22621.4890.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1hdmQvdmVyc2lvbnMvMjI2MjEuNDg5MC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8e804e5f-3de3-4987-b57f-338e30628928" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12756,Microsoft.Compute/GetVMImageFromLocation30Min;73756" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "2ee8cabf-6702-4136-8b77-cd958d9e6cc5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3a3cd116-6348-4431-aaf1-4da8c880fda4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e444ddaf-ac3c-4244-ae7b-ebe4ad73f8c2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214910Z:e444ddaf-ac3c-4244-ae7b-ebe4ad73f8c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1D388B982204426D81FEB2BEF231F1B6 Ref B: MNZ221060608021 Ref C: 2025-06-02T21:49:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:09 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-avd/Versions/22621.4890.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-avd/versions/22621.5039.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1hdmQvdmVyc2lvbnMvMjI2MjEuNTAzOS4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "326fef63-939c-4bcc-a98a-ccf088ec80a5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12755,Microsoft.Compute/GetVMImageFromLocation30Min;73755" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "5f1095be-d7d0-4b30-a368-9203a26cdc4f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0f0a6084-8a1a-49eb-affc-fd551dae9b6f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d8b72508-a603-4bac-a4a3-e92d0ac68580" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214910Z:d8b72508-a603-4bac-a4a3-e92d0ac68580" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EFE8101630BD48A187E09CB232A79661 Ref B: MNZ221060609027 Ref C: 2025-06-02T21:49:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:10 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-avd/Versions/22621.5039.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-avd/versions/22621.5192.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1hdmQvdmVyc2lvbnMvMjI2MjEuNTE5Mi4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "79c815a7-53d5-45c2-beb0-4ac9aa2dc263" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12754,Microsoft.Compute/GetVMImageFromLocation30Min;73754" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "859b3268-bf80-4f16-bd1d-3f8fca3a8d21" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/73661783-f4ad-4c96-8e4a-eec607fe7e38" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "287bf089-5d8d-4332-ad0b-d8dbca957780" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214910Z:287bf089-5d8d-4332-ad0b-d8dbca957780" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 177C598616D247C28CCCFC4DD122F463 Ref B: MNZ221060609023 Ref C: 2025-06-02T21:49:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:10 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-avd/Versions/22621.5192.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-avd/versions/22621.5335.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1hdmQvdmVyc2lvbnMvMjI2MjEuNTMzNS4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7c10b808-a28a-4ced-8dc9-5cf799186e6f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12753,Microsoft.Compute/GetVMImageFromLocation30Min;73753" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "9b5854b5-40a9-4ffd-ba91-fc97ab4f3064" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b41988c4-2977-4aee-bbe8-b90fdd57c787" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8d450846-92a3-4725-8ff2-9cde5ccc24b4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214911Z:8d450846-92a3-4725-8ff2-9cde5ccc24b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 95F4A5756F934323A95EF6FAA9899D70 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:49:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:10 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-avd/Versions/22621.5335.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0d78afd2-7849-4405-a932-bc610201e2b6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15873,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43873" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "a5f2ecf7-d9a9-46f4-ba87-20b6c1faa75a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/68128267-90a0-4dca-aff0-1166051bfe98" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1de5c2d9-4467-469a-a7e8-d35071a3f84e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214911Z:1de5c2d9-4467-469a-a7e8-d35071a3f84e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C80C959EE3504121ACF5CA6664DB0659 Ref B: MNZ221060610035 Ref C: 2025-06-02T21:49:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:10 GMT" + ], + "Content-Length": [ + "1825" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-ent/Versions/22621.4751.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-ent/Versions/22621.4890.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-ent/Versions/22621.5039.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-ent/Versions/22621.5192.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-ent/Versions/22621.5335.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.674.221008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-ent/Versions/22621.674.221008\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-ent/versions/22621.4751.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1lbnQvdmVyc2lvbnMvMjI2MjEuNDc1MS4yNTAxMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d2fe200a-cc45-4f97-ac15-3353f7c87796" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12752,Microsoft.Compute/GetVMImageFromLocation30Min;73752" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e8458a26-9918-4e8b-a12d-0cb54d11ef04" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3eaa3895-493c-4bc9-bd8b-227a6ca584ee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "256c6dcd-548e-420c-b8f7-67183a701c48" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214911Z:256c6dcd-548e-420c-b8f7-67183a701c48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8822A1050FE74D24938DE0448E0EFC53 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:49:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:10 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-ent/Versions/22621.4751.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-ent/versions/22621.4890.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1lbnQvdmVyc2lvbnMvMjI2MjEuNDg5MC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1a0d5a4e-ffa8-4c2f-a83e-f8050602ca46" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12751,Microsoft.Compute/GetVMImageFromLocation30Min;73751" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b5ab5dac-ea32-4977-97ef-2fed3713bed9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dbaa832d-d622-4ceb-aff4-aadf04a4b691" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6ae9ad2a-2d18-4d66-b402-dc78ab308aee" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214911Z:6ae9ad2a-2d18-4d66-b402-dc78ab308aee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C6FDE613BBFE4A528E0326ACF5BDCCD7 Ref B: MNZ221060619049 Ref C: 2025-06-02T21:49:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:11 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-ent/Versions/22621.4890.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-ent/versions/22621.5039.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1lbnQvdmVyc2lvbnMvMjI2MjEuNTAzOS4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "85116fa1-6a58-4ff9-9b78-fe6b6b236d1f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12750,Microsoft.Compute/GetVMImageFromLocation30Min;73750" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "cbd5c81a-4e42-4cea-aa5a-2a57cba045e3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d5da670a-9de9-40e4-85f6-ebca76025986" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "c1b7c31d-e9cc-451e-9eb9-5741b9bf505c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214911Z:c1b7c31d-e9cc-451e-9eb9-5741b9bf505c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A693304602E34BD295E977809D62A746 Ref B: MNZ221060619029 Ref C: 2025-06-02T21:49:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:11 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-ent/Versions/22621.5039.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-ent/versions/22621.5192.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1lbnQvdmVyc2lvbnMvMjI2MjEuNTE5Mi4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b0450d53-88a6-43c4-a672-f7ee48cc6752" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12749,Microsoft.Compute/GetVMImageFromLocation30Min;73749" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "c36f4e78-7b91-4143-965c-5bcafd99c401" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3c8513c6-094f-4636-b928-79bb3694e19c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "17919758-c891-462d-880f-59a4a2485995" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214911Z:17919758-c891-462d-880f-59a4a2485995" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9D3CB90477284FDEBA3AADC2EECD09F4 Ref B: MNZ221060608047 Ref C: 2025-06-02T21:49:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:11 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-ent/Versions/22621.5192.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-ent/versions/22621.5335.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1lbnQvdmVyc2lvbnMvMjI2MjEuNTMzNS4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "58bac55b-27fe-4b64-bfbf-74b8de51bb93" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12748,Microsoft.Compute/GetVMImageFromLocation30Min;73748" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b612eb0b-5d02-4dd3-a7b8-761d6626d668" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1a2763c1-4eae-4b65-84e5-4e2063b94307" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8dcb70da-b53a-4ea2-9dce-a2a3ae58426c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214911Z:8dcb70da-b53a-4ea2-9dce-a2a3ae58426c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 249DF62DBD88485FB501E6173839101B Ref B: MNZ221060618027 Ref C: 2025-06-02T21:49:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:11 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-ent/Versions/22621.5335.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-ent/versions/22621.674.221008?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1lbnQvdmVyc2lvbnMvMjI2MjEuNjc0LjIyMTAwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e93472bd-18ce-4f43-a0a9-5f66443a4a03" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12747,Microsoft.Compute/GetVMImageFromLocation30Min;73747" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "8ef31ff2-f722-4ffb-9b41-b71641fbd38e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4bca735b-4524-457e-af40-df4c3485c42d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6d8a3515-87fa-46f7-979f-ec33bd28bec1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214911Z:6d8a3515-87fa-46f7-979f-ec33bd28bec1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2A2969EB835D4CE584E76A8A3C2EB149 Ref B: MNZ221060610019 Ref C: 2025-06-02T21:49:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:11 GMT" + ], + "Content-Length": [ + "1086" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.674.221008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-ent/Versions/22621.674.221008\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-entn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1lbnRuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c54b7a25-df2f-4ed4-b17c-5e99dbe40bad" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15872,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43872" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "dc468455-1aa9-44a5-9a56-6a6bc9a256f2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7b0c8191-0b58-4276-a119-26df5efd4d89" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "48f62d34-83f0-47ec-9330-b4a193bd3019" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214912Z:48f62d34-83f0-47ec-9330-b4a193bd3019" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5BF301EA84674DE4BE4CE3E1C5F1BCD6 Ref B: MNZ221060609019 Ref C: 2025-06-02T21:49:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:11 GMT" + ], + "Content-Length": [ + "1528" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-entn/Versions/22621.4751.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-entn/Versions/22621.4890.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-entn/Versions/22621.5039.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-entn/Versions/22621.5192.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-entn/Versions/22621.5335.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-entn/versions/22621.4751.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1lbnRuL3ZlcnNpb25zLzIyNjIxLjQ3NTEuMjUwMTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "47f2f794-5236-47d0-9fdb-b732af00cfcf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12746,Microsoft.Compute/GetVMImageFromLocation30Min;73746" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3ecf3a58-f05f-4182-821b-79f80c39982c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/48a88f7d-4851-44ec-9608-d4062fd30d57" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cecb3bb9-c1ac-4536-9277-4643d0e47fe2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214912Z:cecb3bb9-c1ac-4536-9277-4643d0e47fe2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 517E8024B87343839F0470CA3CA045BC Ref B: MNZ221060619051 Ref C: 2025-06-02T21:49:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:12 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-entn/Versions/22621.4751.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-entn/versions/22621.4890.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1lbnRuL3ZlcnNpb25zLzIyNjIxLjQ4OTAuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0e6e0eb8-5d1b-4139-9eab-c80b75a926bb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12745,Microsoft.Compute/GetVMImageFromLocation30Min;73745" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d15693c0-103f-4b67-b6ee-b18e2a9162a4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a33ee25d-4faa-49dd-b0ab-93206007f6d0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fa71cec3-4f74-403f-bc79-1b357ead896c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214912Z:fa71cec3-4f74-403f-bc79-1b357ead896c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2336A51695ED4738890D842A0CC9F16F Ref B: MNZ221060610035 Ref C: 2025-06-02T21:49:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:11 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-entn/Versions/22621.4890.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-entn/versions/22621.5039.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1lbnRuL3ZlcnNpb25zLzIyNjIxLjUwMzkuMjUwMzA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7483edd7-1ae8-4799-b90b-c9e9b3d9c60a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12744,Microsoft.Compute/GetVMImageFromLocation30Min;73744" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "5450419b-4ea7-4684-b7d0-fbb50de264a4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4d58221b-b1f2-4878-b2ff-b55bdccdcce6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f6170fed-fa7a-45a2-9837-5fbc989696ca" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214912Z:f6170fed-fa7a-45a2-9837-5fbc989696ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 52A04398A8884B73BF6B5996781D08CB Ref B: MNZ221060609027 Ref C: 2025-06-02T21:49:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:12 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-entn/Versions/22621.5039.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-entn/versions/22621.5192.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1lbnRuL3ZlcnNpb25zLzIyNjIxLjUxOTIuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e0e245b9-323e-4e7b-bc25-5b322ad55478" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12743,Microsoft.Compute/GetVMImageFromLocation30Min;73743" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "c4a3b4ff-e565-4a07-bb7f-f577d58b56b8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ad784bcc-b9ec-4e6c-895b-7e2897cf893c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4f2a90ca-9af4-4f11-b9c1-82f615c43db4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214912Z:4f2a90ca-9af4-4f11-b9c1-82f615c43db4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C84C9DE305EF48BE8439685D956703EA Ref B: MNZ221060608047 Ref C: 2025-06-02T21:49:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:12 GMT" + ], + "Content-Length": [ + "1227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-entn/Versions/22621.5192.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-22h2-entn/versions/22621.5335.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjJoMi1lbnRuL3ZlcnNpb25zLzIyNjIxLjUzMzUuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "76b51608-6cbf-472b-8103-9379631f516b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12742,Microsoft.Compute/GetVMImageFromLocation30Min;73742" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "8ca13f09-b7c5-4964-a170-875169c275f2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/46ccd582-a944-4951-9772-916e57387716" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2277fedf-dff0-49dc-a5bc-42ba60ba0ab1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214912Z:2277fedf-dff0-49dc-a5bc-42ba60ba0ab1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 23CD7B0ACF8B44C0BD3257B35E2BBECF Ref B: MNZ221060618035 Ref C: 2025-06-02T21:49:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:12 GMT" + ], + "Content-Length": [ + "1227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-22h2-entn/Versions/22621.5335.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-avd/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1hdmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "01dee737-3395-4141-bf82-8dc302ed4230" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15871,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43871" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d9013f38-6aa4-4b7f-ae27-2e55cc22487b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1c4d93c3-abd6-4370-a19d-06f55f5e5fb8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "afdcfdd4-54f5-42c0-95ad-6e82d4de2287" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214912Z:afdcfdd4-54f5-42c0-95ad-6e82d4de2287" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 22B6B0D0D99F405A93750A845BC23D08 Ref B: MNZ221060609053 Ref C: 2025-06-02T21:49:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:12 GMT" + ], + "Content-Length": [ + "1523" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-avd/Versions/22631.4751.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-avd/Versions/22631.4890.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-avd/Versions/22631.5039.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-avd/Versions/22631.5192.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-avd/Versions/22631.5335.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-avd/versions/22631.4751.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1hdmQvdmVyc2lvbnMvMjI2MzEuNDc1MS4yNTAxMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a33730f4-0384-4470-b495-d9ad86533997" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12741,Microsoft.Compute/GetVMImageFromLocation30Min;73741" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "605500b6-5c99-41b2-b680-3955323f548e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9354e3f9-4769-485d-9c37-0ef4dd3918fe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "a9624316-bb5c-42e3-bafc-6cc609521217" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214912Z:a9624316-bb5c-42e3-bafc-6cc609521217" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6122B5E2AC654804AA6A3B9BF89C1BD6 Ref B: MNZ221060608009 Ref C: 2025-06-02T21:49:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:12 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-avd/Versions/22631.4751.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-avd/versions/22631.4890.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1hdmQvdmVyc2lvbnMvMjI2MzEuNDg5MC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2090b06f-276d-41e9-b844-732f4ea95760" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12740,Microsoft.Compute/GetVMImageFromLocation30Min;73740" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "85c31540-66ae-4df2-9bbb-b1c81bd8349a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/03c36013-e4d7-486d-92cc-b3eb6361b248" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2d0e773e-029e-45d0-8c69-647119384639" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214913Z:2d0e773e-029e-45d0-8c69-647119384639" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FF3E0D55280A49BCB0885CAB8F5FF6EE Ref B: MNZ221060609007 Ref C: 2025-06-02T21:49:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:12 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-avd/Versions/22631.4890.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-avd/versions/22631.5039.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1hdmQvdmVyc2lvbnMvMjI2MzEuNTAzOS4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "437658b6-a78e-46d5-9783-bfb1bfd1a815" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12739,Microsoft.Compute/GetVMImageFromLocation30Min;73739" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ea24213b-f194-4458-88ca-bce648df4a81" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c1a9e759-595b-4374-8f95-7189592e5088" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2d196836-23a8-448d-8080-f35ed2878e32" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214913Z:2d196836-23a8-448d-8080-f35ed2878e32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E51937407BC340118082DFB6638F3358 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:49:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:12 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-avd/Versions/22631.5039.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-avd/versions/22631.5192.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1hdmQvdmVyc2lvbnMvMjI2MzEuNTE5Mi4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "449b6428-917f-47a7-92dc-32a17bad3b3a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12738,Microsoft.Compute/GetVMImageFromLocation30Min;73738" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "175cffc2-cdd7-413b-b203-0c7885fd82ea" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/83a5ded9-7c2f-4d4a-800d-ecafcd0af9bd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a2ad5d46-9eb7-4a84-8c6d-a2c0dee325b9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214913Z:a2ad5d46-9eb7-4a84-8c6d-a2c0dee325b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C8EBF460C3F04B3A84A8F9EF987E7B09 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:49:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:12 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-avd/Versions/22631.5192.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-avd/versions/22631.5335.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1hdmQvdmVyc2lvbnMvMjI2MzEuNTMzNS4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ca8fd8b0-0b34-4015-8e25-9e78ecd9d1cc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12737,Microsoft.Compute/GetVMImageFromLocation30Min;73737" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "c6e66914-ff78-438a-9f3c-3c0b8896cc81" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/16a45d92-c22b-4023-a2fa-f1cc049ce044" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f3a0497f-f335-4816-80d3-dbbf8988b334" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214913Z:f3a0497f-f335-4816-80d3-dbbf8988b334" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4006932717E24A27B3E0587124465FC0 Ref B: MNZ221060618039 Ref C: 2025-06-02T21:49:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:13 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-avd/Versions/22631.5335.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0ef86f69-819f-4b41-9529-761f9ee89326" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15870,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43870" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e33beb7e-eb95-4fe5-af34-bfb41260eb22" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/88000046-14ce-41a1-9962-a3579d4c050c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b19199f1-c934-48b7-b4e5-89c2cd30aa93" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214913Z:b19199f1-c934-48b7-b4e5-89c2cd30aa93" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F1866A1A3DD4DC2A09399EC8EF6AC11 Ref B: MNZ221060618009 Ref C: 2025-06-02T21:49:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:13 GMT" + ], + "Content-Length": [ + "1523" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-ent/Versions/22631.4751.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-ent/Versions/22631.4890.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-ent/Versions/22631.5039.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-ent/Versions/22631.5192.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-ent/Versions/22631.5335.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-ent/versions/22631.4751.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1lbnQvdmVyc2lvbnMvMjI2MzEuNDc1MS4yNTAxMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5a5a234e-ea07-414a-b484-b1a286b86443" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12736,Microsoft.Compute/GetVMImageFromLocation30Min;73736" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ee6ed006-8e14-43ca-bb29-9f288a49deff" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c497bc5d-3b4c-453b-aa8f-3bba3c4d5695" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "aeca14e2-f729-478e-b2af-6a0393f47a79" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214913Z:aeca14e2-f729-478e-b2af-6a0393f47a79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0B6F5355D9D94FAB8DEE88F11DFA5BFD Ref B: MNZ221060619037 Ref C: 2025-06-02T21:49:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:13 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-ent/Versions/22631.4751.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-ent/versions/22631.4890.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1lbnQvdmVyc2lvbnMvMjI2MzEuNDg5MC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3747a8f9-4191-426e-ba12-118e41d4421e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12735,Microsoft.Compute/GetVMImageFromLocation30Min;73735" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "5fb31cb8-03d6-4fba-99a3-b3742cf14857" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c03d11fd-c093-4831-a8e6-447cd7eb1992" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3b45252b-4fcc-410e-932f-94333a62751e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214913Z:3b45252b-4fcc-410e-932f-94333a62751e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1BAEE2BF3C6F472DB3FB8CB30138BC0B Ref B: MNZ221060619039 Ref C: 2025-06-02T21:49:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:13 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-ent/Versions/22631.4890.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-ent/versions/22631.5039.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1lbnQvdmVyc2lvbnMvMjI2MzEuNTAzOS4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8609deff-a758-4219-8c85-198bdc6be7c1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12734,Microsoft.Compute/GetVMImageFromLocation30Min;73734" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "561e47ed-124d-4f85-ac6c-44f313f6b916" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a59d6a0b-2674-4114-ba1e-1c8a0b985c43" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6aa81dbd-1421-440d-ac4d-6f79428fc21e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214913Z:6aa81dbd-1421-440d-ac4d-6f79428fc21e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F21ECB0CB88145869FE9AC867E1E4ED7 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:49:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:13 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-ent/Versions/22631.5039.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-ent/versions/22631.5192.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1lbnQvdmVyc2lvbnMvMjI2MzEuNTE5Mi4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b4011895-c47b-49ce-8669-f0cfb28e0a08" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12733,Microsoft.Compute/GetVMImageFromLocation30Min;73733" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "1b78becb-8996-4da7-a85a-f97e24d4cd27" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/605378c5-1c71-4538-8024-cc22acbd8d5a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1e293af2-3cbc-4f41-9b15-ed809506ecc7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214913Z:1e293af2-3cbc-4f41-9b15-ed809506ecc7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D933C38B87EB4FDB8C3C3D34E6C2352A Ref B: MNZ221060618021 Ref C: 2025-06-02T21:49:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:13 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-ent/Versions/22631.5192.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-ent/versions/22631.5335.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1lbnQvdmVyc2lvbnMvMjI2MzEuNTMzNS4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2fea7140-2826-4e57-b095-ca908ebf3ac1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12732,Microsoft.Compute/GetVMImageFromLocation30Min;73732" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "6647a117-1b1a-428f-8cd6-1c9458f129b5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f9ccfd56-01c6-459e-8d18-17f3d68eb5c8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3c0e0980-9a11-4c1c-86ad-742277ac9c59" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214914Z:3c0e0980-9a11-4c1c-86ad-742277ac9c59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2CDE7D0E8924783B453FA62159BCE62 Ref B: MNZ221060618035 Ref C: 2025-06-02T21:49:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:14 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-ent/Versions/22631.5335.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-entn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1lbnRuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b4a5b090-8e05-4c81-866f-6b7413f8064f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15869,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43869" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "a1935099-53e7-4f6a-b498-c89a4c4bb1f7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9d262a27-32cd-405f-bdf1-38f7d3396bce" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d92b268b-73fa-4c86-b5e0-eb83cffd457c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214914Z:d92b268b-73fa-4c86-b5e0-eb83cffd457c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 600EF279862E493185D180BBA6F5C9AC Ref B: MNZ221060608047 Ref C: 2025-06-02T21:49:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:13 GMT" + ], + "Content-Length": [ + "1528" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-entn/Versions/22631.4751.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-entn/Versions/22631.4890.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-entn/Versions/22631.5039.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-entn/Versions/22631.5192.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-entn/Versions/22631.5335.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-entn/versions/22631.4751.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1lbnRuL3ZlcnNpb25zLzIyNjMxLjQ3NTEuMjUwMTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fa5ac431-72f1-4595-b5d3-dbbbd0d3769b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12731,Microsoft.Compute/GetVMImageFromLocation30Min;73731" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d7cbbe24-465b-4d69-9eff-356fcfd6378b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ff3d20fc-339a-4ef1-8508-2c3b996fcc75" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7b315030-d8ab-453e-b99d-9770f7312321" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214914Z:7b315030-d8ab-453e-b99d-9770f7312321" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8ACC54C61AB94CC08141E9EFDE090971 Ref B: MNZ221060609031 Ref C: 2025-06-02T21:49:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:13 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-entn/Versions/22631.4751.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-entn/versions/22631.4890.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1lbnRuL3ZlcnNpb25zLzIyNjMxLjQ4OTAuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "50f5a597-f9fa-49ed-8a0c-c190ffb6f868" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12730,Microsoft.Compute/GetVMImageFromLocation30Min;73730" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "86674f45-065b-44d4-8fd8-2bf092e303aa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8392e809-ebba-4dc9-a5f8-0751cdbca7f1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6171bcbe-c111-4f7e-9edd-86ca71377081" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214914Z:6171bcbe-c111-4f7e-9edd-86ca71377081" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7512AB947E804A879917775D7C8F0D51 Ref B: MNZ221060610049 Ref C: 2025-06-02T21:49:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:14 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-entn/Versions/22631.4890.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-entn/versions/22631.5039.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1lbnRuL3ZlcnNpb25zLzIyNjMxLjUwMzkuMjUwMzA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0211d032-2b99-402c-9219-f2f0dc93b4d8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12729,Microsoft.Compute/GetVMImageFromLocation30Min;73729" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "31ee3c68-efee-4cc3-90ca-4fb5643e925d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/14224c68-3165-435a-bd24-e4e4fba856a2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2bf9c2e1-850f-4970-9761-bb0044ecf80b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214914Z:2bf9c2e1-850f-4970-9761-bb0044ecf80b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 86A3CBA6B87D4EF1B05A72317FC9A8D3 Ref B: MNZ221060609023 Ref C: 2025-06-02T21:49:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:14 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-entn/Versions/22631.5039.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-entn/versions/22631.5192.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1lbnRuL3ZlcnNpb25zLzIyNjMxLjUxOTIuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "31e757f9-0119-4669-b23f-97909fc39f4d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12728,Microsoft.Compute/GetVMImageFromLocation30Min;73728" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "7e889ba5-e259-441d-9c76-9dcb8cd5f46e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bca0980f-e67b-4662-85f5-e361f4cca7c2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6addcb54-2963-4de8-bb5f-614116863d27" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214914Z:6addcb54-2963-4de8-bb5f-614116863d27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5D1D8520A3F0406F872E435DDD23F657 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:49:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:14 GMT" + ], + "Content-Length": [ + "1227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-entn/Versions/22631.5192.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-entn/versions/22631.5335.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1lbnRuL3ZlcnNpb25zLzIyNjMxLjUzMzUuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0fbb2f77-8fd5-48cf-b6ca-f9691dbc930a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12727,Microsoft.Compute/GetVMImageFromLocation30Min;73727" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "8b275176-1577-449f-ac3f-c9a49fcdfe51" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1fb1d12a-2a84-4368-a2ec-1c3efcaadc8a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1e9aea46-442b-4442-9bd1-d02296e891ab" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214914Z:1e9aea46-442b-4442-9bd1-d02296e891ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 48968D49554641758A4991BE6B54AE67 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:49:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:14 GMT" + ], + "Content-Length": [ + "1227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-entn/Versions/22631.5335.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ad604c83-5416-48ac-91c2-8d9a58bd0d65" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15868,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43868" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f4a0d3f0-5fec-42bd-b93f-fe091a845ee3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/107fba10-c641-4b15-a809-b19df2779f46" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e084ef2e-5e9c-4708-b88a-d3d061a2df8e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214915Z:e084ef2e-5e9c-4708-b88a-d3d061a2df8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 899C2BA308AF413FA2B2F82AD0FF5ED0 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:49:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:14 GMT" + ], + "Content-Length": [ + "1523" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro/Versions/22631.4751.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro/Versions/22631.4890.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro/Versions/22631.5039.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro/Versions/22631.5192.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro/Versions/22631.5335.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pro/versions/22631.4751.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm8vdmVyc2lvbnMvMjI2MzEuNDc1MS4yNTAxMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "01519391-e25b-4e81-a00e-a51cdcf43b26" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12726,Microsoft.Compute/GetVMImageFromLocation30Min;73726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "35e4f6b3-1caf-45e1-bba4-2304423f0e6c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a06d77fc-14e2-42ef-b5eb-0e9843a5464a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "120e57b1-3cd7-4956-84be-0e27afe50434" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214915Z:120e57b1-3cd7-4956-84be-0e27afe50434" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 38FD2DE87AB54D14BDA75A6E89F2C331 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:49:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:14 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro/Versions/22631.4751.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pro/versions/22631.4890.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm8vdmVyc2lvbnMvMjI2MzEuNDg5MC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bbe8e407-f6a3-4a76-813b-7284a0da8c2b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12725,Microsoft.Compute/GetVMImageFromLocation30Min;73725" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "cd697464-42fc-4142-8723-6a205e12a490" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/20c8bbdd-059b-4244-9816-0eadcfafb63e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c1010cf5-3cb2-422f-8cdb-117c30366ddc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214915Z:c1010cf5-3cb2-422f-8cdb-117c30366ddc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 15C25017C5544CC99BD28EB84DF6FF67 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:49:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:14 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro/Versions/22631.4890.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pro/versions/22631.5039.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm8vdmVyc2lvbnMvMjI2MzEuNTAzOS4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "720e5d2b-65b0-417c-bef7-9a8f9198e3c5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12724,Microsoft.Compute/GetVMImageFromLocation30Min;73724" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "130ab558-f8d8-4e55-88d6-257f880ab1a4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a64ee6cb-66de-4ec3-a798-4854b53c9f02" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "40db7bb2-91b0-455a-a43b-9b3dd078ca4a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214915Z:40db7bb2-91b0-455a-a43b-9b3dd078ca4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F058FF46A42E44C4A03FB7853DF66438 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:49:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:14 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro/Versions/22631.5039.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pro/versions/22631.5192.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm8vdmVyc2lvbnMvMjI2MzEuNTE5Mi4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2700bbea-6c86-4a49-8d3a-973f15e29e13" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12723,Microsoft.Compute/GetVMImageFromLocation30Min;73723" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "fbcbf720-4f59-4056-9fd3-b280a094eca8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/eb46a9db-b0c7-4b7c-b0fb-9aaf4446483f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e9ab55ec-5675-463d-847d-24404e023ee2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214915Z:e9ab55ec-5675-463d-847d-24404e023ee2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2C3DBB6DD53F46139B52836AC53FF405 Ref B: MNZ221060609029 Ref C: 2025-06-02T21:49:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:14 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro/Versions/22631.5192.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pro/versions/22631.5335.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm8vdmVyc2lvbnMvMjI2MzEuNTMzNS4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "838efe46-36f5-4ad4-8174-667a4b6aa56d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12722,Microsoft.Compute/GetVMImageFromLocation30Min;73722" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "fdc229e8-d51b-42d3-acc4-fa4d3861fe74" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3033dea9-70c2-4e30-b188-b5ad812dbceb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c56902ba-2801-4857-b4ab-79bba26aad5b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214915Z:c56902ba-2801-4857-b4ab-79bba26aad5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4AEE19B144CD4649BF16584B65FB6D9C Ref B: MNZ221060619023 Ref C: 2025-06-02T21:49:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:15 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro/Versions/22631.5335.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pro-zh-cn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm8temgtY24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fcfd6568-e48a-4740-8f42-743760d890d5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15867,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43867" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3bf48f12-eaa1-4213-adba-3ebd85122288" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/da7b97e8-1a73-4848-b235-2d87bb6aefb3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5c2a50e9-af5a-43e3-acc0-92d39f753bfa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214916Z:5c2a50e9-af5a-43e3-acc0-92d39f753bfa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D22E1ED094ED44B09CFAB47DA5E0DC7B Ref B: MNZ221060610029 Ref C: 2025-06-02T21:49:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:16 GMT" + ], + "Content-Length": [ + "1553" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro-zh-cn/Versions/22631.4751.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro-zh-cn/Versions/22631.4890.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro-zh-cn/Versions/22631.5039.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro-zh-cn/Versions/22631.5192.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro-zh-cn/Versions/22631.5335.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pro-zh-cn/versions/22631.4751.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm8temgtY24vdmVyc2lvbnMvMjI2MzEuNDc1MS4yNTAxMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "35443c22-b90b-49b0-b6d9-22e1a3937cc8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12721,Microsoft.Compute/GetVMImageFromLocation30Min;73721" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "9b0c8381-6360-42a8-bf38-0c6f8d4f66bb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7154e7cb-4dad-4c25-b96f-ea79cb4a0316" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a1317936-e6e2-484f-917b-d2813944a0ea" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214916Z:a1317936-e6e2-484f-917b-d2813944a0ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 52E3F2DD46394885B425C8A7EDE9D816 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:49:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:15 GMT" + ], + "Content-Length": [ + "1313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro-zh-cn/Versions/22631.4751.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pro-zh-cn/versions/22631.4890.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm8temgtY24vdmVyc2lvbnMvMjI2MzEuNDg5MC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6fefca55-a921-4f0a-8798-bfe4bd1605ce" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12720,Microsoft.Compute/GetVMImageFromLocation30Min;73720" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "de59da71-a3ca-4525-ab67-17354505c8fc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8f390dab-1d37-4873-94bb-9b8af6687b5c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f7120d8d-d117-44e7-a971-75a7968a0b2d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214916Z:f7120d8d-d117-44e7-a971-75a7968a0b2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B7971AD6F90B4E52B45C408F9A8B3C0B Ref B: MNZ221060619023 Ref C: 2025-06-02T21:49:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:16 GMT" + ], + "Content-Length": [ + "1313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro-zh-cn/Versions/22631.4890.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pro-zh-cn/versions/22631.5039.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm8temgtY24vdmVyc2lvbnMvMjI2MzEuNTAzOS4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2341ad60-aeb6-41ba-b9d3-03361a565946" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12719,Microsoft.Compute/GetVMImageFromLocation30Min;73719" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "48a31188-3ede-436c-b225-7bc298d72b75" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fa44ad5d-55a3-46cc-9743-b31d0da73f19" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7942f0c8-7e9d-4093-a9b6-c29f6594dbde" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214916Z:7942f0c8-7e9d-4093-a9b6-c29f6594dbde" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5FFA1992528C41A180CB5912BEFA2209 Ref B: MNZ221060618009 Ref C: 2025-06-02T21:49:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:16 GMT" + ], + "Content-Length": [ + "1313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro-zh-cn/Versions/22631.5039.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pro-zh-cn/versions/22631.5192.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm8temgtY24vdmVyc2lvbnMvMjI2MzEuNTE5Mi4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fbb80bd7-217b-4c38-becd-bd676eb1c2fa" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12718,Microsoft.Compute/GetVMImageFromLocation30Min;73718" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "1143040b-1458-4fe0-94f7-152f289b2940" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ead79cbd-b5be-44c6-a895-08de30748478" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "71ab0c80-8ba0-4849-a61c-58494279c891" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214916Z:71ab0c80-8ba0-4849-a61c-58494279c891" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CEFC5BAC18C646B88384F4C85F981397 Ref B: MNZ221060619037 Ref C: 2025-06-02T21:49:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:16 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro-zh-cn/Versions/22631.5192.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pro-zh-cn/versions/22631.5335.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm8temgtY24vdmVyc2lvbnMvMjI2MzEuNTMzNS4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fdbefdeb-dbc8-4c38-8696-3eadfab21923" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12717,Microsoft.Compute/GetVMImageFromLocation30Min;73717" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "7918f5e6-2082-4689-92ad-a8c6c88e5fbc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e3150735-685c-49bd-8366-6e12bf49f223" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "72d3c0eb-0ff0-4257-9c56-22f1626f4fea" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214916Z:72d3c0eb-0ff0-4257-9c56-22f1626f4fea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B3C4275E27C41DEBE36AD9DEB87559A Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:16 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pro-zh-cn/Versions/22631.5335.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pron/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4d3f1e28-87b8-4469-a402-66fff5cb28d5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15866,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43866" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "2b9b9b84-63de-4044-bca5-1795f2b594f3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/417ea955-fb09-450a-9a71-a7b11e0da53e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4542d54d-c5f3-4242-a5c1-817660f9ee87" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214917Z:4542d54d-c5f3-4242-a5c1-817660f9ee87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 293E9B8C93004784A96D56E40B8C3A76 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:49:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:16 GMT" + ], + "Content-Length": [ + "1528" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pron/Versions/22631.4751.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pron/Versions/22631.4890.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pron/Versions/22631.5039.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pron/Versions/22631.5192.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pron/Versions/22631.5335.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pron/versions/22631.4751.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm9uL3ZlcnNpb25zLzIyNjMxLjQ3NTEuMjUwMTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0166309f-c9cc-4dcb-be3a-4c3af5175921" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12716,Microsoft.Compute/GetVMImageFromLocation30Min;73716" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "992851e4-95e5-4c24-9a44-dc1f6bc2aa1a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/281b6e8b-a74a-4cb8-b645-8bb4726d2e06" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a1eda35b-c82c-4236-9854-1e64de80df11" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214917Z:a1eda35b-c82c-4236-9854-1e64de80df11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1BB4953A20CE44A0AC10CA5CA8F0EFF8 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:49:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:16 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pron/Versions/22631.4751.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pron/versions/22631.4890.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm9uL3ZlcnNpb25zLzIyNjMxLjQ4OTAuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "61d4cbd4-f1fa-4190-8651-b03f38b8e6b1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12715,Microsoft.Compute/GetVMImageFromLocation30Min;73715" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "54899bff-85fb-42b1-b423-44d900b00b21" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/67974d65-c624-49dd-bf1e-4f061964a8c9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "00f660ff-7541-44cc-9b16-6df6b3f4e761" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214917Z:00f660ff-7541-44cc-9b16-6df6b3f4e761" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 32CE853BBE15496DAF78D0A2A68A7DE4 Ref B: MNZ221060609007 Ref C: 2025-06-02T21:49:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:17 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pron/Versions/22631.4890.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pron/versions/22631.5039.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm9uL3ZlcnNpb25zLzIyNjMxLjUwMzkuMjUwMzA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "496a2e5a-cda1-48da-9e5b-dc77139b0db6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12714,Microsoft.Compute/GetVMImageFromLocation30Min;73714" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "6c2730af-4e7e-4062-8389-ba5e276b2bb4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1c2d747c-5017-4b64-9f17-e14f7b6fbe86" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "da54a849-3802-49a0-9c13-4bc9e25be5d2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214917Z:da54a849-3802-49a0-9c13-4bc9e25be5d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CABAD81366564EBEB5CF43BFD9944D44 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:49:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:16 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pron/Versions/22631.5039.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pron/versions/22631.5192.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm9uL3ZlcnNpb25zLzIyNjMxLjUxOTIuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3e335f74-8810-4ab3-8813-af66b2f2aeda" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12713,Microsoft.Compute/GetVMImageFromLocation30Min;73713" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3c7a93d7-caa4-4278-a5f2-6d3ee211a3fd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a823bf09-7bbd-457f-ade7-33d12b8e587b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "02f65749-1f8f-4689-a328-6d1194db7403" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214917Z:02f65749-1f8f-4689-a328-6d1194db7403" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FA1B162D07A34CB48EB4879F33C86B76 Ref B: MNZ221060610027 Ref C: 2025-06-02T21:49:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:17 GMT" + ], + "Content-Length": [ + "1227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pron/Versions/22631.5192.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-23h2-pron/versions/22631.5335.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjNoMi1wcm9uL3ZlcnNpb25zLzIyNjMxLjUzMzUuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "aaeb40fb-3eb0-4ed3-b839-a28407fb3f5d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12712,Microsoft.Compute/GetVMImageFromLocation30Min;73712" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "a0a3b6e3-d9c6-4163-bb90-4a73eeb091d1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/aa4cb32e-d169-46a5-bbca-e83cde849e95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0931e7fc-cab9-4656-9134-c9fea1adcef5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214917Z:0931e7fc-cab9-4656-9134-c9fea1adcef5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 098E0946706C45B2899945D3987B53F6 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:49:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:17 GMT" + ], + "Content-Length": [ + "1227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-23h2-pron/Versions/22631.5335.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-avd/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1hdmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0ca514e7-8125-4f18-8c21-2cbfbd1e6c8f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15865,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43865" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ca7a0e04-4a36-4d86-be98-e22e34718002" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c20932ad-4fec-4282-8f6d-a143d9d1cab7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a975c695-b764-4935-971d-e13da202ed61" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214918Z:a975c695-b764-4935-971d-e13da202ed61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 423C519A2E994ECDB111955B8862DE16 Ref B: MNZ221060609017 Ref C: 2025-06-02T21:49:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:17 GMT" + ], + "Content-Length": [ + "2131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3459.250221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.3459.250221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-avd/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1hdmQvdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5085cc1f-cb90-41ad-ad3b-f69c64269e5b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12711,Microsoft.Compute/GetVMImageFromLocation30Min;73711" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "5db7d0ba-3c1e-4866-a503-48c3fae9630d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/67a9f5cd-2b42-4a4d-88bc-adbeb94e7653" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "9c97a49d-7c75-43b1-b178-39528af3d235" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214918Z:9c97a49d-7c75-43b1-b178-39528af3d235" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 20EB1C7C812447E4B30F57DA8AFB40AB Ref B: MNZ221060610035 Ref C: 2025-06-02T21:49:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:17 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-avd/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1hdmQvdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e39e0824-5977-414c-8478-994d4279cc31" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12710,Microsoft.Compute/GetVMImageFromLocation30Min;73710" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "6cacd7dd-0a70-4836-a83e-310f8ca42a79" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d332b7eb-532b-4e19-9997-a873fdbe84cb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "aeaf7b51-c253-4558-8c0e-eee8a24b3fd3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214918Z:aeaf7b51-c253-4558-8c0e-eee8a24b3fd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C23FC7EFDCB04AA689CF9526FC1907B7 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:49:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:17 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-avd/versions/26100.3459.250221?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1hdmQvdmVyc2lvbnMvMjYxMDAuMzQ1OS4yNTAyMjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "84b27997-b493-4405-8604-8c5f644237ce" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12709,Microsoft.Compute/GetVMImageFromLocation30Min;73709" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "a22dd359-8dd2-4060-bb1c-028c209c31f6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ef5f998e-1275-4c41-ad6e-0a3fa7cf35a3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4f4d8d0f-99a5-427e-be1b-d3b6c9b8a21c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214918Z:4f4d8d0f-99a5-427e-be1b-d3b6c9b8a21c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 18E08B3663DB4D67874FD4E7A88F265A Ref B: MNZ221060608045 Ref C: 2025-06-02T21:49:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:18 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3459.250221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.3459.250221\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-avd/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1hdmQvdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e02c4c2f-26bd-47bf-95d9-eec53068982d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12708,Microsoft.Compute/GetVMImageFromLocation30Min;73708" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "dfb47dce-a606-44d8-a8f5-fb754e5818e2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/27fa58c4-c323-4796-9299-230d43f8486d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "11c8507b-6ad6-4703-8d40-18fdd9f87802" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214918Z:11c8507b-6ad6-4703-8d40-18fdd9f87802" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41C3B00827304B439AB154BE40DD8936 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:49:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:17 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-avd/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1hdmQvdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "53927dfd-5571-4110-9164-fad35d63f6b3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12707,Microsoft.Compute/GetVMImageFromLocation30Min;73707" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f95b5fbb-7328-4fe6-a17b-739593a6eb7c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ce06180d-b92c-4b14-ac96-e951eb15b42d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "a00583f0-c037-49be-bb5d-fc7be7e22507" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214918Z:a00583f0-c037-49be-bb5d-fc7be7e22507" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 329099F39E0647D5A05DC9BBDB705BFE Ref B: MNZ221060608029 Ref C: 2025-06-02T21:49:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:17 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-avd/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1hdmQvdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7ed58cc7-3d3d-46e0-bc94-fbf9f3277ffb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12706,Microsoft.Compute/GetVMImageFromLocation30Min;73706" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "c7edf681-357f-443c-a2b7-d9a8f4d80d48" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ec91ce27-15eb-43b4-9f9f-5e738577bb06" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1a2fa41d-a1e8-480b-8f55-be16159a9e32" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214918Z:1a2fa41d-a1e8-480b-8f55-be16159a9e32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CE48871F6517460EBD9E9BC36287FC44 Ref B: MNZ221060609047 Ref C: 2025-06-02T21:49:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:18 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-avd/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1hdmQvdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fbf2439f-c55a-41c2-acbe-42241eaf4854" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12705,Microsoft.Compute/GetVMImageFromLocation30Min;73705" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "20cbdca6-e63d-4d7e-85a8-5c743681a4f0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/01e209bc-d2e5-49d4-bce1-1bb9bdc65262" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "52b506e5-31ce-4c96-82cc-b748b2c7317e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214918Z:52b506e5-31ce-4c96-82cc-b748b2c7317e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 051731CD54DF4DD78CE78F263C6B0088 Ref B: MNZ221060609049 Ref C: 2025-06-02T21:49:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:17 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-avd/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "89e14bf0-b91d-430f-b3b7-c2230ab3b28a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15864,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43864" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "1ff318e1-025b-4ed7-98f2-afd80b50f00e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1dce0db7-2317-4174-99eb-8aa4f57387bf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8d4b67e6-9b48-430d-a60f-d592cc770749" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214918Z:8d4b67e6-9b48-430d-a60f-d592cc770749" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3FACE6445BB54CE98DF730EEA409A9CA Ref B: MNZ221060608019 Ref C: 2025-06-02T21:49:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:18 GMT" + ], + "Content-Length": [ + "2131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3459.250221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.3459.250221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-ent/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a265d7da-979f-4b14-abbd-63926c1bfe1b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12704,Microsoft.Compute/GetVMImageFromLocation30Min;73704" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "1af56bee-ad92-49af-a598-e8ac01103eb5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/568cfbd9-7605-4a42-ae90-c41b7821664a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "52d2a760-408c-44bb-9c42-cb169dbb7215" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214919Z:52d2a760-408c-44bb-9c42-cb169dbb7215" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E8E771F209A2482E856D0DE280EF57C8 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:49:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:19 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-ent/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "22072abe-a53e-47df-ba21-5e4e402cd1f3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12703,Microsoft.Compute/GetVMImageFromLocation30Min;73703" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "58f282b3-56aa-429f-9eff-f7f243368fed" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4fd596b2-7de8-4ddb-b0a5-336644de9bfb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "40ac5859-6883-428e-8de6-beac3a73426f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214919Z:40ac5859-6883-428e-8de6-beac3a73426f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A6BAAB15CF7949F3BE56C9A9944D6F4E Ref B: MNZ221060608025 Ref C: 2025-06-02T21:49:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:18 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-ent/versions/26100.3459.250221?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnMvMjYxMDAuMzQ1OS4yNTAyMjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "503e1724-a2e3-4496-9fa3-53effce77027" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12702,Microsoft.Compute/GetVMImageFromLocation30Min;73702" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ba7dc397-7d2c-4dd8-977a-da4091396eb7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/13a61d4a-c19d-4bc6-b942-1a6b9289c1f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "89b9c81a-958c-4b0a-847e-8dfab69f34ab" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214919Z:89b9c81a-958c-4b0a-847e-8dfab69f34ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5E79C12A915B4CD0999281741867AE02 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:49:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:18 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3459.250221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.3459.250221\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-ent/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e39666ed-cedc-468e-83c5-325b23cd7f45" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12701,Microsoft.Compute/GetVMImageFromLocation30Min;73701" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "65c21681-a483-4d7c-9716-02c51a9fd7d7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/638b5357-84aa-4909-98d6-30834a1cf782" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5470f086-daa2-4a28-be59-ace1b8a4307c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214919Z:5470f086-daa2-4a28-be59-ace1b8a4307c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 958F5C940B8945FB9CBF83439400D523 Ref B: MNZ221060618035 Ref C: 2025-06-02T21:49:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:19 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-ent/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3cc8ff61-ce6d-47f3-8cdc-f6a93b3c6f66" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12700,Microsoft.Compute/GetVMImageFromLocation30Min;73700" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "05177b57-403d-4159-9fdc-489caacc8453" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3755ed1b-8878-42cf-b49c-e9458434f439" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d4d8812a-98ca-4d81-8d64-b5265631e428" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214919Z:d4d8812a-98ca-4d81-8d64-b5265631e428" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6E2BD019539847E186252FD5C6EB04A5 Ref B: MNZ221060619031 Ref C: 2025-06-02T21:49:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:18 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-ent/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ead8a1e7-75c4-4b3e-9fc2-f746ecfd6e25" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12699,Microsoft.Compute/GetVMImageFromLocation30Min;73699" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "218b5ff6-f52b-46cb-8e6a-bf1a232ba096" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/54219ef4-e3a8-4a50-9f74-fd0b8c638036" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e956bc01-06cc-4913-a625-d4c4bb734d79" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214919Z:e956bc01-06cc-4913-a625-d4c4bb734d79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3DE22AB59AA2448CA4B3FB60E82010C0 Ref B: MNZ221060610025 Ref C: 2025-06-02T21:49:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:18 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-ent/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1a701dbb-6a0b-4480-8a3b-57adb8564e14" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12698,Microsoft.Compute/GetVMImageFromLocation30Min;73698" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "834cf494-c43f-494e-8de2-9ba63ba08746" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/47d6896e-fc46-4c8c-a56e-d1aee5e1d6ba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c1241b18-b8a5-4249-ac8a-729ffb138c81" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214919Z:c1241b18-b8a5-4249-ac8a-729ffb138c81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0084E3D16B954F05A1D263A7D0F00146 Ref B: MNZ221060610049 Ref C: 2025-06-02T21:49:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:19 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-ent/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-entn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnRuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e809066a-b4ce-409d-be5f-61cc32df4adc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15863,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43863" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "bc99adc1-78d6-4360-882a-18091e1a6b58" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4a76ff7b-7032-4c9c-82e0-39fdca83aed7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1af872e4-a05f-4927-a9fc-80da050fd3c6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214919Z:1af872e4-a05f-4927-a9fc-80da050fd3c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 90719A41F9D645C3848B9AE1C75F89F7 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:49:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:19 GMT" + ], + "Content-Length": [ + "2138" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3459.250221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.3459.250221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-entn/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnRuL3ZlcnNpb25zLzI2MTAwLjI4OTQuMjUwMTEzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e0414400-0ac6-4d50-811f-e1d8b52161b4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12697,Microsoft.Compute/GetVMImageFromLocation30Min;73697" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f1f245c5-6bd1-48f4-af24-b66ab40ff100" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7dabb61d-0ad4-4cca-8dd5-09f53995e85b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e4809c22-9b97-4276-b525-8dd7e4ad6fc6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214920Z:e4809c22-9b97-4276-b525-8dd7e4ad6fc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 435AB5442C6847E58D372472CAC45221 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:49:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:19 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-entn/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnRuL3ZlcnNpb25zLzI2MTAwLjMxOTQuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a102ed4a-0a5d-411b-a495-8c5b133196c8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12696,Microsoft.Compute/GetVMImageFromLocation30Min;73696" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "9d20cd2a-7139-40a6-ad51-7627e4c9b994" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3d9434ae-eacb-4e08-bb7a-7cda113f91fd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "1cb9831f-7dd5-467d-a218-2718dd141d2c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214920Z:1cb9831f-7dd5-467d-a218-2718dd141d2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 67C1F921177D4F4C8239E39707D859C0 Ref B: MNZ221060609011 Ref C: 2025-06-02T21:49:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:19 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-entn/versions/26100.3459.250221?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnRuL3ZlcnNpb25zLzI2MTAwLjM0NTkuMjUwMjIxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2e742314-d357-4afb-9aa5-e775538c0533" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12695,Microsoft.Compute/GetVMImageFromLocation30Min;73695" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "db9cacce-9d4b-4d01-ba83-b0c5086b4fef" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f5e93a21-739c-449b-bda9-44d1b0a0bd2f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "97930e15-d209-4ae8-9b1a-95c9e3a80338" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214920Z:97930e15-d209-4ae8-9b1a-95c9e3a80338" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 02E551F14EF44BFD9E0391A9C26E6AF8 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:49:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:19 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3459.250221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.3459.250221\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-entn/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnRuL3ZlcnNpb25zLzI2MTAwLjM0NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0af4c878-aa43-4349-9670-0a436c90d240" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12694,Microsoft.Compute/GetVMImageFromLocation30Min;73694" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "662d1f8d-6123-4d6f-989d-de0a1a4f5083" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2b45a3d7-ef04-41f5-bfc5-bfafd6427594" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "636bcbb8-441b-439a-8b1c-9aee45da722e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214920Z:636bcbb8-441b-439a-8b1c-9aee45da722e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 13C87FE7BF0B43C6A9D8AEDE2E6B6F6F Ref B: MNZ221060609029 Ref C: 2025-06-02T21:49:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:20 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-entn/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnRuL3ZlcnNpb25zLzI2MTAwLjM3NzUuMjUwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "79d6a25f-d5da-4922-9ec7-7ac7d0ee8e89" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12693,Microsoft.Compute/GetVMImageFromLocation30Min;73693" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "1bbe70f1-7e54-4a13-b100-6899b9bc3484" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/065f2ba4-e7a6-45a4-b038-238f20dda78c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b18b272c-4d41-4c8f-9498-eee5b8f7bf69" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214920Z:b18b272c-4d41-4c8f-9498-eee5b8f7bf69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B1DFAB9A06E14EB682DFC1AF41FEF8DF Ref B: MNZ221060610007 Ref C: 2025-06-02T21:49:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:20 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-entn/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnRuL3ZlcnNpb25zLzI2MTAwLjQwNjEuMjUwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0b685425-1e54-4645-a05c-f95e1ad4d12f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12692,Microsoft.Compute/GetVMImageFromLocation30Min;73692" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "08a700b5-ea7e-49a7-848d-42622562ce25" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cf5e6249-9e0a-4610-a6ae-cce720f2d7e0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "308fdb98-0499-4e7c-84ee-ddb4be7c55d2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214920Z:308fdb98-0499-4e7c-84ee-ddb4be7c55d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F69C63CF77A742BEBD265CF25F59BE09 Ref B: MNZ221060608047 Ref C: 2025-06-02T21:49:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:20 GMT" + ], + "Content-Length": [ + "1227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-entn/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1lbnRuL3ZlcnNpb25zLzI2MTAwLjQwNjYuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cc2792a7-0c6c-46cb-b8bd-8fc5ea4e957b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12691,Microsoft.Compute/GetVMImageFromLocation30Min;73691" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "873f3914-6121-41cd-b61a-3d6fcf5c6ce3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1ed4f951-21c8-49c9-805a-77cbce847c44" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e680521f-c8de-44d0-8b88-0661c5434a9c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214920Z:e680521f-c8de-44d0-8b88-0661c5434a9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 55CD78FEA42C4B31A9ED55DBE53E8F56 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:49:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:20 GMT" + ], + "Content-Length": [ + "1227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-entn/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "355a61ad-15f8-479c-8642-34d5d5f5d468" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15862,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43862" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "bfa845fb-7868-4d5c-bcd6-d7e604564c8f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0610612d-8c8a-4bf7-8449-d6ee3dee22f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "623872e0-12d9-45fd-b816-49099a05b0b6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214921Z:623872e0-12d9-45fd-b816-49099a05b0b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FF4310D916A841BF87C1A9F300E6593A Ref B: MNZ221060618045 Ref C: 2025-06-02T21:49:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:20 GMT" + ], + "Content-Length": [ + "2131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3459.250221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.3459.250221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ce9c23b5-adb4-4622-bf23-5c50935ff5e2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12690,Microsoft.Compute/GetVMImageFromLocation30Min;73690" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "eee877c7-a1bf-497a-8fef-1f8677a30473" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d50882dc-ff30-40d7-a70b-f88c11a60f05" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "666a6a40-fdf2-4900-8d4c-ce68c6eaf67d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214921Z:666a6a40-fdf2-4900-8d4c-ce68c6eaf67d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AFD81E2BCE794797B3436E5D7ED069D9 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:49:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:20 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b466088e-df2f-418b-9768-842901f9555b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12689,Microsoft.Compute/GetVMImageFromLocation30Min;73689" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "96f27d33-b734-4445-86a9-6548c4fdcc08" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b4218a2e-55b6-49b3-9f1f-c524cdc53454" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "01ab0996-5977-4771-82ed-d5e54c89afdc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214921Z:01ab0996-5977-4771-82ed-d5e54c89afdc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 09758B6EF56544CDA2134958CE6D6D17 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:49:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:21 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro/versions/26100.3459.250221?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnMvMjYxMDAuMzQ1OS4yNTAyMjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "949b05a5-7ce5-4f6d-993e-bd52d982c6f0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12688,Microsoft.Compute/GetVMImageFromLocation30Min;73688" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0646a840-5e8d-4c8a-a551-8b3211f6b4ed" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1a6b5504-6c86-413d-a141-f8809b8c4771" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "46ae03e8-4cea-4d82-ae72-541d66a42bbc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214921Z:46ae03e8-4cea-4d82-ae72-541d66a42bbc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 653C000C8D4C4678ACA8DB7B67756B10 Ref B: MNZ221060608047 Ref C: 2025-06-02T21:49:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:20 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3459.250221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.3459.250221\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9d5f9cd2-6dd4-4643-acdc-4fd53b61bd5d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12687,Microsoft.Compute/GetVMImageFromLocation30Min;73687" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f5eb2700-ea50-4226-a0da-8cbe47315ae2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a15b2cb6-22db-4303-96c7-d704b7fc4a15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "a8569a11-4880-4672-b01e-1e7a113b8890" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214921Z:a8569a11-4880-4672-b01e-1e7a113b8890" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B404C85CEFB4AB5871191A62FE3E606 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:49:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:21 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fb06375a-cf34-4af6-8486-041ec09fbe5d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12686,Microsoft.Compute/GetVMImageFromLocation30Min;73686" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "95c2379e-7a67-4b7b-b009-1fb0bdf729c1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/263f8a67-7853-4635-83f4-77d48725808c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5e1dd5ea-3e2a-436e-856c-e6a849bfa204" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214921Z:5e1dd5ea-3e2a-436e-856c-e6a849bfa204" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 21D2482E649244A7B3E2B80A06A9B60D Ref B: MNZ221060618031 Ref C: 2025-06-02T21:49:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:21 GMT" + ], + "Content-Length": [ + "1307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "267e198e-3d2d-421e-ae81-98eef98563bf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12685,Microsoft.Compute/GetVMImageFromLocation30Min;73685" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "38a9ba30-1cc8-4e95-b4ac-c73f1bb69292" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0d296b52-4588-45f2-bdb9-fdd67696b39b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "35df4c08-27d1-486d-bad8-5dfc63c8cff0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214921Z:35df4c08-27d1-486d-bad8-5dfc63c8cff0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 84EE44F74F1147B6B3DBFA8D3D2824F5 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:49:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:20 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5573f83a-ee99-40e5-8c43-938f83877d39" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12684,Microsoft.Compute/GetVMImageFromLocation30Min;73684" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "cb700d38-16df-4a90-a50b-b4d56258faa1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d80372c2-d532-4cd4-96c5-ba013fac8a6f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "87039687-d191-40aa-a962-21829f227433" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214921Z:87039687-d191-40aa-a962-21829f227433" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0DC56CE7BD9C4F5D99ADD7AFDB14BF6C Ref B: MNZ221060608033 Ref C: 2025-06-02T21:49:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:21 GMT" + ], + "Content-Length": [ + "1226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro-zh-cn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8temgtY24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f02f8e64-1c68-49b5-86ac-970eb7aeec86" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15861,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43861" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "1e428474-fb3e-4f16-828a-e35c24472dd6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6b15539f-af3b-4a21-a27d-fde973bdc833" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "854e3cb0-2c10-42d3-a581-d689dc48430c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214921Z:854e3cb0-2c10-42d3-a581-d689dc48430c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 15130CFE6D4F4B1DBF693C7B2A3368F2 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:49:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:21 GMT" + ], + "Content-Length": [ + "2173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3459.250221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.3459.250221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro-zh-cn/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8temgtY24vdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "63bc2bad-6e8e-48d9-a89e-24eadffdce46" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12683,Microsoft.Compute/GetVMImageFromLocation30Min;73683" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f866e565-e17c-41d3-b93f-9e747d708db0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bee34e5b-d65a-434d-b2c2-104e65ba55d0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "62686155-a9d8-496e-a3ea-2941b00fa1d5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214922Z:62686155-a9d8-496e-a3ea-2941b00fa1d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B349D78C9F945C3AE4AC04F165C394B Ref B: MNZ221060609035 Ref C: 2025-06-02T21:49:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:21 GMT" + ], + "Content-Length": [ + "1313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro-zh-cn/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8temgtY24vdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c580fb9b-757e-471b-af46-130958715098" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12682,Microsoft.Compute/GetVMImageFromLocation30Min;73682" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ea2cf7e4-11fd-44f3-98ad-41c2ca77f675" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/57ac2469-45be-4ae6-8eb1-36d07af66d11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "44864766-10a3-4630-ad05-7dee514a525a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214922Z:44864766-10a3-4630-ad05-7dee514a525a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AEF69AEDD6EA43E4A1EA49A262BA34E9 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:49:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:21 GMT" + ], + "Content-Length": [ + "1313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro-zh-cn/versions/26100.3459.250221?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8temgtY24vdmVyc2lvbnMvMjYxMDAuMzQ1OS4yNTAyMjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9e23df94-628c-4e1d-950d-0b79345a0e17" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12681,Microsoft.Compute/GetVMImageFromLocation30Min;73681" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "6da208ca-86be-4b27-ad71-52313a52871f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/883f7f3c-67ec-4c38-ab54-5b57966d8236" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f1222d5c-2a5e-411d-8289-1086b73d761b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214922Z:f1222d5c-2a5e-411d-8289-1086b73d761b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 34EF304B5D5E452FB1DC0EA2A56E4F15 Ref B: MNZ221060610047 Ref C: 2025-06-02T21:49:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:21 GMT" + ], + "Content-Length": [ + "1313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3459.250221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.3459.250221\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro-zh-cn/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8temgtY24vdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5d821d37-d4c0-4ff0-a54c-97cfd6aa7e27" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12680,Microsoft.Compute/GetVMImageFromLocation30Min;73680" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "059d8a98-73c1-4693-8fb1-bbd1234c11b8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bc60c982-9184-4639-9035-d73be8aa6598" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6c3d4a12-331d-4bbf-8f53-102c8aae479e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214922Z:6c3d4a12-331d-4bbf-8f53-102c8aae479e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 848DBC8D056048AD917C75E1926A6362 Ref B: MNZ221060619037 Ref C: 2025-06-02T21:49:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:21 GMT" + ], + "Content-Length": [ + "1313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro-zh-cn/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8temgtY24vdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3a9da8c3-db70-409c-843f-2a49b5389b47" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12679,Microsoft.Compute/GetVMImageFromLocation30Min;73679" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "4ce71c99-c910-4bcf-89cf-f9dc633c3c03" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cf3938b2-cf02-4cdb-a1b0-0541cd90d040" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "374a3d2d-70c1-4c70-a4de-cbf21b543713" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214922Z:374a3d2d-70c1-4c70-a4de-cbf21b543713" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F154CAB816E4E71830C725A3934D5BB Ref B: MNZ221060608017 Ref C: 2025-06-02T21:49:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:22 GMT" + ], + "Content-Length": [ + "1313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro-zh-cn/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8temgtY24vdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "38427794-2b23-48cc-82df-f81d7ae33366" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12678,Microsoft.Compute/GetVMImageFromLocation30Min;73678" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "38e1f259-b3ff-49f6-b212-1e5b5f80d928" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2c02a5aa-3ca7-40dc-8e84-1f32d4ba6d11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bf150dfa-40fd-4d65-89c9-b1e88f44f0f5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214922Z:bf150dfa-40fd-4d65-89c9-b1e88f44f0f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9043DCF6A7294D2F813D7248AA2FE08E Ref B: MNZ221060608021 Ref C: 2025-06-02T21:49:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:21 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pro-zh-cn/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm8temgtY24vdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "971655df-c30f-4fe1-bb20-7bc844c2c050" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12677,Microsoft.Compute/GetVMImageFromLocation30Min;73677" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "1e8065ca-9c22-455c-b074-08ad0524e52e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/eff91264-dcc7-400d-a10c-9eda0d1f7410" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7fdccb91-eafd-45f3-8a33-b32cfc29b5aa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214922Z:7fdccb91-eafd-45f3-8a33-b32cfc29b5aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7B561E07048C40658FC5531ADB86BCAB Ref B: MNZ221060619039 Ref C: 2025-06-02T21:49:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:22 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pro-zh-cn/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pron/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "18dccf98-44f4-42b1-bf22-507a9c8bd151" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15860,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43860" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "8017e801-7521-4088-9cd1-90ae759a608b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9a61fd6b-c978-46b0-9f14-2e92edd347ff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "882e2325-bc65-4820-9a8e-0fb14402f1b2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214922Z:882e2325-bc65-4820-9a8e-0fb14402f1b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9DD9B435E0B04DBE96935F40523D2543 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:49:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:22 GMT" + ], + "Content-Length": [ + "2138" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3459.250221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.3459.250221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pron/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm9uL3ZlcnNpb25zLzI2MTAwLjI4OTQuMjUwMTEzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1c5f4173-2340-4fde-90bd-74d55b1b4332" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12676,Microsoft.Compute/GetVMImageFromLocation30Min;73676" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "18eb373a-2eca-4505-a7d4-2dbe769f8ad3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/25c4d2bb-fe88-4ff4-8a14-ff580f74aaf2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e17e6044-99f2-4831-ad7e-d4fbd8944366" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214922Z:e17e6044-99f2-4831-ad7e-d4fbd8944366" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EF9673DABC0E4D97A2684ED16ED1D527 Ref B: MNZ221060619023 Ref C: 2025-06-02T21:49:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:22 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pron/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm9uL3ZlcnNpb25zLzI2MTAwLjMxOTQuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d3b1cebb-2ac7-44ac-9807-4750359c5740" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12675,Microsoft.Compute/GetVMImageFromLocation30Min;73675" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "2b85eb09-baa1-4497-87b1-90b04d5827c0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6c57993c-9745-4d95-b19d-31b7a94b4ed5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8a97d79f-7219-43ab-a4a2-f0644103f70e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214923Z:8a97d79f-7219-43ab-a4a2-f0644103f70e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A76AA297A76C46A7837B7F1597984B35 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:49:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:22 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pron/versions/26100.3459.250221?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm9uL3ZlcnNpb25zLzI2MTAwLjM0NTkuMjUwMjIxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "79237f06-c6ca-4d96-8b9e-7aa713f4ea2e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12674,Microsoft.Compute/GetVMImageFromLocation30Min;73674" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "4ca5a7cf-2350-4f9c-a814-3f3986eff8ce" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ee365e60-d495-4f67-923c-04e41d7970e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "26917758-d774-463a-abf1-d20aac08c306" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214923Z:26917758-d774-463a-abf1-d20aac08c306" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C0B50A5D9D3E44459F0BACFDDD36603B Ref B: MNZ221060609029 Ref C: 2025-06-02T21:49:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:22 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3459.250221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.3459.250221\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pron/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm9uL3ZlcnNpb25zLzI2MTAwLjM0NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0b9b8e9a-292e-4f46-82b1-10957768498c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12673,Microsoft.Compute/GetVMImageFromLocation30Min;73673" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b5b14970-cc30-4086-a493-6a505ee6ddbd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0c4237df-c56b-45a7-98ec-efc6142e1e54" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "48b50d01-307c-4e8b-a9d4-81b3da2c1e5e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214923Z:48b50d01-307c-4e8b-a9d4-81b3da2c1e5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2BBBAC8DE71944829BFDE2186026722D Ref B: MNZ221060618035 Ref C: 2025-06-02T21:49:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:23 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pron/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm9uL3ZlcnNpb25zLzI2MTAwLjM3NzUuMjUwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d7794099-665e-4f82-90fd-9b2c8bdb4c62" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12672,Microsoft.Compute/GetVMImageFromLocation30Min;73672" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0e1d08ac-4eb7-41a7-8cb2-f814d7256784" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a613ed2c-2c3d-481c-aaea-f622a9634e50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7a946c57-3ae3-4ae5-88b6-8fb838305512" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214923Z:7a946c57-3ae3-4ae5-88b6-8fb838305512" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8A58B9F8BCA4452FB0AA873A81D7893B Ref B: MNZ221060619009 Ref C: 2025-06-02T21:49:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:23 GMT" + ], + "Content-Length": [ + "1308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pron/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm9uL3ZlcnNpb25zLzI2MTAwLjQwNjEuMjUwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b45b88fd-cee5-46a9-94b9-b6080d802321" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12671,Microsoft.Compute/GetVMImageFromLocation30Min;73671" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ecbfd55c-7114-4f5a-85a8-0145700795ea" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b1cfbee7-81c8-4d04-bbc6-925a5ad73a02" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "08c23614-c729-4d8e-a105-16a18ea5e7aa" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214923Z:08c23614-c729-4d8e-a105-16a18ea5e7aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 14049EC730DC4FFFA64128FD4B66A606 Ref B: MNZ221060618009 Ref C: 2025-06-02T21:49:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:23 GMT" + ], + "Content-Length": [ + "1227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-11/skus/win11-24h2-pron/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTExL3NrdXMvd2luMTEtMjRoMi1wcm9uL3ZlcnNpb25zLzI2MTAwLjQwNjYuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ad02a175-b03f-41a9-a10f-6baae4cdcab6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12670,Microsoft.Compute/GetVMImageFromLocation30Min;73670" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "2d6a5deb-e245-45c7-a610-e5e07824169b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0f37a82c-dad7-4360-9be5-d0b4cbfeed84" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e948ccbe-20af-41a8-a11c-730017c260c2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214923Z:e948ccbe-20af-41a8-a11c-730017c260c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8932F2FACA94443B8FA53BF3D12EEEEC Ref B: MNZ221060608025 Ref C: 2025-06-02T21:49:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:23 GMT" + ], + "Content-Length": [ + "1227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-11/Skus/win11-24h2-pron/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-7/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTcvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "091a7465-cd9d-4df0-814f-8be5a0da7d1b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9995,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29995" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "c27b0830-6553-4695-b831-83b2b89e8f46" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5e3dfb17-789a-4040-9bc2-cca6bad753d0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b00ab440-de72-4e10-9087-62d34dfe5177" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214923Z:b00ab440-de72-4e10-9087-62d34dfe5177" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FDCD34C2A8514B478FF3BC8863E35BB6 Ref B: MNZ221060609019 Ref C: 2025-06-02T21:49:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:22 GMT" + ], + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win7-enterprise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-7/Skus/win7-enterprise\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-7/skus/win7-enterprise/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLTcvc2t1cy93aW43LWVudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6b6640b8-a287-424c-ba3e-2090fa8a79ef" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15859,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43859" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ac10c5ad-50fe-4ef4-adde-1245def9845f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a1fab5dd-a240-449e-868d-dbfbbe88ec7c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f8e241ce-af64-4511-9794-e22d14a29f16" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214924Z:f8e241ce-af64-4511-9794-e22d14a29f16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A6A76413453E41AEA7AC55AA459DBB1D Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:23 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0d104ea5-3b3e-475e-a9bc-3232a1401dd4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9994,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29994" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "fde73439-6dd4-43bb-b5c3-988813c9835d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2b765df7-0bf4-4f92-9047-589d8eb8882a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ab462f37-a9a6-41ee-99b2-2629be5b0069" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214924Z:ab462f37-a9a6-41ee-99b2-2629be5b0069" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CBF88FC7685C471BAF3963B2B4FEE563 Ref B: MNZ221060608049 Ref C: 2025-06-02T21:49:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:23 GMT" + ], + "Content-Length": [ + "9549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-ent-cpc-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/19h2-ent-cpc-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19h2-ent-cpc-m365-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/19h2-ent-cpc-m365-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-ent-cpc-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h1-ent-cpc-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h1-ent-cpc-os\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h1-ent-cpc-os\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-ent-cpc-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20h2-ent-cpc-m365-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-ent-cpc-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/21h1-ent-cpc-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-ent-cpc-m365-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/21h1-ent-cpc-m365-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-ent-cpc-os\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/21h1-ent-cpc-os\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"21h1-ent-cpc-os-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/21h1-ent-cpc-os-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-ent-cpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-ent-cpc-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-21h2-ent-cpc-m365-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-ent-cpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-ent-cpc-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-22h2-ent-cpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-22h2-ent-cpc-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-22h2-ent-cpc-os\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-ent-cpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-ent-cpc-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-ent-cpc-os\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-24h2-ent-cpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-24h2-ent-cpc-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc-m365\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/19h2-ent-cpc-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8xOWgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a548a2bc-97fe-4f40-8722-966ab05cb2d6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15858,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43858" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "2d28b153-7047-411c-992e-8bf651e97e70" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3727ee5a-b5b3-45a4-b6cb-523fc7ea8984" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a8f46656-8538-4a93-a4eb-a2149b967cd8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214924Z:a8f46656-8538-4a93-a4eb-a2149b967cd8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C8508C93580B4CBD86039323652854C3 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:49:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:24 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/19h2-ent-cpc-m365-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8xOWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "03654d37-958e-4195-b498-5258833387b1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15857,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "83a11850-72a3-4b97-9202-bfaddd2310fa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0af1cf1a-3978-4325-928e-a403c17a7468" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "346969d3-63d2-442d-9738-cf316b14f38a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214924Z:346969d3-63d2-442d-9738-cf316b14f38a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8B224A09AE254B779C317DDD29A0EE77 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:49:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:24 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h1-ent-cpc-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgxLWVudC1jcGMtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dd883aff-6f7d-48ef-beba-4a4e82dd7e99" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15856,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43856" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "2efdf74b-a4be-486c-88e4-cf63e5efbe19" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b2c8315f-a8d9-4cf4-8644-7c2ff202fef3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "889274b3-7c4e-4558-8457-1e76dfe84d7e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214924Z:889274b3-7c4e-4558-8457-1e76dfe84d7e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FC8EDB377B724EF18F385462B1A2F4C0 Ref B: MNZ221060619049 Ref C: 2025-06-02T21:49:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:24 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h1-ent-cpc-os/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgxLWVudC1jcGMtb3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d97d6dcb-5066-41c2-b170-f4f8cf7d39e2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15855,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43855" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "56c5b22f-05dc-415e-9589-49018f1d9af2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/37836f23-a30d-432a-822a-054010fd96af" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "775beaef-d02d-48c0-b97a-355bd101179f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214924Z:775beaef-d02d-48c0-b97a-355bd101179f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E3EA6151D7444B33A05747F6D22DACF5 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:24 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ce2de0ce-498b-4c1d-922e-febe9fb89307" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15854,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43854" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f30c451b-b853-4a2a-8508-81358ae10bf8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fdd2eddf-675c-463f-90bc-af66a68a67a7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "35cd6b5f-9aa5-49e6-a7ec-b74e0f7f4906" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214924Z:35cd6b5f-9aa5-49e6-a7ec-b74e0f7f4906" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7D4AAF1DF4B44B85BF7ADCB10128EA2D Ref B: MNZ221060618045 Ref C: 2025-06-02T21:49:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:24 GMT" + ], + "Content-Length": [ + "315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.1889.220810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365/Versions/19042.1889.220810\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365/versions/19042.1889.220810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8xOTA0Mi4xODg5LjIyMDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "01d14672-258e-4519-bd2b-cf58d57e2558" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12669,Microsoft.Compute/GetVMImageFromLocation30Min;73669" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "79b401ea-03ac-4121-8430-7f21c8d3c73d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a6b66eec-d7d0-459b-a436-66ee90e0e270" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a6ffd09d-ace8-4dfd-a910-44d71284ac99" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214924Z:a6ffd09d-ace8-4dfd-a910-44d71284ac99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4A6DA700D1604B8BA1017CC0207588D0 Ref B: MNZ221060610035 Ref C: 2025-06-02T21:49:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:24 GMT" + ], + "Content-Length": [ + "1057" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 68721574400\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.1889.220810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365/Versions/19042.1889.220810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0797f137-f4f4-40c1-baa8-bb240f1ac332" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15853,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43853" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "04dd3fb6-ed72-419e-b12e-3c9c12c10d99" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5fadec69-1f3f-44d2-8bd0-ca85b20b5051" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2af602bb-5e66-47fe-b6c6-3390628bae6d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214925Z:2af602bb-5e66-47fe-b6c6-3390628bae6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 37176DAB203049C79404AAF04EF28B51 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:49:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:24 GMT" + ], + "Content-Length": [ + "3468" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.1889.220810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.1889.220810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2006.220913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2006.220913\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2132.221018\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2132.221018\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2251.221108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2251.221108\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2364.221213\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2364.221213\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2486.230110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2486.230110\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2604.230214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2604.230214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2728.230314\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2728.230314\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230411\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2846.230411\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2846.230419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2965.230509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365-g2/versions/19042.1889.220810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0Mi4xODg5LjIyMDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e1af675a-b644-4c7e-b9dc-a30af5323d43" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12668,Microsoft.Compute/GetVMImageFromLocation30Min;73668" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3aa25bc9-653c-4408-b008-00e620b7e89e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d3b61268-4f97-49c1-9adf-e252d5f68e17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "a2c2e0f9-956b-4388-96f0-692e03a41e17" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214925Z:a2c2e0f9-956b-4388-96f0-692e03a41e17" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 60C74A64CE3B459AB5E427FE22A802C9 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:49:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:24 GMT" + ], + "Content-Length": [ + "1165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.1889.220810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.1889.220810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365-g2/versions/19042.2006.220913?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0Mi4yMDA2LjIyMDkxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "46adeebb-1ca8-4318-8591-6412e36bd1d3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12667,Microsoft.Compute/GetVMImageFromLocation30Min;73667" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f09acd41-fbe7-497f-a5dc-26d461d784cc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1e9f733a-f11d-4b32-a3b6-fa4055ccdaec" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cfe709e9-fa6f-4003-bbff-9c096cd5e820" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214925Z:cfe709e9-fa6f-4003-bbff-9c096cd5e820" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CE4BE46E771C456F818D976E9F2CD829 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:49:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:24 GMT" + ], + "Content-Length": [ + "1165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2006.220913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2006.220913\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365-g2/versions/19042.2132.221018?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0Mi4yMTMyLjIyMTAxOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3b4e4716-a782-448a-9d73-04cc2c55f9c3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12666,Microsoft.Compute/GetVMImageFromLocation30Min;73666" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "133fb797-9178-41ea-9650-db64a0aae96d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2d55fe47-b801-437d-bf19-fda384aa3b6f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "902b5d19-8b6a-468e-a3c2-834fbb8447af" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214925Z:902b5d19-8b6a-468e-a3c2-834fbb8447af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 146BC2C016FF496AA7AC97E7BB150B94 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:49:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:24 GMT" + ], + "Content-Length": [ + "1165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2132.221018\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2132.221018\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365-g2/versions/19042.2251.221108?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0Mi4yMjUxLjIyMTEwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1c582f89-763a-44b6-97e8-6dbbef8c0d11" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12665,Microsoft.Compute/GetVMImageFromLocation30Min;73665" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0ef791c4-2c5e-4777-8591-899de86710e9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/faa228b9-840b-4060-9a60-6b1b31856771" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "687e6685-0f25-4a33-8695-f42f599ef797" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214925Z:687e6685-0f25-4a33-8695-f42f599ef797" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DEC2D053A35B47ACBF8950B47A954BE9 Ref B: MNZ221060609007 Ref C: 2025-06-02T21:49:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:25 GMT" + ], + "Content-Length": [ + "1165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2251.221108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2251.221108\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365-g2/versions/19042.2364.221213?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0Mi4yMzY0LjIyMTIxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "79aff408-bf83-46d9-a176-dd13fc4a71b5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12664,Microsoft.Compute/GetVMImageFromLocation30Min;73664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "fa2a6e35-6558-46a0-a93c-062817ae74c0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5fcc9f2f-7b35-40e8-a727-11d5610be27e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3a67421b-e9c0-41c4-a496-e65206066ff8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214925Z:3a67421b-e9c0-41c4-a496-e65206066ff8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3DDE48B8779046CB870B0126BCD75DC2 Ref B: MNZ221060618037 Ref C: 2025-06-02T21:49:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:25 GMT" + ], + "Content-Length": [ + "1165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2364.221213\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2364.221213\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365-g2/versions/19042.2486.230110?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0Mi4yNDg2LjIzMDExMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6f8b2349-5f08-4b9d-aa73-c8d9c8def35b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12663,Microsoft.Compute/GetVMImageFromLocation30Min;73663" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "1674fc23-589b-4c39-8858-2145aad53a9b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2b5345b6-9485-41f2-92ba-80ab5e9f3aaa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "38c301fa-d9c5-45a7-8ddd-6d9c1c916d6a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214925Z:38c301fa-d9c5-45a7-8ddd-6d9c1c916d6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0E65CE72EC3D4BA19FB0B79D3395BEDC Ref B: MNZ221060609027 Ref C: 2025-06-02T21:49:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:25 GMT" + ], + "Content-Length": [ + "1165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2486.230110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2486.230110\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365-g2/versions/19042.2604.230214?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0Mi4yNjA0LjIzMDIxND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f14ad1e0-4010-4eef-adc3-351ac1d8bc9f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12662,Microsoft.Compute/GetVMImageFromLocation30Min;73662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d5578864-3f63-4e30-b47d-e6dab4f718de" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/127717a6-4a5d-4a5b-bae6-434f3ed1e6f9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "31769c2c-7a4c-477e-a187-5da7cdc70709" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214926Z:31769c2c-7a4c-477e-a187-5da7cdc70709" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5B244785ACEC41EFA6D5777C24439C2E Ref B: MNZ221060609039 Ref C: 2025-06-02T21:49:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:25 GMT" + ], + "Content-Length": [ + "1165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2604.230214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2604.230214\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365-g2/versions/19042.2728.230314?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0Mi4yNzI4LjIzMDMxND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e84a1adb-49cd-430d-8975-47bfe6077487" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12661,Microsoft.Compute/GetVMImageFromLocation30Min;73661" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d5ad734c-1c23-499f-ac37-1e69cd18bf22" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/340a5741-04cc-4f9d-a41a-706e87b1b737" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "776e35ed-3698-4898-a369-3087ae6b30e6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214926Z:776e35ed-3698-4898-a369-3087ae6b30e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3DF69044CFAC43309449553A992CF865 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:49:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:26 GMT" + ], + "Content-Length": [ + "1165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2728.230314\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2728.230314\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365-g2/versions/19042.2846.230411?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0Mi4yODQ2LjIzMDQxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "acbfa21a-4671-47e7-8557-bc0153eb1b72" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12660,Microsoft.Compute/GetVMImageFromLocation30Min;73660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "242b491f-43e6-4603-b68e-88a9a47b2f1f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/73c2a1a0-0b96-492c-ae1e-503493c3edf2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "eee8762d-6cc3-4e76-98ca-4c3d0b069034" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214926Z:eee8762d-6cc3-4e76-98ca-4c3d0b069034" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 63FF18ADBE0742EE990D183AE271C08B Ref B: MNZ221060619053 Ref C: 2025-06-02T21:49:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:25 GMT" + ], + "Content-Length": [ + "1165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230411\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2846.230411\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365-g2/versions/19042.2846.230419?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0Mi4yODQ2LjIzMDQxOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c1c67fc6-f76a-4956-b2e8-1dd315f4e165" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12659,Microsoft.Compute/GetVMImageFromLocation30Min;73659" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "1530f3af-e884-4c54-ba28-7c219ff15a3c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5ef4102a-caaa-4e93-9b87-abe00b2728a8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d6e9a178-29aa-48db-a96c-712fa4e5015a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214926Z:d6e9a178-29aa-48db-a96c-712fa4e5015a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E20CCF22A340474D8887B35F5993D2AD Ref B: MNZ221060618021 Ref C: 2025-06-02T21:49:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:25 GMT" + ], + "Content-Length": [ + "1165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2846.230419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2846.230419\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/20h2-ent-cpc-m365-g2/versions/19042.2965.230509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMGgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0Mi4yOTY1LjIzMDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9a84f7b9-b9e5-4632-944d-be99a6b39280" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12658,Microsoft.Compute/GetVMImageFromLocation30Min;73658" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b973eab6-c9a3-4290-bc25-57932db0bb36" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0b8fb9f1-578a-46c5-8b80-cb58eec2d9d4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c0b638e3-ff42-48f3-b5f3-092aeef41f06" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214926Z:c0b638e3-ff42-48f3-b5f3-092aeef41f06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB7FD7736C7144879A8CD557CB41795D Ref B: MNZ221060610017 Ref C: 2025-06-02T21:49:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:25 GMT" + ], + "Content-Length": [ + "1165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19042.2965.230509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/20h2-ent-cpc-m365-g2/Versions/19042.2965.230509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/21h1-ent-cpc-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMWgxLWVudC1jcGMtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bddaafd4-08ec-4874-846c-8f0e82feb937" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15852,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43852" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "a1347bd4-4d48-4774-8447-faa00dc899cd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/716dce88-9226-4f82-a353-386264468ad0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b5d9d17c-d3b7-4386-a2af-40c144702b6b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214926Z:b5d9d17c-d3b7-4386-a2af-40c144702b6b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C14EE83E011A4348B4AF00F448713C52 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:49:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:25 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/21h1-ent-cpc-m365-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMWgxLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a4350cdf-690e-4e4c-8b45-d0316a6e08f9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15851,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43851" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "54978b66-1b52-4c00-ad13-7bf149300543" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a7372ee5-ff9a-454a-9b7a-dd48d75f814c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e832c104-d22f-42e2-9204-049f7ad26ab4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214926Z:e832c104-d22f-42e2-9204-049f7ad26ab4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3FD0AD8E015C48D291B754403FA0FB0B Ref B: MNZ221060619053 Ref C: 2025-06-02T21:49:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:26 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/21h1-ent-cpc-os/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMWgxLWVudC1jcGMtb3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "25366ab9-f7a4-402f-abb3-b726369ceac4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15850,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43850" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "865d7736-c13d-4d2c-85a6-188cf79067ca" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0e15894f-dcd7-4162-9414-040d232e3a35" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d5633c56-83b3-4ef3-b0b3-e9c996c964f5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214926Z:d5633c56-83b3-4ef3-b0b3-e9c996c964f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B15CA916222A4BC4BA7400CB57232D38 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:49:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:26 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/21h1-ent-cpc-os-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy8yMWgxLWVudC1jcGMtb3MtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bfb3458f-6969-4152-ac30-7a205dbdc3e6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15849,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43849" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "6be9e28e-16b8-4536-80eb-a6b82927f3b0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4cd0d15d-424d-44e8-84a9-8632fabc6535" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0993dd36-6a62-4352-91f9-6035dccfa8f2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214926Z:0993dd36-6a62-4352-91f9-6035dccfa8f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9EEC9E7286B84E8A8E3B476499E21517 Ref B: MNZ221060608047 Ref C: 2025-06-02T21:49:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:26 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c9b2192f-40c3-4333-b3af-76ac68db2153" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15848,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43848" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "82b0b7d8-b797-4049-9317-e835d6bfaa7a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/810d54e1-10bd-43d3-9c4b-99fca8c89368" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4cbc6c51-a0ec-4bff-8da4-24f33d633dc9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214926Z:4cbc6c51-a0ec-4bff-8da4-24f33d633dc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1D24C13456204015A01DE6D5D7BF1696 Ref B: MNZ221060609007 Ref C: 2025-06-02T21:49:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:26 GMT" + ], + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc/Versions/19044.4412.240514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240611\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc/Versions/19044.4529.240611\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc/versions/19044.4412.240514?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMvdmVyc2lvbnMvMTkwNDQuNDQxMi4yNDA1MTQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "15495d7e-b2c0-42b6-80af-cb673f448f7d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12657,Microsoft.Compute/GetVMImageFromLocation30Min;73657" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3e1a1543-c9b1-42f1-9300-3b53afca7799" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f09c0329-f8d5-40ef-8159-e9d2f278cf27" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cf431164-bbfb-4f99-89e3-c22092d77260" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214927Z:cf431164-bbfb-4f99-89e3-c22092d77260" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D01F5F715C3547DE853F28E0761EC32E Ref B: MNZ221060618029 Ref C: 2025-06-02T21:49:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:26 GMT" + ], + "Content-Length": [ + "1180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc/Versions/19044.4412.240514\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc/versions/19044.4529.240611?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMvdmVyc2lvbnMvMTkwNDQuNDUyOS4yNDA2MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "aa72bb9a-81f0-4e39-bbcd-6be3c0951875" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12656,Microsoft.Compute/GetVMImageFromLocation30Min;73656" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b91f159b-15f1-402e-9043-e16bad07845e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dd3229fa-b3d0-47b0-b78a-233fb1ca8cea" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6019e115-0b07-4f77-877c-b3308c45f32d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214927Z:6019e115-0b07-4f77-877c-b3308c45f32d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CE8B7E6112DC4759BA0B23E13FD809B0 Ref B: MNZ221060609007 Ref C: 2025-06-02T21:49:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:26 GMT" + ], + "Content-Length": [ + "1180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240611\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc/Versions/19044.4529.240611\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ffe2f9d5-8551-42c0-a7ea-0dbcd4e581f8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15847,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43847" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f16f0791-a6df-4c17-8e7c-178246a468c0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3222ce0e-c218-4f00-91d6-c64c62a41243" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9d8a74a6-e1c9-49ed-9780-69594cf7984b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214927Z:9d8a74a6-e1c9-49ed-9780-69594cf7984b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 37F7D84215ED45AA9F4E617DC8D2C9B5 Ref B: MNZ221060608025 Ref C: 2025-06-02T21:49:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:27 GMT" + ], + "Content-Length": [ + "321" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.1889.220810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365/Versions/19044.1889.220810\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365/versions/19044.1889.220810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8xOTA0NC4xODg5LjIyMDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d82f863b-f0ae-4719-b117-4d9137da390d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12655,Microsoft.Compute/GetVMImageFromLocation30Min;73655" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d5088017-9d6c-46f2-b820-ed5d780218cc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c582c065-8343-493e-934a-413c6fb73446" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b7f24ce4-2b8e-48d2-b8f1-a6220aa69dc7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214927Z:b7f24ce4-2b8e-48d2-b8f1-a6220aa69dc7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8AEA43DA978C4503BFEAEA1B0F003E88 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:49:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:26 GMT" + ], + "Content-Length": [ + "1058" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 68721574400\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.1889.220810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365/Versions/19044.1889.220810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5f685ec8-faa3-4cda-9a59-cfbc63d2de12" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15846,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43846" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ddb46e46-fc04-496e-be9e-10c4f64596f9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/59b91caf-fc0f-42b8-9756-5e3a707c99d3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "30777fa2-cf94-4e0c-bce6-a3f8f4591466" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214927Z:30777fa2-cf94-4e0c-bce6-a3f8f4591466" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 82559D3DB0FC4DF7A9FBE5170CDEB017 Ref B: MNZ221060619029 Ref C: 2025-06-02T21:49:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:27 GMT" + ], + "Content-Length": [ + "7707" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.1889.220810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.1889.220810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2006.220913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2006.220913\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2132.221018\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2132.221018\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2251.221108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2251.221108\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2364.221213\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2364.221213\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2486.230110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2486.230110\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2604.230214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2604.230214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2728.230314\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2728.230314\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2846.230411\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2846.230411\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2846.230419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2846.230419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2965.230509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2965.230509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3086.230621\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3208.230711\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3208.230711\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3324.230808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3324.230808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3448.230912\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3448.230912\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3570.231010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3570.231010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3693.231114\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3693.231114\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3803.231212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3803.231212\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3930.240109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3930.240109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4046.240213\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.4046.240213\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4170.240312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.4170.240312\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4291.240409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.4291.240409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.4412.240514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240611\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.4529.240611\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.1889.220810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4xODg5LjIyMDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6c7bf449-e1bb-47a9-a531-e0a52b8bd070" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12654,Microsoft.Compute/GetVMImageFromLocation30Min;73654" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "77f9b499-ac6b-4795-b79d-fab49239624f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/060163e0-f57b-4d4c-8bae-e6c757032df0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "93c0bb79-e40a-4351-8049-70c25f0848a5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214927Z:93c0bb79-e40a-4351-8049-70c25f0848a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E6D498687F7F4A23BD9D7D8C8810AD90 Ref B: MNZ221060618029 Ref C: 2025-06-02T21:49:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:26 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.1889.220810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.1889.220810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.2006.220913?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4yMDA2LjIyMDkxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "16b4d2f2-4f14-4127-9e67-f51ac52c9e31" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12653,Microsoft.Compute/GetVMImageFromLocation30Min;73653" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "bfed2540-32c0-43f0-a6d7-eec36ec6d621" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7fd90254-5cf3-4430-b801-64a1e0970093" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "14df88f3-2454-4e2c-8753-58d59568d519" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214927Z:14df88f3-2454-4e2c-8753-58d59568d519" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 30D0ABC484D546F391E605B3B8F2F099 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:49:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:27 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2006.220913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2006.220913\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.2132.221018?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4yMTMyLjIyMTAxOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5606ea92-3c1f-40a9-a543-61a4314adb13" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12652,Microsoft.Compute/GetVMImageFromLocation30Min;73652" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "869d7e51-5b42-48e4-b788-51161888885a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/69e1a5f6-f5b0-4683-94b4-27f452b24b04" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ac8f8e02-224b-4a4d-ac5c-289588e10ead" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214927Z:ac8f8e02-224b-4a4d-ac5c-289588e10ead" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E24B4104D0744154857EF725C99EF747 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:49:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:27 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2132.221018\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2132.221018\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.2251.221108?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4yMjUxLjIyMTEwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f72edd43-7974-4deb-a33f-008ae1e7c7b4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12651,Microsoft.Compute/GetVMImageFromLocation30Min;73651" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "9113e51b-a61f-453c-b15e-5a3b424ff5d2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/66074085-97d2-47a6-9e01-923ddb42a397" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ef85a6dd-8844-4fdf-9b7f-9a263fe2d731" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214928Z:ef85a6dd-8844-4fdf-9b7f-9a263fe2d731" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9BF77235110245FB9739C974803DDD07 Ref B: MNZ221060610053 Ref C: 2025-06-02T21:49:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:27 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2251.221108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2251.221108\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.2364.221213?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4yMzY0LjIyMTIxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "93fdd11b-7241-4176-9c90-e9119f9ed6c7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12650,Microsoft.Compute/GetVMImageFromLocation30Min;73650" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "6c33c804-b081-4ae7-80bd-2cdea0149356" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d67c32b2-db64-426c-bc5c-b5fb7ab02b26" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0e3d9d31-e1cb-4afd-b4b5-ba816474a0b8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214928Z:0e3d9d31-e1cb-4afd-b4b5-ba816474a0b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F97B2764AEB24427A10831BB940560E7 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:49:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:27 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2364.221213\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2364.221213\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.2486.230110?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4yNDg2LjIzMDExMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ebe5ab7b-d2b4-4561-aa6d-42faba1f8e0a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12649,Microsoft.Compute/GetVMImageFromLocation30Min;73649" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "587e1eec-0d88-4ab3-ae6b-f56f7055f93c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/99aeb9b8-ea0f-426b-99a1-59625c8aea15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2cce01b5-2d95-417d-bccf-ff848266675a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214928Z:2cce01b5-2d95-417d-bccf-ff848266675a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5AAE16671AD845F5940EC3A0DD8056CE Ref B: MNZ221060609023 Ref C: 2025-06-02T21:49:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:28 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2486.230110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2486.230110\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.2604.230214?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4yNjA0LjIzMDIxND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "96465016-bbe8-416b-b7e0-211c0dedfb76" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12648,Microsoft.Compute/GetVMImageFromLocation30Min;73648" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "4d04336b-5268-443e-b6d1-ff4dd36b30af" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/679f6112-93cf-4aa3-ba9e-6c4d7d026181" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9ea96e56-9c07-4c5b-a2fa-224f77c5be41" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214928Z:9ea96e56-9c07-4c5b-a2fa-224f77c5be41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A6CA5EAA44F34E56AFB6474C88FB2EBF Ref B: MNZ221060619033 Ref C: 2025-06-02T21:49:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:27 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2604.230214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2604.230214\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.2728.230314?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4yNzI4LjIzMDMxND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7fff0189-3f1f-4f5c-9443-4e3ca61d8d74" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12647,Microsoft.Compute/GetVMImageFromLocation30Min;73647" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e8a96c16-c2af-4c47-a2b9-fff42dcd30c1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0ed142c1-9c79-4237-98dc-3e51239d09f1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "df88453a-b0be-4a70-8280-c1d9bd5d5e24" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214930Z:df88453a-b0be-4a70-8280-c1d9bd5d5e24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F943D55CCF3B4209915342ADAAF058D3 Ref B: MNZ221060609037 Ref C: 2025-06-02T21:49:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:29 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2728.230314\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2728.230314\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.2846.230411?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4yODQ2LjIzMDQxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "acb82618-8596-450e-b40a-fd68b240ee15" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12646,Microsoft.Compute/GetVMImageFromLocation30Min;73646" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "40ef0d3a-d48a-4500-b7f8-d4a8ff1b1867" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ec18b331-d907-4e62-aff0-9bfb25cd8d3a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "87f88ffb-3c55-4ada-bffa-cd466ef9e5b6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214930Z:87f88ffb-3c55-4ada-bffa-cd466ef9e5b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC1C81C4913641858F26C21765356B85 Ref B: MNZ221060609053 Ref C: 2025-06-02T21:49:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:29 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2846.230411\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2846.230411\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.2846.230419?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4yODQ2LjIzMDQxOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8485553c-7cc7-479c-9651-56f60ef9e565" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12645,Microsoft.Compute/GetVMImageFromLocation30Min;73645" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "762d9088-700a-460f-a916-512145052494" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/addcabf1-466a-49e6-9f6d-e2d0e4e2d6d7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3e58253d-a041-441a-95cb-cfc096340864" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214932Z:3e58253d-a041-441a-95cb-cfc096340864" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9C97E2AB0D774CDA9A4C5FAE7C90A71D Ref B: MNZ221060619021 Ref C: 2025-06-02T21:49:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:31 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2846.230419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2846.230419\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.2965.230509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4yOTY1LjIzMDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "84a48ff7-d24f-4f82-884b-4407064ae7ee" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12644,Microsoft.Compute/GetVMImageFromLocation30Min;73644" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0ac3c4bf-bf08-40c0-82ef-e0efb7e1cefc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f986ebd3-0865-447c-99ab-883f85a0c38c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "24e29837-eb24-4ce6-9396-90baee26aacd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214932Z:24e29837-eb24-4ce6-9396-90baee26aacd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC84894E69F14F4A8F7189E91995562C Ref B: MNZ221060610045 Ref C: 2025-06-02T21:49:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:31 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.2965.230509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.2965.230509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.3086.230621?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4zMDg2LjIzMDYyMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dbc303f0-3350-4bb0-b609-8a1b6d2c595f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12643,Microsoft.Compute/GetVMImageFromLocation30Min;73643" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "5b898347-89b7-4081-b677-a9b8cf5a819f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e88d1b2a-1bf0-46eb-a76e-b5b2ab560e64" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9257b443-ab3b-4221-afd7-b451dab43019" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214932Z:9257b443-ab3b-4221-afd7-b451dab43019" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 92195B181B9246E5B08FB393D7C3FE61 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:49:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:31 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3086.230621\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3086.230621\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.3208.230711?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4zMjA4LjIzMDcxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "029019c0-f4f8-4c99-89f3-d932b10090b1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12642,Microsoft.Compute/GetVMImageFromLocation30Min;73642" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "4c50631a-9fb0-470b-ba6d-993912a7130a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6ef66dc1-3857-4565-8c59-839122e78f03" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "de72d388-30ef-4c5f-9091-6e3a39e03bad" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214932Z:de72d388-30ef-4c5f-9091-6e3a39e03bad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5BAA9C1CA844410EB646B04D61583A94 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:49:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:32 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3208.230711\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3208.230711\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.3324.230808?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4zMzI0LjIzMDgwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "375ba415-2094-42da-844f-a740eac845c4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12641,Microsoft.Compute/GetVMImageFromLocation30Min;73641" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3e2043ca-bea7-4c85-a55b-64dfe94e6f6b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/47972bcd-5da6-4fc2-9cef-875ba12a32cf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4c30e91c-7c37-41a8-b3f2-f19582e03cea" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214932Z:4c30e91c-7c37-41a8-b3f2-f19582e03cea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E22C9397A3FE417D8FD0EB2E095BC941 Ref B: MNZ221060608047 Ref C: 2025-06-02T21:49:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:32 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3324.230808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3324.230808\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.3448.230912?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4zNDQ4LjIzMDkxMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c0ead9c0-a8dc-47ce-b3fe-9c84c00cca1f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12640,Microsoft.Compute/GetVMImageFromLocation30Min;73640" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "99c8539d-966f-40c5-843d-4cd54e9fc03a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7aa05057-e7ec-45ff-a738-496eebdd2bc2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4d1c335a-6cc2-4661-95ed-8aa4f2f30fe9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214932Z:4d1c335a-6cc2-4661-95ed-8aa4f2f30fe9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 78B77A1C44BF4081B3BEF20E486BEA5D Ref B: MNZ221060609039 Ref C: 2025-06-02T21:49:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:32 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3448.230912\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3448.230912\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.3570.231010?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4zNTcwLjIzMTAxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fb8a50e2-eb7a-47b8-853b-bfecaeeac5b6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12639,Microsoft.Compute/GetVMImageFromLocation30Min;73639" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "5a84bc6e-d247-4675-a90d-d43916427844" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7f34a522-7105-43ff-8298-f1d142a367d3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "26e7bb91-3cbc-43e8-9318-f49b4f039916" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214933Z:26e7bb91-3cbc-43e8-9318-f49b4f039916" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3708657EEEB9428EA247A62CC42BD9FD Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:32 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3570.231010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3570.231010\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.3693.231114?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4zNjkzLjIzMTExND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e11b98a9-b727-4757-9da9-4e0da8de6530" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12638,Microsoft.Compute/GetVMImageFromLocation30Min;73638" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "6a1917ac-bda9-4c06-a5e7-b65be5bad8d3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/efb03324-e1a7-440c-ba4c-a529d43cab9e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f0d34ce5-79f3-4c63-a5c5-e0efb0f1fdc3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214933Z:f0d34ce5-79f3-4c63-a5c5-e0efb0f1fdc3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5A8A7D579E99428E83D8895F9D1E149A Ref B: MNZ221060609039 Ref C: 2025-06-02T21:49:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:32 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3693.231114\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3693.231114\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.3803.231212?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4zODAzLjIzMTIxMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "38efaf11-3de6-466c-afb0-36bd35e28288" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12637,Microsoft.Compute/GetVMImageFromLocation30Min;73637" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ca005eff-3bf5-46cb-b9bc-676a03547f7a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a3add203-2b1a-4850-9a5e-0bd02b16edad" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b2e20302-f568-4c0b-baeb-3a0945d91f60" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214933Z:b2e20302-f568-4c0b-baeb-3a0945d91f60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F7337B3B73C444F583CAF12D6D6FBDBF Ref B: MNZ221060619025 Ref C: 2025-06-02T21:49:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:32 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3803.231212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3803.231212\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.3930.240109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC4zOTMwLjI0MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7ecaa3d5-19a9-4598-991e-c4d2f011d3cc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12636,Microsoft.Compute/GetVMImageFromLocation30Min;73636" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "284064a3-1af7-4aa9-a208-edfcff4b09c8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d9dd4c6b-9441-4cf7-82d0-6c4b0e0f2b45" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "48f283ac-5a81-43c1-ad55-d068579f44a3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214933Z:48f283ac-5a81-43c1-ad55-d068579f44a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A85D5CDCE7824CB9BA89AFFEC707A670 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:49:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:33 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.3930.240109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.3930.240109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.4046.240213?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC40MDQ2LjI0MDIxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d5680726-4967-4775-91ea-f44f3be6a790" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12635,Microsoft.Compute/GetVMImageFromLocation30Min;73635" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "2ce38d6d-cee1-41f7-9316-f692ab2a7bb1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/613d14cf-67e0-43c3-b3c5-a61875ce3934" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ef18cffa-31ae-446d-97a9-da9a50275f32" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214933Z:ef18cffa-31ae-446d-97a9-da9a50275f32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 70C416C522934EA997B4E8A4E84DBAA0 Ref B: MNZ221060609021 Ref C: 2025-06-02T21:49:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:32 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4046.240213\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.4046.240213\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.4170.240312?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC40MTcwLjI0MDMxMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1d71b5ef-19c8-4cbe-8182-891e38232c5a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12634,Microsoft.Compute/GetVMImageFromLocation30Min;73634" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "9d48738e-23e1-4f7b-931d-d46b695692d2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4328503a-f22a-4a0c-b6d7-02f487d6d98b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bccdfdfd-65e2-45e4-818b-8a3c1a851209" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214933Z:bccdfdfd-65e2-45e4-818b-8a3c1a851209" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C3B1A270397C41FE86D730A808E14C43 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:49:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:32 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4170.240312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.4170.240312\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.4291.240409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC40MjkxLjI0MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "92848ea6-a683-4a18-a81c-22861740b41b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12633,Microsoft.Compute/GetVMImageFromLocation30Min;73633" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "5274dec4-d9eb-407e-a253-5fb0c54686df" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0de30708-89c1-46bf-90f6-2bf63a9dd346" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b67e452d-b92c-429a-8765-f4bb46e0615c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214933Z:b67e452d-b92c-429a-8765-f4bb46e0615c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 89A6808B24B0470F8DD0DE59DA9767CC Ref B: MNZ221060608019 Ref C: 2025-06-02T21:49:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:33 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4291.240409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.4291.240409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.4412.240514?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC40NDEyLjI0MDUxND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4e3e1bc9-e80f-48b3-92ab-74b3c71b9e89" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12632,Microsoft.Compute/GetVMImageFromLocation30Min;73632" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3a664cff-be09-4e48-b304-4240c7ff7a36" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2610e91c-7ac7-4d7b-9355-7132f5deb540" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0d58a27b-65c8-498a-8125-f4afc8efa624" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214934Z:0d58a27b-65c8-498a-8125-f4afc8efa624" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E0FF0F7F48264AECB2719AD9677DBFE0 Ref B: MNZ221060618051 Ref C: 2025-06-02T21:49:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:33 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4412.240514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.4412.240514\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-21h2-ent-cpc-m365-g2/versions/19044.4529.240611?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMWgyLWVudC1jcGMtbTM2NS1nMi92ZXJzaW9ucy8xOTA0NC40NTI5LjI0MDYxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "420bde66-f482-4599-81a0-cf05bb52aa4f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12631,Microsoft.Compute/GetVMImageFromLocation30Min;73631" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "93af2968-d079-43ec-8768-3b32d336da15" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b39be7f4-594e-47c8-802d-1c9b6d051888" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8cd795d5-36bc-4053-804b-40d75ccce067" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214934Z:8cd795d5-36bc-4053-804b-40d75ccce067" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 191105533A3C43C1B31804BAEDF29B44 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:49:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:33 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19044.4529.240611\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-21h2-ent-cpc-m365-g2/Versions/19044.4529.240611\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "00783aa2-e1ce-4856-a527-7c3f3e7cf5c2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15845,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43845" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "9c417b93-6531-4a5a-9d0d-8abaeab7acf6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1a416ed8-6c30-46af-905d-5ff86cb15ecb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d634b466-5b10-40a3-9e6c-06a446068921" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214934Z:d634b466-5b10-40a3-9e6c-06a446068921" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A18FB13E8F3F40CE8FD4D68C768E9CBD Ref B: MNZ221060610025 Ref C: 2025-06-02T21:49:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:33 GMT" + ], + "Content-Length": [ + "2820" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.4780.240813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.4780.240813\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.4894.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.4894.240910\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5131.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5131.241113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5247.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5247.241210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5371.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5487.250211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5608.250312\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5737.250408\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5854.250513\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc/versions/19045.4780.240813?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMTkwNDUuNDc4MC4yNDA4MTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "35904f00-cfb8-4d48-883d-49923715286a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12630,Microsoft.Compute/GetVMImageFromLocation30Min;73630" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "91927042-aee9-4bee-ac50-7cf11c890250" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b3b1d6ed-76a3-4b4a-b0e8-fad4d0ef67e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c0a913f3-663b-4c17-9821-e84e58c4d8cb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214934Z:c0a913f3-663b-4c17-9821-e84e58c4d8cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 468524035E094098ADBEDD8446ED19E1 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:49:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:33 GMT" + ], + "Content-Length": [ + "1267" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-15T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.4780.240813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.4780.240813\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc/versions/19045.4894.240910?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMTkwNDUuNDg5NC4yNDA5MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "919862d8-39cc-418d-8e1f-5ede80524063" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12629,Microsoft.Compute/GetVMImageFromLocation30Min;73629" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "457a7339-8baa-4776-b971-93b0ebe25324" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9ecaee11-2f4d-4222-bd53-67d1ecc67fe4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "15b44fa2-adf0-412f-931d-65d0d37e2be4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214934Z:15b44fa2-adf0-412f-931d-65d0d37e2be4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7916502271A547A4B64EAFAEDCDA0D5F Ref B: MNZ221060610047 Ref C: 2025-06-02T21:49:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:33 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-14T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-15T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.4894.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.4894.240910\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc/versions/19045.5131.241113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMTkwNDUuNTEzMS4yNDExMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fc79ca7f-838d-490f-a33c-8956e67ee05c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12628,Microsoft.Compute/GetVMImageFromLocation30Min;73628" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "9b0c5db0-0764-45a3-a88a-83aea3a97d24" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6bc23711-28cc-4a6d-91b1-b5b1f9f74217" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "981c9bbb-59e8-4646-b45e-02494eb85525" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214934Z:981c9bbb-59e8-4646-b45e-02494eb85525" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E52B20F2F9E84D4790A8583F895DCC2E Ref B: MNZ221060609031 Ref C: 2025-06-02T21:49:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:34 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5131.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5131.241113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc/versions/19045.5247.241210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMTkwNDUuNTI0Ny4yNDEyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c30a77cf-c0a5-4c8c-bae8-abab5ae245ad" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12627,Microsoft.Compute/GetVMImageFromLocation30Min;73627" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "1bf3a787-7d6b-4c89-b379-bb1ab4c8a519" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9ea20ce6-80a2-4571-88b7-684757d0cad0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "165640d0-d28e-4115-b2f7-1c614225c752" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214934Z:165640d0-d28e-4115-b2f7-1c614225c752" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7823878F817F4CAEB41B08A591658A66 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:49:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:34 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5247.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5247.241210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc/versions/19045.5371.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMTkwNDUuNTM3MS4yNTAxMTU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "55f76d2e-7a5f-4857-aab2-4f9ade1ab217" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12626,Microsoft.Compute/GetVMImageFromLocation30Min;73626" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f534610a-eb6e-4247-a614-fd3a904f2c21" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e6f218dd-1a1d-4665-b651-47047dd7869b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "09854031-12e2-45e2-9e9e-f3d967e6cc3a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214934Z:09854031-12e2-45e2-9e9e-f3d967e6cc3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 439F929B3BC7402798A989C94C9AB42B Ref B: MNZ221060609027 Ref C: 2025-06-02T21:49:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:34 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5371.250115\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc/versions/19045.5487.250211?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMTkwNDUuNTQ4Ny4yNTAyMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d4f1676b-9cf3-4fd2-8128-923eb89703ee" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12625,Microsoft.Compute/GetVMImageFromLocation30Min;73625" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "83b6b07e-75a0-48c3-b7cc-1b53a1d4e0b8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/defa54ea-e05d-4f64-8d68-f9f615a1a619" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "893df3d2-7f41-4fec-92b9-bef2f30839e1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214934Z:893df3d2-7f41-4fec-92b9-bef2f30839e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D2BE0256E1C441A0B1DA3396308F6D7D Ref B: MNZ221060619029 Ref C: 2025-06-02T21:49:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:34 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5487.250211\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc/versions/19045.5608.250312?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMTkwNDUuNTYwOC4yNTAzMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "72ec6592-c34b-43d8-aeeb-ff6035ff4e54" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12624,Microsoft.Compute/GetVMImageFromLocation30Min;73624" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "43e3857c-84ea-41c3-9527-df117d9429a5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/793e70dc-d20f-4aee-944c-c27484ff389f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "43573e7b-e5e3-4acd-9d3b-3c08d0b7d451" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214935Z:43573e7b-e5e3-4acd-9d3b-3c08d0b7d451" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F2CCF19722BC443B800FAAE228BEFEA3 Ref B: MNZ221060609037 Ref C: 2025-06-02T21:49:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:34 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5608.250312\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc/versions/19045.5737.250408?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMTkwNDUuNTczNy4yNTA0MDg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "efa60335-284a-4a75-aec9-ebefa9947e8c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12623,Microsoft.Compute/GetVMImageFromLocation30Min;73623" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "a013dfa5-940b-4d51-9ee2-1c6581029db5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/434c3fc8-d877-4f89-8c23-c9e071168fd5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c20a865f-2301-4648-8a90-4116d4d45562" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214935Z:c20a865f-2301-4648-8a90-4116d4d45562" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B8DF6EB8DC6404D8C6493B7BC32E37A Ref B: MNZ221060609021 Ref C: 2025-06-02T21:49:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:34 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5737.250408\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc/versions/19045.5854.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMTkwNDUuNTg1NC4yNTA1MTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f1f7d708-8985-48da-8950-502635bf0f86" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12622,Microsoft.Compute/GetVMImageFromLocation30Min;73622" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e8e42d52-6eb9-488b-b342-b2bf493305b2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/28ffc0af-dc57-483f-90f2-e0906b763a4d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "74243f40-9148-4488-b63f-f9cdc2c7e34c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214935Z:74243f40-9148-4488-b63f-f9cdc2c7e34c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1D985741DCE045D1965F5E103679B520 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:49:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:34 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc/Versions/19045.5854.250513\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1c145049-65b9-4fb6-8249-03eb08993e22" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15844,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43844" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "195eb22a-dcec-4987-869b-f8a6ff5b1897" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1ad0048f-ec7d-4f8d-ab81-370651f80b56" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "80117bac-11f9-4f4e-a527-48637f625492" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214935Z:80117bac-11f9-4f4e-a527-48637f625492" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BC66C1E5045640B083DEA54382C9155E Ref B: MNZ221060608053 Ref C: 2025-06-02T21:49:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:34 GMT" + ], + "Content-Length": [ + "2865" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.4894.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.4894.240910\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5011.241010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5011.241010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5131.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5131.241113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5247.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5247.241210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5371.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5487.250211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5608.250312\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5737.250408\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5854.250513\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc-m365/versions/19045.4894.240910?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8xOTA0NS40ODk0LjI0MDkxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fcff3b03-f74e-4bbd-9775-ee6c67bd8370" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12621,Microsoft.Compute/GetVMImageFromLocation30Min;73621" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "1d1008c2-e325-40b5-99b0-3167095cc925" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2c1b9f6f-4515-4ca6-a53a-0685de7244e0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cb2578e2-fa8d-4eea-9e4f-fa885effe6be" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214935Z:cb2578e2-fa8d-4eea-9e4f-fa885effe6be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6204569F550949C2AF2B635195D30F71 Ref B: MNZ221060610049 Ref C: 2025-06-02T21:49:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:35 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-15T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-15T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.4894.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.4894.240910\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc-m365/versions/19045.5011.241010?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8xOTA0NS41MDExLjI0MTAxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "df98a20c-2e73-41e0-8f96-bc1ce84d5559" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12620,Microsoft.Compute/GetVMImageFromLocation30Min;73620" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "a2a8ec1b-0083-492c-bde1-6768fafd1613" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fbf139cf-d003-4f5c-a0da-7a5e7dd6be65" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8d0bd38b-eaad-4f81-a157-a0d5e281f472" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214936Z:8d0bd38b-eaad-4f81-a157-a0d5e281f472" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 20DAE700FCAF4E3696FCDBD13910BCA0 Ref B: MNZ221060609047 Ref C: 2025-06-02T21:49:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:35 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-14T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5011.241010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5011.241010\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc-m365/versions/19045.5131.241113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8xOTA0NS41MTMxLjI0MTExMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "598fc8c0-d6e4-4f5c-b386-bb98a2c7be1f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12619,Microsoft.Compute/GetVMImageFromLocation30Min;73619" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "35e703b1-538f-47e9-b272-cc0fe09cfd30" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2e861322-364b-4858-8561-f00dc8eb8656" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dc60e2d2-5247-463a-8ad2-edb2d3a86e1d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214936Z:dc60e2d2-5247-463a-8ad2-edb2d3a86e1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1EB544EAC3494CE7AC26BC0A02C172DB Ref B: MNZ221060618027 Ref C: 2025-06-02T21:49:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:35 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5131.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5131.241113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc-m365/versions/19045.5247.241210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8xOTA0NS41MjQ3LjI0MTIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "99255119-2b6b-4c91-a672-c1cc842342c7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12618,Microsoft.Compute/GetVMImageFromLocation30Min;73618" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b7318b97-5cf7-469e-9e69-7c1331b6cb67" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/536c686c-00f6-43c8-853b-9ccc8bffa844" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "45a18442-ff42-4a94-9e4b-bdadf7a40492" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214936Z:45a18442-ff42-4a94-9e4b-bdadf7a40492" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7696211561F149CBB1CD33D8CB6F4928 Ref B: MNZ221060610039 Ref C: 2025-06-02T21:49:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:36 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5247.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5247.241210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc-m365/versions/19045.5371.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8xOTA0NS41MzcxLjI1MDExNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "62099d36-be5e-4add-b649-99b433980b0e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12617,Microsoft.Compute/GetVMImageFromLocation30Min;73617" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b8865147-ef78-4256-b4ab-f5b7e6ca0cde" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cc94234d-dc5f-4f8e-93c1-cf517d8e3f3e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "181126fb-cb0c-4ac6-a506-b1b55523a423" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214936Z:181126fb-cb0c-4ac6-a506-b1b55523a423" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 661E546C30F743FCB3827DCBC1ABCDF7 Ref B: MNZ221060608033 Ref C: 2025-06-02T21:49:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:35 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5371.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5371.250115\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc-m365/versions/19045.5487.250211?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8xOTA0NS41NDg3LjI1MDIxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a0897fb5-033b-4892-9d67-5fbb5536d49a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12616,Microsoft.Compute/GetVMImageFromLocation30Min;73616" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "4b014efb-dad7-4756-9f59-684f601d45da" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/383e9abd-42fe-4782-b877-e740833ee486" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "99ce32ee-1236-43c9-981e-886c014bd7b4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214936Z:99ce32ee-1236-43c9-981e-886c014bd7b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 207616EFE80F4E51861A4FC542D0DB17 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:49:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:36 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5487.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5487.250211\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc-m365/versions/19045.5608.250312?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8xOTA0NS41NjA4LjI1MDMxMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "78abfcda-007f-4990-8688-54fcd5d31bf1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12615,Microsoft.Compute/GetVMImageFromLocation30Min;73615" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0532cd89-226b-47b0-a915-7dcc7baec435" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/71267613-bc62-45ca-b589-4806c03d0c26" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b57f38c0-b26b-4631-bf8d-0e6ead1c11cc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214936Z:b57f38c0-b26b-4631-bf8d-0e6ead1c11cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B8C8307AE4B94A5494BB7FA58A37F208 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:49:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:36 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5608.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5608.250312\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc-m365/versions/19045.5737.250408?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8xOTA0NS41NzM3LjI1MDQwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7a522eec-ecff-4817-b984-ddfccdc65462" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12614,Microsoft.Compute/GetVMImageFromLocation30Min;73614" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e5b69bef-fb55-44e0-96b8-f161953986c9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/86499787-5bbd-4a31-bd77-5b212dfbb391" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "776858cb-cf48-4de4-b7ad-9ff9c79b1e4d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214936Z:776858cb-cf48-4de4-b7ad-9ff9c79b1e4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 301C6BAD58624D5680E25411D44C9BCA Ref B: MNZ221060619017 Ref C: 2025-06-02T21:49:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:36 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5737.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5737.250408\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win10-22h2-ent-cpc-m365/versions/19045.5854.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMC0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8xOTA0NS41ODU0LjI1MDUxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1ab63bd0-9f12-4888-ab48-985c09ee3e01" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12613,Microsoft.Compute/GetVMImageFromLocation30Min;73613" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "67ea723b-c9bb-4843-8740-98c27dc2662a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e0879ac0-b409-41ef-a6fd-d72aa2319428" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "97dad358-c877-4e34-bb69-377a8271594a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214937Z:97dad358-c877-4e34-bb69-377a8271594a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4F060B41DA7E4090B264B7AD54A0EB44 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:49:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:36 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"19045.5854.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win10-22h2-ent-cpc-m365/Versions/19045.5854.250513\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a7b29971-239b-4d6d-8956-88af671704a1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15843,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43843" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "affd0e65-48dd-4e81-9de3-8becdc3874bf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8d212418-06b3-495a-9cb7-f12bb93aed31" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "918fc0ee-eb77-404e-8ec8-deaa53c76497" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214937Z:918fc0ee-eb77-404e-8ec8-deaa53c76497" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8E6EA27F8101488C879BB4324B528421 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:49:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:36 GMT" + ], + "Content-Length": [ + "2820" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4169.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.4169.240910\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4317.241010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.4317.241010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4460.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.4460.241113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4602.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.4602.241210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.4751.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.4890.250211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.5039.250311\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.5192.250410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.5335.250513\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc/versions/22621.4169.240910?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMjI2MjEuNDE2OS4yNDA5MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "224423ef-9c26-46ea-81fd-25844b8d9575" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12612,Microsoft.Compute/GetVMImageFromLocation30Min;73612" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "9899e52d-89f0-4870-bf72-8e386472e789" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8c5421f6-355d-4ea0-8420-2fe12a1cb5e7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "523ec3be-743c-43e8-b284-7a192e3dba47" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214937Z:523ec3be-743c-43e8-b284-7a192e3dba47" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 282D9CA5C03B40AEBCFC1008B195BD5F Ref B: MNZ221060610053 Ref C: 2025-06-02T21:49:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:36 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-15T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-15T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4169.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.4169.240910\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc/versions/22621.4317.241010?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMjI2MjEuNDMxNy4yNDEwMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ba151ba4-6492-46e7-bda1-539881cb13de" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12611,Microsoft.Compute/GetVMImageFromLocation30Min;73611" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "82444219-bfdb-41da-81d8-b70356cf6b97" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6c575e8d-ae71-43ef-8f2d-f92b7cf2575c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8cd2bfc7-2261-4220-ad86-d0820e1c3523" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214937Z:8cd2bfc7-2261-4220-ad86-d0820e1c3523" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 57020F4833924C1E9E95B588A8EA65B0 Ref B: MNZ221060609049 Ref C: 2025-06-02T21:49:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:36 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-14T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4317.241010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.4317.241010\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc/versions/22621.4460.241113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMjI2MjEuNDQ2MC4yNDExMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "89711e4a-068c-4fe1-90c1-ac6296ba1e50" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12610,Microsoft.Compute/GetVMImageFromLocation30Min;73610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b78702ef-0a84-4d34-98cb-909f2ae9e4ab" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5c815958-84b0-45d3-8918-3a65a514bc81" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cee5c43c-15a0-474b-aa5b-ce2ebbf2808f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214937Z:cee5c43c-15a0-474b-aa5b-ce2ebbf2808f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C22DA2643DB04A56A34C2A4606E4A293 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:49:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:36 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4460.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.4460.241113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc/versions/22621.4602.241210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMjI2MjEuNDYwMi4yNDEyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9c5452ba-8d98-47d0-9eb9-3edf6de8d262" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12609,Microsoft.Compute/GetVMImageFromLocation30Min;73609" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0c4edc79-6abb-400e-bd4b-ca7b429fed96" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4d0d36f2-0621-4bfe-8e5c-88f98597bcf8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8b29d344-6a40-43b8-8a12-ff835104aa1a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214937Z:8b29d344-6a40-43b8-8a12-ff835104aa1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B947C4A8806C43338FFAD433EAD7A82A Ref B: MNZ221060618039 Ref C: 2025-06-02T21:49:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:37 GMT" + ], + "Content-Length": [ + "1235" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4602.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.4602.241210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc/versions/22621.4751.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMjI2MjEuNDc1MS4yNTAxMTU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "24718455-ad52-455e-aa12-2b6a616fd4ba" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12608,Microsoft.Compute/GetVMImageFromLocation30Min;73608" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "8ce0e1c3-f08c-41b0-b3f8-e690313b947f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d0feaef9-2c3e-4c35-a23d-ca9f3e6bda58" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "cad73960-fe01-42ca-b909-0e1206baa6dd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214937Z:cad73960-fe01-42ca-b909-0e1206baa6dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 085B8841B64647FB955F308EBF9D5611 Ref B: MNZ221060618037 Ref C: 2025-06-02T21:49:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:37 GMT" + ], + "Content-Length": [ + "1235" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.4751.250115\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc/versions/22621.4890.250211?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMjI2MjEuNDg5MC4yNTAyMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c8ae705c-2be7-4fbe-a433-d5995a1969d2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12607,Microsoft.Compute/GetVMImageFromLocation30Min;73607" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "27379d61-6ee0-469b-9ab0-ee3bd7912c76" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/028eb446-e876-4ad5-8545-2a7e580c901b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1b9f3e79-ddd2-4fa7-a204-1182e6e811c3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214937Z:1b9f3e79-ddd2-4fa7-a204-1182e6e811c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6AA5ED686716467AA9B2992D48C94584 Ref B: MNZ221060610007 Ref C: 2025-06-02T21:49:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:37 GMT" + ], + "Content-Length": [ + "1235" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.4890.250211\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc/versions/22621.5039.250311?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMjI2MjEuNTAzOS4yNTAzMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8427d4d0-8387-48a4-afcd-0a9e2a4c8a5b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12606,Microsoft.Compute/GetVMImageFromLocation30Min;73606" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "40f9d35f-a02e-4b99-88ae-87f43a58d4f2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/05a1a0ed-0c3f-4034-9d64-ae0909549c14" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "876506dd-64b5-4598-a086-6c88060fc573" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214937Z:876506dd-64b5-4598-a086-6c88060fc573" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 64F1CF3FDEB649FC880E1544BC276C98 Ref B: MNZ221060610039 Ref C: 2025-06-02T21:49:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:37 GMT" + ], + "Content-Length": [ + "1235" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.5039.250311\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc/versions/22621.5192.250410?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMjI2MjEuNTE5Mi4yNTA0MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5ed7b664-e7c4-4046-9c52-70c93084dae8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12605,Microsoft.Compute/GetVMImageFromLocation30Min;73605" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "108cde60-113b-465e-9f6b-401c8b5bc4bb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bc257e21-8348-4a8e-b962-5abe0834eb7e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8725ce7a-d44e-44b1-a2f8-70d9fb317ceb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214938Z:8725ce7a-d44e-44b1-a2f8-70d9fb317ceb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2B76FDC2E1FD4CAE9EAAD2CE02179D85 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:49:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:37 GMT" + ], + "Content-Length": [ + "1235" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.5192.250410\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc/versions/22621.5335.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMvdmVyc2lvbnMvMjI2MjEuNTMzNS4yNTA1MTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6526b36d-afe7-4605-a409-f9afe2cc8bc5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12604,Microsoft.Compute/GetVMImageFromLocation30Min;73604" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "a13e8864-3bb4-4f1e-ae3e-56b7785946b7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c921b179-9eaa-468a-94da-05989c9e85f4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fd929c1f-794d-486f-8557-db90fdc8f9f5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214938Z:fd929c1f-794d-486f-8557-db90fdc8f9f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3F9B361F31BD4DE88B80A01EA3D86645 Ref B: MNZ221060610029 Ref C: 2025-06-02T21:49:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:37 GMT" + ], + "Content-Length": [ + "1235" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc/Versions/22621.5335.250513\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "56288d09-d7c4-41cc-920a-f4cf63702999" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15842,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43842" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "cba1148b-d839-4ecc-b5c7-73be37391397" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/861e4ad3-3ddf-4aa8-ae27-0bc4a3b9c1a7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "80fc918d-5678-43bf-a6bd-738c6b5d311c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214938Z:80fc918d-5678-43bf-a6bd-738c6b5d311c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC87BE5A17CE49D1A19744C1686F1003 Ref B: MNZ221060619031 Ref C: 2025-06-02T21:49:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:37 GMT" + ], + "Content-Length": [ + "2865" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4169.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.4169.240910\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4317.241010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.4317.241010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4460.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.4460.241113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4602.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.4602.241210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.4751.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.4890.250211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.5039.250311\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.5192.250410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.5335.250513\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-m365/versions/22621.4169.240910?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYyMS40MTY5LjI0MDkxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "65ec9ba9-ba00-4b0a-849e-a3836a8a8852" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12603,Microsoft.Compute/GetVMImageFromLocation30Min;73603" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b6e441a1-1324-4633-a633-5998ec07d6c7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/86979c44-4a39-432e-9096-792fc0330697" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "98d13c18-d32e-48a5-934e-992a484f0727" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214938Z:98d13c18-d32e-48a5-934e-992a484f0727" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A807A198769F4A3881CC5B884FA9EFD8 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:49:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:37 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-15T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-15T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4169.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.4169.240910\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-m365/versions/22621.4317.241010?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYyMS40MzE3LjI0MTAxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "55deadfa-e778-4c32-b4e6-428c6f5fdf27" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12602,Microsoft.Compute/GetVMImageFromLocation30Min;73602" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "6c375be8-aea8-4b5a-a87c-f00aa5271b1f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/514e5cbd-5aa5-43bc-b3d6-9db7e4a40a00" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "1b0a1f63-cce9-4cd7-92a4-17fc6f5f96c8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214938Z:1b0a1f63-cce9-4cd7-92a4-17fc6f5f96c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E5378F3001D43618E7AFE61B8964D10 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:49:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:37 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-14T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4317.241010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.4317.241010\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-m365/versions/22621.4460.241113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYyMS40NDYwLjI0MTExMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f08a8268-0b83-49bd-b534-dee70df481c0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12601,Microsoft.Compute/GetVMImageFromLocation30Min;73601" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f344df26-31d5-404a-871a-46fcba36aefb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/09edc386-844f-4a08-8909-a4e313ac8967" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "beb7427e-fa6a-4e75-bf9d-5f4266d88d1b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214938Z:beb7427e-fa6a-4e75-bf9d-5f4266d88d1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F5E52FDD9A0147E197802EC981D5D9C3 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:49:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:38 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4460.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.4460.241113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-m365/versions/22621.4602.241210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYyMS40NjAyLjI0MTIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "20c430c9-4ddc-43f6-a992-ee66386e867b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12600,Microsoft.Compute/GetVMImageFromLocation30Min;73600" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "7b378eaa-72b8-4640-87c1-4655b451dd2a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6514994e-05f9-40e8-a43e-498b41c1fe2f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4c77281e-5ff4-4cc7-b670-0a5a556a1d70" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214938Z:4c77281e-5ff4-4cc7-b670-0a5a556a1d70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8831FB2C6B9E40BEAD2704665AB1DF31 Ref B: MNZ221060610053 Ref C: 2025-06-02T21:49:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:38 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4602.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.4602.241210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-m365/versions/22621.4751.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYyMS40NzUxLjI1MDExNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c4a8fea4-a047-439b-8666-0c56852f2ca3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12599,Microsoft.Compute/GetVMImageFromLocation30Min;73599" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "82144d81-d0cb-4195-a59f-84292f0e0240" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ca65cfc2-0985-406c-82d0-5a053f4d9aeb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "94fc36f6-df0e-498a-971c-eba94ee1254d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214939Z:94fc36f6-df0e-498a-971c-eba94ee1254d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4A65BE574B024A9E8E1C039E51ACFC06 Ref B: MNZ221060610017 Ref C: 2025-06-02T21:49:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:38 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.4751.250115\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-m365/versions/22621.4890.250211?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYyMS40ODkwLjI1MDIxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a23c079a-4bef-4f07-8793-b9528a18957a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12598,Microsoft.Compute/GetVMImageFromLocation30Min;73598" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0daf9bd3-9662-4441-b953-941d5a157d8e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1396d841-371f-436e-99c3-54e00704bf89" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "97114b88-ac05-45aa-ac8b-420ce7032122" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214939Z:97114b88-ac05-45aa-ac8b-420ce7032122" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5B114287DBCB458CB6A767DDA4F228E5 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:49:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:39 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.4890.250211\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-m365/versions/22621.5039.250311?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYyMS41MDM5LjI1MDMxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e766665d-cc34-4f21-83f9-8b838df18796" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12597,Microsoft.Compute/GetVMImageFromLocation30Min;73597" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d8ff2241-57cc-4e12-9b0c-6b2604df27b7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bec99f88-2197-4804-a5f6-f2804ca454e8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "655caaf0-2d0f-4d9d-8b26-3fcf6f978578" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214939Z:655caaf0-2d0f-4d9d-8b26-3fcf6f978578" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 259DAC27E4CB4358994FAFBE63059FDD Ref B: MNZ221060619035 Ref C: 2025-06-02T21:49:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:38 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.5039.250311\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-m365/versions/22621.5192.250410?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYyMS41MTkyLjI1MDQxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dfb09d3f-c7f9-4dfb-83aa-e4d52dc5b9f8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12596,Microsoft.Compute/GetVMImageFromLocation30Min;73596" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d10f2294-1f3c-45d9-8a40-29ce7fcf7d25" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/de05d68d-5c12-4db7-841d-e4e2562a8e21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "147d2311-426c-4a0d-a02d-61681504efe2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214939Z:147d2311-426c-4a0d-a02d-61681504efe2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 69BF1CCE5B52429D97C41E1F4E54CB01 Ref B: MNZ221060618029 Ref C: 2025-06-02T21:49:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:38 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.5192.250410\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-m365/versions/22621.5335.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYyMS41MzM1LjI1MDUxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "42a21c72-24ef-43c1-a866-9bb5cf7cf401" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12595,Microsoft.Compute/GetVMImageFromLocation30Min;73595" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "de03e0c1-7193-4575-8ca3-dd90aca33cda" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9d9c1c0c-af67-43ff-9281-ddbb32afd33f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0e784125-fe80-40cc-aeca-13d16442ccc5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214939Z:0e784125-fe80-40cc-aeca-13d16442ccc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 213D9F1CE01A4A1AA419B432CDBDD88D Ref B: MNZ221060619027 Ref C: 2025-06-02T21:49:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:39 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-m365/Versions/22621.5335.250513\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-os/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtb3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6ecc9ba0-f2af-4b08-99f9-7a9725916680" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15841,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43841" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "17419947-985b-4385-bffe-0a8e4d5fe9a2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6f6f64ec-9a8c-4552-8b47-3d8673ff7667" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e93a80ac-083a-445c-bfda-1b64297c8b47" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214939Z:e93a80ac-083a-445c-bfda-1b64297c8b47" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F1474F61DCAD45189526D249C6D151E5 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:49:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:38 GMT" + ], + "Content-Length": [ + "2531" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4169.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.4169.240910\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4460.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.4460.241113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4602.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.4602.241210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.4751.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.4890.250211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.5039.250311\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.5192.250410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.5335.250513\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-os/versions/22621.4169.240910?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MjEuNDE2OS4yNDA5MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b3ef1cbe-6b84-4797-a1ad-1ee7649de68c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12594,Microsoft.Compute/GetVMImageFromLocation30Min;73594" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "456e691a-0dd5-4b28-a537-58b69d7c55ff" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9fac4e7f-fc49-46bc-9c13-327195fa0337" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "eb6be179-f687-4b1b-a2df-f7837376720d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214939Z:eb6be179-f687-4b1b-a2df-f7837376720d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 228606BE25704C52A543B0C646705A1A Ref B: MNZ221060619021 Ref C: 2025-06-02T21:49:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:39 GMT" + ], + "Content-Length": [ + "1319" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-14T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-15T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4169.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.4169.240910\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-os/versions/22621.4460.241113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MjEuNDQ2MC4yNDExMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "217e46aa-aaa8-4747-b2e7-0995d5db7cab" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12593,Microsoft.Compute/GetVMImageFromLocation30Min;73593" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3e9e65f6-308d-49e2-a705-4bc513283793" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/30e5f458-bfb7-4b32-b694-6ce56b5f838d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a84947fa-cad2-4180-ba76-3275688e5cd0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214939Z:a84947fa-cad2-4180-ba76-3275688e5cd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 84E9D1F8409A42E683824F7FF1EBA96D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:49:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:39 GMT" + ], + "Content-Length": [ + "1319" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4460.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.4460.241113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-os/versions/22621.4602.241210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MjEuNDYwMi4yNDEyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cec9345b-61a0-467e-af70-f5765f9b9922" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12592,Microsoft.Compute/GetVMImageFromLocation30Min;73592" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "933bc531-e8da-4cf2-8da7-be95e93e5d78" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dfb1f839-2efc-4f73-a6de-b159f50b5248" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "178d7702-9c6a-4ea7-9a82-b8f753d84ee3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214939Z:178d7702-9c6a-4ea7-9a82-b8f753d84ee3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7F93F14C59EF4E828C33BD67E4B54ED9 Ref B: MNZ221060610051 Ref C: 2025-06-02T21:49:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:39 GMT" + ], + "Content-Length": [ + "1238" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4602.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.4602.241210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-os/versions/22621.4751.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MjEuNDc1MS4yNTAxMTU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "37df61ed-62b8-40e2-bada-93690f7fc86b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12591,Microsoft.Compute/GetVMImageFromLocation30Min;73591" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "4880a84c-9d3b-4bf7-ab70-07b8c82f48c0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/afd5029e-e03d-4161-90d2-e1144f5fa8d9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6728279c-80d2-40a4-93c8-3edc4a31d6ab" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214940Z:6728279c-80d2-40a4-93c8-3edc4a31d6ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8B7E8B446AB3481BB57969CCAAD94188 Ref B: MNZ221060619047 Ref C: 2025-06-02T21:49:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:39 GMT" + ], + "Content-Length": [ + "1238" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.4751.250115\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-os/versions/22621.4890.250211?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MjEuNDg5MC4yNTAyMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b3445785-9826-4fe8-970c-977ea6e1bc2b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12590,Microsoft.Compute/GetVMImageFromLocation30Min;73590" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e6c2eadc-c0ed-41aa-93d7-ea96a4c7d0f7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a0d2b741-deef-41d0-a386-2f5d6afbbcf0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "21f9fb02-e38f-4cd8-ba44-719f54196909" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214940Z:21f9fb02-e38f-4cd8-ba44-719f54196909" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EB589E32C4DA4E38A0B532C0190E029D Ref B: MNZ221060609035 Ref C: 2025-06-02T21:49:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:40 GMT" + ], + "Content-Length": [ + "1238" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.4890.250211\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-os/versions/22621.5039.250311?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MjEuNTAzOS4yNTAzMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1d78bca5-1504-4472-bc89-dffe3c5562e6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12589,Microsoft.Compute/GetVMImageFromLocation30Min;73589" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "aa2f611e-af40-49c6-8ad0-97a7ee755ec4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d4af388b-cbb6-4eca-bd0e-232e55956934" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "00ae053d-bb1b-4b02-ac09-909045c5e470" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214940Z:00ae053d-bb1b-4b02-ac09-909045c5e470" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 558D609C94EF4CBBA3728FB0A6F1AF94 Ref B: MNZ221060608009 Ref C: 2025-06-02T21:49:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:39 GMT" + ], + "Content-Length": [ + "1238" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.5039.250311\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-os/versions/22621.5192.250410?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MjEuNTE5Mi4yNTA0MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "19d3d360-e8ec-4d52-b43a-9c219b1f8eae" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12588,Microsoft.Compute/GetVMImageFromLocation30Min;73588" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "26f61d57-25fb-4f5d-91a2-8bcbb960f0ec" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d920228d-481f-4388-b5d9-f13924b37ae7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "792f3a0f-7c30-45e6-aa4a-7b83db19f2c2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214940Z:792f3a0f-7c30-45e6-aa4a-7b83db19f2c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5148243DAC074B6687433FF47217DC1D Ref B: MNZ221060610017 Ref C: 2025-06-02T21:49:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:39 GMT" + ], + "Content-Length": [ + "1238" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.5192.250410\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-22h2-ent-cpc-os/versions/22621.5335.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yMmgyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MjEuNTMzNS4yNTA1MTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ef8fb583-5e58-476f-9c66-1b068b4c20bb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12587,Microsoft.Compute/GetVMImageFromLocation30Min;73587" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "21e58fe0-380e-4307-97b4-b3ba97b93e12" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/63141451-6c03-4652-8150-7318d10109fa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "952f4470-b025-4421-93ae-ebd5a96a6e53" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214940Z:952f4470-b025-4421-93ae-ebd5a96a6e53" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5DA2819E02E0453291D09C819CA10CFF Ref B: MNZ221060619027 Ref C: 2025-06-02T21:49:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:40 GMT" + ], + "Content-Length": [ + "1238" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-22h2-ent-cpc-os/Versions/22621.5335.250513\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b155494a-dbbc-46a1-9d12-46f15eb928ab" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15840,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43840" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "371213cb-70e0-48ee-825c-4b0719fd4414" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cc7900ca-5020-45d2-a179-d5718c959568" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ea0d563f-50df-437e-aef8-8290fcc711fa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214940Z:ea0d563f-50df-437e-aef8-8290fcc711fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 523940CA2D0843178C27EAFFA58872AD Ref B: MNZ221060618051 Ref C: 2025-06-02T21:49:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:40 GMT" + ], + "Content-Length": [ + "2820" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4169.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.4169.240910\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4317.241010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.4317.241010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4460.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.4460.241113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4602.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.4602.241210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.4751.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.4890.250211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.5039.250311\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.5192.250410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.5335.250513\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc/versions/22631.4169.240910?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMvdmVyc2lvbnMvMjI2MzEuNDE2OS4yNDA5MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8d77e945-f0aa-4acb-92af-be417506881b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12586,Microsoft.Compute/GetVMImageFromLocation30Min;73586" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "9a6e3566-ea67-48b9-87f9-6107da576ebb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dddaab65-0cc0-425a-ae64-571604a60627" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "02a11b87-2090-4729-b305-715f69e54fcb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214940Z:02a11b87-2090-4729-b305-715f69e54fcb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D01DED089B234ADCA8A45A0466F9D22E Ref B: MNZ221060619027 Ref C: 2025-06-02T21:49:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:40 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-15T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-15T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4169.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.4169.240910\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc/versions/22631.4317.241010?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMvdmVyc2lvbnMvMjI2MzEuNDMxNy4yNDEwMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "add53065-f1fa-425c-97f1-938372a032e6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12585,Microsoft.Compute/GetVMImageFromLocation30Min;73585" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0c14be7f-f658-4655-bfd6-bd0d59cdfd04" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9f7a7a94-e107-48c0-82cc-788e4937ea30" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "143f5d4c-e468-40b6-af73-806eb99cde10" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214940Z:143f5d4c-e468-40b6-af73-806eb99cde10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3E8043D1986145619C38513A5CD91073 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:49:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:40 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-14T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4317.241010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.4317.241010\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc/versions/22631.4460.241113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMvdmVyc2lvbnMvMjI2MzEuNDQ2MC4yNDExMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "19fe3811-f624-4f83-bb43-7c4d1be7d418" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12584,Microsoft.Compute/GetVMImageFromLocation30Min;73584" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "fe3f24a2-1f07-4741-b6ef-31f352f13d61" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0f27d0e8-674c-40e3-bc5f-04615c6498a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "05f97f39-7c58-4412-94c6-839e61043ad5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214941Z:05f97f39-7c58-4412-94c6-839e61043ad5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B211161FEB234D05B77AE9F68F4520BF Ref B: MNZ221060609011 Ref C: 2025-06-02T21:49:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:40 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4460.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.4460.241113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc/versions/22631.4602.241210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMvdmVyc2lvbnMvMjI2MzEuNDYwMi4yNDEyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b9c5d2a7-b1ab-4a23-bcd0-0cb37de9a021" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12583,Microsoft.Compute/GetVMImageFromLocation30Min;73583" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "4d51bccf-8a5b-45f5-9a9f-b3a2737ba827" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/974c9dc2-650a-41e2-bda3-d2f2533b18a5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "496de3e0-a449-421d-98aa-bd738b881d57" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214941Z:496de3e0-a449-421d-98aa-bd738b881d57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A093F5BBFB574704B2B3F4FBB945D6FA Ref B: MNZ221060610045 Ref C: 2025-06-02T21:49:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:40 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4602.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.4602.241210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc/versions/22631.4751.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMvdmVyc2lvbnMvMjI2MzEuNDc1MS4yNTAxMTU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ca5c3ac9-cb95-4496-b852-08da014e7f10" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12582,Microsoft.Compute/GetVMImageFromLocation30Min;73582" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d5a2dfd7-d2bb-4f25-b945-3cf0e73f4dc0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d8e63b40-c1a2-4092-b8c0-2a7be3c6c6cc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e032056c-8da2-4788-ba1a-de0cd7366783" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214941Z:e032056c-8da2-4788-ba1a-de0cd7366783" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BA06185419334B3884A9F2832BFDC609 Ref B: MNZ221060609027 Ref C: 2025-06-02T21:49:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:40 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.4751.250115\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc/versions/22631.4890.250211?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMvdmVyc2lvbnMvMjI2MzEuNDg5MC4yNTAyMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fc1bfadf-57de-4817-a38a-08053bfc9e29" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12581,Microsoft.Compute/GetVMImageFromLocation30Min;73581" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "bed8f74d-832c-4491-9f7e-e84eb1ff8f60" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4c9c908e-8ee6-48c1-85bc-11c266ecd736" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6a28a6df-1804-4cf8-9dfe-dc4f2741eafe" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214941Z:6a28a6df-1804-4cf8-9dfe-dc4f2741eafe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 49F44ED1D14E40D9B125F8D9F276EC2E Ref B: MNZ221060608023 Ref C: 2025-06-02T21:49:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:41 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.4890.250211\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc/versions/22631.5039.250311?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMvdmVyc2lvbnMvMjI2MzEuNTAzOS4yNTAzMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "876093c4-e893-4a07-97ab-4cf743433dfe" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12580,Microsoft.Compute/GetVMImageFromLocation30Min;73580" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "8a905323-db47-4517-b8e7-04c27882f8f2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/074dc322-f0bf-4e77-81fe-0ddf911d27fb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bf512696-dfb8-49c5-8432-7d32c97e2315" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214941Z:bf512696-dfb8-49c5-8432-7d32c97e2315" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D7DF9192F89746709A3D0EAD287C0A44 Ref B: MNZ221060619037 Ref C: 2025-06-02T21:49:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:41 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.5039.250311\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc/versions/22631.5192.250410?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMvdmVyc2lvbnMvMjI2MzEuNTE5Mi4yNTA0MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "aa284476-4387-498f-a599-9187ba40e0b8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12579,Microsoft.Compute/GetVMImageFromLocation30Min;73579" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "60882f78-381f-4e8e-9752-63d7ee4ce6e7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b97c9d31-d112-4d8f-8b72-928feb7637dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d2f07b80-cf40-49f8-8f7a-8cc412630777" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214941Z:d2f07b80-cf40-49f8-8f7a-8cc412630777" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2DAE28638D664142BC46000DA7CF88AF Ref B: MNZ221060610047 Ref C: 2025-06-02T21:49:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:40 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.5192.250410\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc/versions/22631.5335.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMvdmVyc2lvbnMvMjI2MzEuNTMzNS4yNTA1MTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fa3f663e-5971-4b22-b68b-f739d19b0705" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12578,Microsoft.Compute/GetVMImageFromLocation30Min;73578" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "7d3ffcfc-d8a5-43a7-8be4-deea433bedbd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4aa57668-812a-4be1-a84f-39f2baa1dec6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "860d7eae-fadd-4cd3-aeee-1797f34c8b0e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214941Z:860d7eae-fadd-4cd3-aeee-1797f34c8b0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5EDF19721AFF465B8D6F14A33F46505B Ref B: MNZ221060609017 Ref C: 2025-06-02T21:49:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:40 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc/Versions/22631.5335.250513\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "99162dfe-e23c-4a8a-8137-a4215e00ab9f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15839,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43839" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "8a76da2e-03b6-423c-8bf8-db9564b65d85" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/390f1220-a19e-4e53-9530-dbe38d9d3a0e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4dedb370-0f71-4ead-8d74-dfef87c20c36" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214941Z:4dedb370-0f71-4ead-8d74-dfef87c20c36" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 592A50CA4D7242DB96A7C5A241576B87 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:49:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:41 GMT" + ], + "Content-Length": [ + "2865" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4169.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.4169.240910\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4317.241010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.4317.241010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4460.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.4460.241113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4602.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.4602.241210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.4751.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.4890.250211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.5039.250311\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.5192.250410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.5335.250513\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-m365/versions/22631.4169.240910?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYzMS40MTY5LjI0MDkxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8d0f9530-cb4b-4b97-b8ba-4f6fa911d8ad" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12577,Microsoft.Compute/GetVMImageFromLocation30Min;73577" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f0b92f71-7a3b-465e-87ce-41da8fa2b7de" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e6618af7-92c9-4a57-aab9-d5c039eb988c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6399370f-e27b-4242-8638-0c49c9a97305" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214942Z:6399370f-e27b-4242-8638-0c49c9a97305" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0B77F925579E4050A38A694E07A7BB04 Ref B: MNZ221060619011 Ref C: 2025-06-02T21:49:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:41 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-15T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-15T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4169.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.4169.240910\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-m365/versions/22631.4317.241010?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYzMS40MzE3LjI0MTAxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b39f6bf3-3c65-4e93-b2da-ed3fb7ab18da" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12576,Microsoft.Compute/GetVMImageFromLocation30Min;73576" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "28065303-eee7-44ed-afb3-9759deac17ae" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/690dab66-d34a-436b-a000-d201256546db" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b0b90e31-4f75-4b23-b968-652cac44508f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214942Z:b0b90e31-4f75-4b23-b968-652cac44508f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3FE147C3B09C405492CFEA4ED6176AA7 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:41 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-14T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4317.241010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.4317.241010\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-m365/versions/22631.4460.241113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYzMS40NDYwLjI0MTExMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "47df0e9f-6bec-45bc-addc-a63abb96b142" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12575,Microsoft.Compute/GetVMImageFromLocation30Min;73575" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d514074f-41c6-4961-aa95-cb005b329f6d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5027fd3c-766f-44b5-8788-0f47c40ff685" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "980a2ac9-158f-4d1a-984d-34ae87b93e71" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214942Z:980a2ac9-158f-4d1a-984d-34ae87b93e71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7AF1F4AD19054CB78EF96A8984351FC6 Ref B: MNZ221060618031 Ref C: 2025-06-02T21:49:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:41 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4460.241113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.4460.241113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-m365/versions/22631.4602.241210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYzMS40NjAyLjI0MTIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6655466d-56f6-4ea7-a49b-4e598dde60aa" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12574,Microsoft.Compute/GetVMImageFromLocation30Min;73574" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "221b9add-af6d-4cc6-a789-5869ef7aa6cc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1d923a91-26eb-41ba-a1ef-9cbb64ef33d0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ccdcd2b2-dba9-4e8e-8548-2541f3d30418" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214942Z:ccdcd2b2-dba9-4e8e-8548-2541f3d30418" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 976C46061CE84099ABDFC5D66E856E42 Ref B: MNZ221060618039 Ref C: 2025-06-02T21:49:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:42 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4602.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.4602.241210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-m365/versions/22631.4751.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYzMS40NzUxLjI1MDExNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c0c473aa-af0a-4daa-a2f1-97a2154cc6bb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12573,Microsoft.Compute/GetVMImageFromLocation30Min;73573" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "2d77bd42-1f1d-4583-9d00-512562be2da2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6100afcd-52aa-49b4-a4a0-98f646d102d2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f50a51c8-b92d-4b2f-8737-d4e46fe4a1bd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214942Z:f50a51c8-b92d-4b2f-8737-d4e46fe4a1bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0B94ED8236A4499E914E664718B1A612 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:49:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:41 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.4751.250115\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-m365/versions/22631.4890.250211?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYzMS40ODkwLjI1MDIxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "047b2f8e-611a-42c3-99d1-23c34332416b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12572,Microsoft.Compute/GetVMImageFromLocation30Min;73572" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "31ca2adc-23d6-4e6f-970a-c58b653c106d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c1ddf99a-e5d9-4034-b92d-5a31709aedd8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "68ba717d-5ed8-486e-8868-8f6cdaeb7ec4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214942Z:68ba717d-5ed8-486e-8868-8f6cdaeb7ec4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DF18A1BA54A94987B7425D284AF4749F Ref B: MNZ221060609029 Ref C: 2025-06-02T21:49:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:42 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.4890.250211\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-m365/versions/22631.5039.250311?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYzMS41MDM5LjI1MDMxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a44b69cc-7ecc-4e3d-990b-d17eed88fc33" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12571,Microsoft.Compute/GetVMImageFromLocation30Min;73571" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "2e5acd67-136d-402d-ba48-c0803e2f1de0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e66d52e5-d36f-41ff-ab4a-46e70f881088" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6f689ee8-e01d-4043-8326-04f24fa12991" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214942Z:6f689ee8-e01d-4043-8326-04f24fa12991" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 61FC2A20F6B44F6CBB166AF7E8716887 Ref B: MNZ221060608019 Ref C: 2025-06-02T21:49:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:42 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.5039.250311\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-m365/versions/22631.5192.250410?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYzMS41MTkyLjI1MDQxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dcefb14d-9386-4311-aa9c-fb20e4c2b08a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12570,Microsoft.Compute/GetVMImageFromLocation30Min;73570" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "54ae6975-8039-4816-bcc4-4b1aa888ec19" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ee078209-62d3-4d6c-8c9b-d2b394b4a317" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "36efb9a3-50e8-4e33-87b8-34999af88f87" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214942Z:36efb9a3-50e8-4e33-87b8-34999af88f87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E1B8DFCA40E144F2883A8DE5AC624ADA Ref B: MNZ221060610039 Ref C: 2025-06-02T21:49:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:42 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.5192.250410\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-m365/versions/22631.5335.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yMjYzMS41MzM1LjI1MDUxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eb5063a4-bd25-445d-9c97-3b7fded34c76" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12569,Microsoft.Compute/GetVMImageFromLocation30Min;73569" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "94fe1dba-93d8-4780-ac22-25a53610cbdc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/31aa5f4d-c339-4816-ae64-91de55a7ac55" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "647ac797-2065-4251-a86a-bbdff1728935" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214942Z:647ac797-2065-4251-a86a-bbdff1728935" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 22B506B6985C4DCDB454D3D3F0554D2D Ref B: MNZ221060610049 Ref C: 2025-06-02T21:49:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:42 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-m365/Versions/22631.5335.250513\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-os/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtb3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8a9f1186-91f0-4131-b7f9-d65de0e7dee0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15838,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43838" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "c7057c58-be9e-4875-8c03-fd177454c12f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4101aae4-a928-4e7a-8f3d-3873d09e0903" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "112541c7-b9a7-4354-8507-9c891e8dee41" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214943Z:112541c7-b9a7-4354-8507-9c891e8dee41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2645611C12C1427EA1965E3DE9A2CDF6 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:49:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:42 GMT" + ], + "Content-Length": [ + "2215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4169.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.4169.240910\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4602.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.4602.241210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.4751.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.4890.250211\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.5039.250311\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.5192.250410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.5335.250513\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-os/versions/22631.4169.240910?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MzEuNDE2OS4yNDA5MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0464f71a-beb3-45bd-97ee-411ef595966c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12568,Microsoft.Compute/GetVMImageFromLocation30Min;73568" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3c6b3f04-7470-4bd2-8698-99e2565abf5b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/051df6cb-061b-4e8c-9631-3ccd7dac4d2b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4b7e5dd3-6f21-43b8-a39e-56e7ff7f4bea" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214943Z:4b7e5dd3-6f21-43b8-a39e-56e7ff7f4bea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2B2EC3A9AAB34D958985A504FD288756 Ref B: MNZ221060609023 Ref C: 2025-06-02T21:49:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:42 GMT" + ], + "Content-Length": [ + "1318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-15T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4169.240910\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.4169.240910\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-os/versions/22631.4602.241210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MzEuNDYwMi4yNDEyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a035a5dc-1a66-4889-870f-2e8c42718dd5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12567,Microsoft.Compute/GetVMImageFromLocation30Min;73567" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "be8e46bc-9496-4fad-a6e8-c1745d12f600" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a5890ec2-6c63-4f15-b7db-56061b673514" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5d43049c-2d1c-44a4-b3f0-f26beffb04d1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214943Z:5d43049c-2d1c-44a4-b3f0-f26beffb04d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 37683EC2D66E40D3889AA9C3AA367387 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:49:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:43 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4602.241210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.4602.241210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-os/versions/22631.4751.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MzEuNDc1MS4yNTAxMTU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "930fb44d-1312-442f-a1c6-1b47dd63e920" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12566,Microsoft.Compute/GetVMImageFromLocation30Min;73566" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "afaa9253-f371-4fe3-b22b-c65712d4b263" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cbf93669-4255-4ab6-91cb-379007da4371" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d98df0d0-d522-4e13-931d-c79dbcb019e5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214943Z:d98df0d0-d522-4e13-931d-c79dbcb019e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D91366D0CFB24367AC032556D194F0F0 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:49:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:42 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.4751.250115\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-os/versions/22631.4890.250211?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MzEuNDg5MC4yNTAyMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c8559e3c-6645-42f4-8975-be0027899a01" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12565,Microsoft.Compute/GetVMImageFromLocation30Min;73565" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0059f747-90ab-4542-b548-a5065cf557b1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/97f051d1-cd6d-48d9-a86f-cf7dca46f162" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "acf7ec16-b315-4b57-9c6d-9dc06a38b4f6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214943Z:acf7ec16-b315-4b57-9c6d-9dc06a38b4f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A50701A941404298AE0A37782AD20C63 Ref B: MNZ221060609049 Ref C: 2025-06-02T21:49:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:42 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250211\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.4890.250211\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-os/versions/22631.5039.250311?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MzEuNTAzOS4yNTAzMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fb83ffd4-f061-46df-9695-329d46919d5a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12564,Microsoft.Compute/GetVMImageFromLocation30Min;73564" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "5eda4b1e-a6ea-4ddd-a7b8-8fd298120f82" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f228108c-be9f-431e-9747-d668642c2e55" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "07085e0b-ad85-4ef8-b82c-e53c893f741e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214943Z:07085e0b-ad85-4ef8-b82c-e53c893f741e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7D0C4F649B9A46629504B7F7CDBC14DF Ref B: MNZ221060618053 Ref C: 2025-06-02T21:49:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:43 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250311\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.5039.250311\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-os/versions/22631.5192.250410?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MzEuNTE5Mi4yNTA0MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a870d44e-e4eb-4cd6-8f25-4238c8bacd9f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12563,Microsoft.Compute/GetVMImageFromLocation30Min;73563" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "2e31fe72-cbd2-41c1-8742-71b5519c102c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4e1313f7-3579-4967-b362-223772f1eb79" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0f9cc829-8948-4806-9e5a-59296fd1373c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214943Z:0f9cc829-8948-4806-9e5a-59296fd1373c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 189D1FC4DE814DB9B95CF0AE5684819E Ref B: MNZ221060610011 Ref C: 2025-06-02T21:49:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:43 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.5192.250410\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-23h2-ent-cpc-os/versions/22631.5335.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yM2gyLWVudC1jcGMtb3MvdmVyc2lvbnMvMjI2MzEuNTMzNS4yNTA1MTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "17e0521e-7307-4feb-b619-f22cf04a906b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12562,Microsoft.Compute/GetVMImageFromLocation30Min;73562" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b45d23ef-c756-41bc-87da-5ee096cad0c6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/500ac29f-dca8-45c9-9d4d-24d5b591a563" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a5e2984e-a2d0-4911-9783-c2a9e8f6aa63" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214944Z:a5e2984e-a2d0-4911-9783-c2a9e8f6aa63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9B1BD78C70024161B88E93BFB68D5016 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:49:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:43 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-23h2-ent-cpc-os/Versions/22631.5335.250513\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-24h2-ent-cpc/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yNGgyLWVudC1jcGMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eb536abe-5e74-41e6-aa0c-9cc949800d7d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15837,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43837" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "07c2030c-7e55-4895-8952-d1f0353e4e8d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fbed37a6-8397-4e6b-b6ab-f1d6468d8297" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6beb8541-65ab-443b-a24b-ed869ee30a21" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214944Z:6beb8541-65ab-443b-a24b-ed869ee30a21" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C11C72DB8C1C441EA6BA227F2D9DD750 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:49:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:44 GMT" + ], + "Content-Length": [ + "1568" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc/Versions/26100.2894.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc/Versions/26100.3194.250214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc/Versions/26100.3476.250312\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc/Versions/26100.3775.250408\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc/Versions/26100.4061.250513\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-24h2-ent-cpc/versions/26100.2894.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yNGgyLWVudC1jcGMvdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f4e7a661-0dcf-4dde-87f0-83f200efd2f3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12561,Microsoft.Compute/GetVMImageFromLocation30Min;73561" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "67041e0c-5b9a-4ff3-a188-a0f731059387" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/19367f58-381f-4b93-8b3f-60b992002b1b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d7b851b1-908f-4539-94c0-918fc3a3fb77" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214944Z:d7b851b1-908f-4539-94c0-918fc3a3fb77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 344BA88284494F84A1F56EE5830D1B7A Ref B: MNZ221060609027 Ref C: 2025-06-02T21:49:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:43 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-15T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc/Versions/26100.2894.250115\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-24h2-ent-cpc/versions/26100.3194.250214?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yNGgyLWVudC1jcGMvdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e494c8a1-dd8f-4f77-b984-2d7a449d451f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12560,Microsoft.Compute/GetVMImageFromLocation30Min;73560" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "9707edee-afc4-41f1-b443-ba30ff7e33c2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/062e4827-5b9c-4615-8e95-b7abf7b50f10" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e63b2dae-196a-4343-ac66-6a4798ed4cc6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214944Z:e63b2dae-196a-4343-ac66-6a4798ed4cc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 824CAD3EC33B4E6EB193A3CAA2E7A8EC Ref B: MNZ221060609031 Ref C: 2025-06-02T21:49:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:43 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-14T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc/Versions/26100.3194.250214\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-24h2-ent-cpc/versions/26100.3476.250312?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yNGgyLWVudC1jcGMvdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "03315bfb-4f6e-4dba-9697-6d3dddaec80c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12559,Microsoft.Compute/GetVMImageFromLocation30Min;73559" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3ceeaf9b-026a-44e2-bd81-81066d279f1a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/696b7655-6e46-484d-94b3-32889ce9efcd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1ae3f5cf-46f0-4948-8c25-f236124b8f99" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214944Z:1ae3f5cf-46f0-4948-8c25-f236124b8f99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DA6824B4CA1D4BE1B22663A7A3602F40 Ref B: MNZ221060609019 Ref C: 2025-06-02T21:49:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:43 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc/Versions/26100.3476.250312\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-24h2-ent-cpc/versions/26100.3775.250408?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yNGgyLWVudC1jcGMvdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "90de3c93-ea76-40ca-8b86-ff65bbde0b2f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12558,Microsoft.Compute/GetVMImageFromLocation30Min;73558" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "163b6beb-56b1-45b4-9daa-0d4e7ecb471a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/20aa09e4-086e-41d7-87ce-64596c906117" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3125c9aa-1323-40ed-9190-609848e7b3d0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214944Z:3125c9aa-1323-40ed-9190-609848e7b3d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5BE6FD7C601C48CF93B388AFB664B94F Ref B: MNZ221060619025 Ref C: 2025-06-02T21:49:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:43 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc/Versions/26100.3775.250408\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-24h2-ent-cpc/versions/26100.4061.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yNGgyLWVudC1jcGMvdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3aa4a4ef-e757-4d9a-b9cb-11a84d734e61" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12557,Microsoft.Compute/GetVMImageFromLocation30Min;73557" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "88b3d900-7402-4c15-a8c4-a5d7ca7a0616" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6856bb7a-e339-415a-a493-338d8393652a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "76f55dce-3a03-4f89-9525-5438eb97eec4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214944Z:76f55dce-3a03-4f89-9525-5438eb97eec4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 94695F0AABD240E1934D2A639AE022FA Ref B: MNZ221060608025 Ref C: 2025-06-02T21:49:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:44 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc/Versions/26100.4061.250513\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-24h2-ent-cpc-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yNGgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7a0e7fab-8aa0-4b30-9c29-686d956cf3e3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15836,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43836" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "757347d3-dccd-43d2-b73a-7a0210ff342a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ea4e3108-b4b6-4b24-a279-f6ff7111b6b8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7205c04e-4447-4189-9bea-734d3e5a9042" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214944Z:7205c04e-4447-4189-9bea-734d3e5a9042" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 64D1D40F1C4048CC985656729A9AD806 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:49:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:44 GMT" + ], + "Content-Length": [ + "1593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc-m365/Versions/26100.2894.250115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc-m365/Versions/26100.3194.250214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc-m365/Versions/26100.3476.250312\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc-m365/Versions/26100.3775.250408\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc-m365/Versions/26100.4061.250513\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-24h2-ent-cpc-m365/versions/26100.2894.250115?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yNGgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDExNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ecca071b-6768-47b3-9e34-63a9e5638688" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12556,Microsoft.Compute/GetVMImageFromLocation30Min;73556" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "fb8879f7-d7fd-465c-a03e-d4d5c1cc9bfe" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/de7188f9-f892-4b28-9f72-6dcc3410c29a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b7f433ec-8a5e-4767-9f05-fdfe4b4b988b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214944Z:b7f433ec-8a5e-4767-9f05-fdfe4b4b988b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D935AEE4C2BB4C299649CA569C8A4E31 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:49:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:44 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-15T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-19T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc-m365/Versions/26100.2894.250115\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-24h2-ent-cpc-m365/versions/26100.3194.250214?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yNGgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yNjEwMC4zMTk0LjI1MDIxND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bb79010c-2da8-4c64-9011-c67518cef6f8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12555,Microsoft.Compute/GetVMImageFromLocation30Min;73555" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "bd9a759f-256d-4f80-8ce9-b4edf1a103a6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/db709c88-9325-4af3-80d9-94fe4d52ff5e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5024af4e-94a1-4487-aaf3-47c961c64cb4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214945Z:5024af4e-94a1-4487-aaf3-47c961c64cb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2BB702C349EE41D89AA0E11F21D45FAE Ref B: MNZ221060609045 Ref C: 2025-06-02T21:49:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:44 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-14T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-17T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc-m365/Versions/26100.3194.250214\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-24h2-ent-cpc-m365/versions/26100.3476.250312?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yNGgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yNjEwMC4zNDc2LjI1MDMxMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cf4bb8fe-8b29-4d51-bcff-b839da321c50" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12554,Microsoft.Compute/GetVMImageFromLocation30Min;73554" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "70b618fe-f720-434f-81f4-d896fd937d74" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f67f5414-40ba-47d6-893b-b4f2a9c40acd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "db7651e7-00e8-47ec-b61b-b5be9799d777" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214945Z:db7651e7-00e8-47ec-b61b-b5be9799d777" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7920923419BA4307B82069E8BC025232 Ref B: MNZ221060609019 Ref C: 2025-06-02T21:49:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:44 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-17T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-16T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc-m365/Versions/26100.3476.250312\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-24h2-ent-cpc-m365/versions/26100.3775.250408?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yNGgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDQwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f38bccf8-a47b-4a87-b615-26b2abbf8e59" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12553,Microsoft.Compute/GetVMImageFromLocation30Min;73553" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "4f678f82-19be-4aec-9f40-f7055843ea38" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c216e7e3-40ee-42f4-acd2-3eb491d55787" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a05bd57e-b8a8-49bc-9229-6ef965d618d1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214945Z:a05bd57e-b8a8-49bc-9229-6ef965d618d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B888A80F7F794B0CA0F73BB863ABFF31 Ref B: MNZ221060619047 Ref C: 2025-06-02T21:49:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:45 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-13T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250408\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc-m365/Versions/26100.3775.250408\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows-ent-cpc/skus/win11-24h2-ent-cpc-m365/versions/26100.4061.250513?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzLWVudC1jcGMvc2t1cy93aW4xMS0yNGgyLWVudC1jcGMtbTM2NS92ZXJzaW9ucy8yNjEwMC40MDYxLjI1MDUxMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "708ef7f4-0c98-4f1f-95c9-e3eabb1c1221" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12552,Microsoft.Compute/GetVMImageFromLocation30Min;73552" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "cdb02344-f7f3-4496-801f-bbe62267941d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/89fbc0d1-63b7-4172-ae99-3f6c94741497" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8013c89f-6c77-4c98-9698-ddc1b8661ee1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214945Z:8013c89f-6c77-4c98-9698-ddc1b8661ee1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7FD94C1804D247B68FDFD95B34D4D54A Ref B: MNZ221060618029 Ref C: 2025-06-02T21:49:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:44 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-18T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250513\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows-ent-cpc/Skus/win11-24h2-ent-cpc-m365/Versions/26100.4061.250513\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows10preview/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTBwcmV2aWV3L3NrdXM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "394dde19-ef54-4dda-a567-0e2a9a01e647" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9993,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "19ad4e65-9082-4008-86fe-a7452da1ab78" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fd215671-14f7-4e6d-906f-7561fbaab83f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7afdb96a-87e7-4fe2-b547-7d2efba09f08" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214945Z:7afdb96a-87e7-4fe2-b547-7d2efba09f08" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9EBA9CDE188841FDA5E3714628A78CA7 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:49:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:44 GMT" + ], + "Content-Length": [ + "1679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-avd-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows10preview/Skus/win10-22h2-avd-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-avd-m365-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows10preview/Skus/win10-22h2-avd-m365-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-ent-cpc-m365-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows10preview/Skus/win10-22h2-ent-cpc-m365-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win10-22h2-ent-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows10preview/Skus/win10-22h2-ent-g2\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows10preview/skus/win10-22h2-avd-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTBwcmV2aWV3L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "db7559b8-b765-4c65-bfd8-304281408f1c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15835,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43835" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "be863afd-8168-484f-8dad-4e8d6b026cd9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/346306c8-5d6e-431d-93b1-2cef88c4b779" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3939ebb9-6382-4be8-a5a6-45d8901bb633" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214945Z:3939ebb9-6382-4be8-a5a6-45d8901bb633" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 567D2B3D6CDC4032B822D999DD7A9408 Ref B: MNZ221060608051 Ref C: 2025-06-02T21:49:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:44 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows10preview/skus/win10-22h2-avd-m365-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTBwcmV2aWV3L3NrdXMvd2luMTAtMjJoMi1hdmQtbTM2NS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ac233c64-fc0d-4418-9541-982dcd07c90d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15834,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43834" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "1cbd97c4-2ded-459e-91dd-cba800ff082b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7d9c688f-94ff-4fc6-a9b5-d98033010959" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "8addec62-8c0a-4242-b4c3-4e44aab3f2bd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214945Z:8addec62-8c0a-4242-b4c3-4e44aab3f2bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 66AEEFB20EBC45188C7C273D3410818D Ref B: MNZ221060608031 Ref C: 2025-06-02T21:49:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:44 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows10preview/skus/win10-22h2-ent-cpc-m365-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTBwcmV2aWV3L3NrdXMvd2luMTAtMjJoMi1lbnQtY3BjLW0zNjUtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8dc26eb0-da82-43b2-bf43-aa3e5b55722f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15833,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43833" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "08806cd0-633d-4136-bc6f-beafccfa9d3e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/68d431d5-bafe-458c-83d7-18cfa4cb9abb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9d1777fd-8cd8-4e74-8516-d6441a9b6a19" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214945Z:9d1777fd-8cd8-4e74-8516-d6441a9b6a19" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 017C199D28D84634B7E7054CD5C0A2D7 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:49:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:45 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows10preview/skus/win10-22h2-ent-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTBwcmV2aWV3L3NrdXMvd2luMTAtMjJoMi1lbnQtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7266125d-2245-4a3f-960e-9676970813c8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15832,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43832" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "870ecb15-68fa-4628-a519-2fd09609a67f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a785e400-f9d0-4e04-8d76-42ec45ac5991" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cc757098-e68c-4db5-b47c-5bf51c513d3e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214945Z:cc757098-e68c-4db5-b47c-5bf51c513d3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 52F9426ABE954E648F09B7849A93DCF9 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:49:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:45 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3L3NrdXM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9619802f-9e77-4724-a403-1f5df46def14" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9992,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29992" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3ea28c69-4675-4d0d-b3d7-6d24ef08a0e8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2f7ef9a1-bb06-4bd2-8ae8-580fe66aad41" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "3fc1acef-de94-41fb-b01a-f709070c5096" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214947Z:3fc1acef-de94-41fb-b01a-f709070c5096" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FA8A8B4570734F45BFC3A766AB20E6E8 Ref B: MNZ221060619023 Ref C: 2025-06-02T21:49:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:46 GMT" + ], + "Content-Length": [ + "2479" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-21h2-avd-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview/Skus/win11-21h2-avd-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-21h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview/Skus/win11-21h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-21h2-ent-cpc-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview/Skus/win11-21h2-ent-cpc-m365\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-21h2-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview/Skus/win11-21h2-pro\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview/Skus/win11-23h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-ent-cpc-m365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview/Skus/win11-23h2-ent-cpc-m365\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview/skus/win11-21h2-avd-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3L3NrdXMvd2luMTEtMjFoMi1hdmQtbTM2NS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6ba1f6fd-9291-4f72-8a0d-1a5ceb3a1422" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15831,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43831" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0f61b255-f16b-439f-8fb9-8696788705b1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/20a360a2-9922-41a1-85e0-716f3df8c5c0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3f675535-c744-493d-8d84-de8e206cfd6a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214947Z:3f675535-c744-493d-8d84-de8e206cfd6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E79364A6A4E249B1A3E4DFB44336E276 Ref B: MNZ221060609049 Ref C: 2025-06-02T21:49:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:46 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview/skus/win11-21h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3L3NrdXMvd2luMTEtMjFoMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3cf30b41-0bff-45bf-b43b-acb50a434874" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15830,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43830" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ce6854db-561d-47bf-a070-737dc6bf778d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5d12463c-91a9-41bd-a8e1-83261c39b3cd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "11b9573d-a33b-4326-b7d2-87a673a89c97" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214947Z:11b9573d-a33b-4326-b7d2-87a673a89c97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DCD7D6A09B1B4E689DA421FC87EFAFED Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:46 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview/skus/win11-21h2-ent-cpc-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3L3NrdXMvd2luMTEtMjFoMi1lbnQtY3BjLW0zNjUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "648215d3-ff30-47d6-9672-1446946828c1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15829,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43829" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "c73b5c58-eb8f-40b1-a331-1afeb0239698" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/eb9d4aca-0e5f-49fe-98b2-5583cf83b0f8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "55d61152-e397-4505-b7d0-3dbe8c5eda2b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214947Z:55d61152-e397-4505-b7d0-3dbe8c5eda2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EF889E39269F4BFEAA763C3F7E63DD39 Ref B: MNZ221060619011 Ref C: 2025-06-02T21:49:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:47 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview/skus/win11-21h2-pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3L3NrdXMvd2luMTEtMjFoMi1wcm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7fee17fa-42a4-4487-bc40-974ccd845287" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15828,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43828" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0c118cd7-b7a2-4cc2-bd57-f9e1d2b4537b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/31835625-8f11-4933-9af4-181ab58903b2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "907807eb-a872-4d18-90d0-e2c386670fea" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214947Z:907807eb-a872-4d18-90d0-e2c386670fea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A0B6DA0A5CAE4C1EA309C8046B9D690D Ref B: MNZ221060618021 Ref C: 2025-06-02T21:49:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:47 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview/skus/win11-23h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3L3NrdXMvd2luMTEtMjNoMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "db9d4156-12f9-437b-b8f5-5ad14382b40e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15827,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43827" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0223d422-3741-4abe-9b68-764769d3b2a9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8200c0c6-57fd-46b8-8bde-28bf4cb07a50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f5040111-8d64-4335-8ece-ff7bdaecf366" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214947Z:f5040111-8d64-4335-8ece-ff7bdaecf366" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7509C7E4E2C9451B9AB0A5705A11BA48 Ref B: MNZ221060610029 Ref C: 2025-06-02T21:49:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:47 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview/skus/win11-23h2-ent-cpc-m365/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3L3NrdXMvd2luMTEtMjNoMi1lbnQtY3BjLW0zNjUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "308aac3b-8e4b-44a9-90ec-42e55185065b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15826,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43826" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "832511c4-93cd-454e-bffa-f7401ee985d6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/54290311-d173-478a-b823-b3d4286e524d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a9249b66-68f0-4ef1-9632-c846bb29332d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214947Z:a9249b66-68f0-4ef1-9632-c846bb29332d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B189D53FE3AD47BCA212A822AA26B305 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:49:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:46 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9cd75023-5036-4c78-b7a0-58226c28d0a5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9991,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29991" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ab5ea9cf-afc3-42dd-8f17-96eab7d86832" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/69386f9b-8cbb-43bd-806a-fb74a140fe68" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "25680b05-df88-4d47-b99d-e30f05508481" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214947Z:25680b05-df88-4d47-b99d-e30f05508481" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F3C1EC73C69F4381AC06A88AA5E9D5C9 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:49:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:47 GMT" + ], + "Content-Length": [ + "2880" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-21h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-21h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-22h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-22h2-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-pro\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-23h2-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-pro\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-24h2-ent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-ent\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"win11-24h2-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-pro\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-21h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjFoMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f7449170-46ec-4c15-99a0-b870d8120cb5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15825,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43825" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "cce77cd0-63db-4c80-b7c5-135c3d5efc08" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b055ff41-9c6b-42ba-a1fb-e4989ef7b575" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b8453423-fa0b-4a30-8267-41eb23b170a3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214947Z:b8453423-fa0b-4a30-8267-41eb23b170a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 70B6D3C19499466FB30312BA9F888B4C Ref B: MNZ221060618021 Ref C: 2025-06-02T21:49:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:47 GMT" + ], + "Content-Length": [ + "635" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.3197.240906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-21h2-ent/Versions/22000.3197.240906\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.3260.241005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-21h2-ent/Versions/22000.3260.241005\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-21h2-ent/versions/22000.3197.240906?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjFoMi1lbnQvdmVyc2lvbnMvMjIwMDAuMzE5Ny4yNDA5MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "16d70872-d4ef-481c-a752-cb21def47fa2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12551,Microsoft.Compute/GetVMImageFromLocation30Min;73551" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "ba6b1da7-1d1f-408e-9844-38c64473fc73" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5db4db22-1ffb-4801-8688-aa4b29d8ed01" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d08d4a1f-5dc7-4088-8c75-1e962808036d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214948Z:d08d4a1f-5dc7-4088-8c75-1e962808036d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3602817939BB481DBB052A030E7A1542 Ref B: MNZ221060608019 Ref C: 2025-06-02T21:49:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:48 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.3197.240906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-21h2-ent/Versions/22000.3197.240906\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-21h2-ent/versions/22000.3260.241005?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjFoMi1lbnQvdmVyc2lvbnMvMjIwMDAuMzI2MC4yNDEwMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b90c70cb-4c65-438c-9119-19b91282196b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12550,Microsoft.Compute/GetVMImageFromLocation30Min;73550" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "821f5d93-170a-43a0-8d78-55f8d26360e3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cc5eaa3a-4d49-45d6-9af9-8e136e4b2a1f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1f18619a-80dd-408b-a22d-790b6eff495b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214948Z:1f18619a-80dd-408b-a22d-790b6eff495b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0B964B29E9D4480BAB76292C6A4F2203 Ref B: MNZ221060608051 Ref C: 2025-06-02T21:49:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:47 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22000.3260.241005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-21h2-ent/Versions/22000.3260.241005\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-22h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjJoMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ef1a8fa9-464c-4dde-889d-e06242f0a8ca" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15824,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43824" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "07b67674-98a4-4a28-9cc6-139592ef90a1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7b99577d-cf04-4e34-be8a-e98bf89a9477" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "14932bb9-d288-4b51-a0db-ae8908de6f50" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214948Z:14932bb9-d288-4b51-a0db-ae8908de6f50" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BAE5395ECAD34EE08D6D4FC8E8CC15DA Ref B: MNZ221060609007 Ref C: 2025-06-02T21:49:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:47 GMT" + ], + "Content-Length": [ + "1583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-ent/Versions/22621.4751.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-ent/Versions/22621.4890.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-ent/Versions/22621.5039.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-ent/Versions/22621.5192.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-ent/Versions/22621.5335.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-22h2-ent/versions/22621.4751.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjJoMi1lbnQvdmVyc2lvbnMvMjI2MjEuNDc1MS4yNTAxMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d7e1a282-51f6-42c9-bcca-a1a50662ccb4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12549,Microsoft.Compute/GetVMImageFromLocation30Min;73549" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "62dfe6f1-5c84-4654-8b34-9212d345b38f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/20a3097b-555b-4f45-a932-f9cb920297ba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f9dec3c5-7311-4e37-9e13-1995684026a1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214948Z:f9dec3c5-7311-4e37-9e13-1995684026a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 837AD58345F8426CA10811441A80A42F Ref B: MNZ221060608029 Ref C: 2025-06-02T21:49:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:47 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-ent/Versions/22621.4751.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-22h2-ent/versions/22621.4890.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjJoMi1lbnQvdmVyc2lvbnMvMjI2MjEuNDg5MC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "48c25d27-ba59-46fd-8e8f-9b6561ff6d32" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12548,Microsoft.Compute/GetVMImageFromLocation30Min;73548" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "13164c9e-f5f4-406c-840d-eb895005e5fb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/05249763-6c52-4058-9ac4-7c40fb5e62e4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "99322937-627e-4d79-ba5b-b48cde7bcc9d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214948Z:99322937-627e-4d79-ba5b-b48cde7bcc9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B98D479984DF4BF8879601F076AE9626 Ref B: MNZ221060608047 Ref C: 2025-06-02T21:49:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:48 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-ent/Versions/22621.4890.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-22h2-ent/versions/22621.5039.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjJoMi1lbnQvdmVyc2lvbnMvMjI2MjEuNTAzOS4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a6e58ad2-b564-4de4-aba7-fe2973042d88" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12547,Microsoft.Compute/GetVMImageFromLocation30Min;73547" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "a360b41b-aab0-4fd8-93a6-13cf38478ae3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4764d812-c946-4c35-93e4-23ad2c583158" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f425d172-a6d9-47b9-a052-3a8a697db836" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214948Z:f425d172-a6d9-47b9-a052-3a8a697db836" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 177EBD98A6094D708EC17967EB0A2EA0 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:48 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-ent/Versions/22621.5039.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-22h2-ent/versions/22621.5192.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjJoMi1lbnQvdmVyc2lvbnMvMjI2MjEuNTE5Mi4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "093c84d3-8886-4288-a572-16fe0babb948" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12546,Microsoft.Compute/GetVMImageFromLocation30Min;73546" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "3f467a38-bcc4-4c79-99b9-063f5543a1cb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/507887f7-ef0b-45dc-9da0-46fb47547ae4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "22280c0e-49fb-4f1b-82cb-fbf93748f0e2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214948Z:22280c0e-49fb-4f1b-82cb-fbf93748f0e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5B7CD6FBB3024ED6AD90B109036DB9AC Ref B: MNZ221060619049 Ref C: 2025-06-02T21:49:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:48 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-ent/Versions/22621.5192.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-22h2-ent/versions/22621.5335.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjJoMi1lbnQvdmVyc2lvbnMvMjI2MjEuNTMzNS4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d2283451-4431-40d8-817d-b43b679c3cf4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12545,Microsoft.Compute/GetVMImageFromLocation30Min;73545" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "372df69b-c3b1-4ee4-86c8-c8f3d3ffd14f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/13438e5c-55f3-43bb-afc5-9678307b9776" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0f014d10-1751-46c7-b334-6f29089711f2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214949Z:0f014d10-1751-46c7-b334-6f29089711f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C6062E770E644AFA8D8D31D8F38201FA Ref B: MNZ221060609021 Ref C: 2025-06-02T21:49:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:48 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-ent/Versions/22621.5335.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-22h2-pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjJoMi1wcm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a56d94d5-5d85-428f-86f7-20fe9dc6ec5c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15823,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43823" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "568ea8e7-1b20-4bb8-ba0c-20a4f36b2850" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a070f756-a106-40d7-a31f-8fa6289a18de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "28ba3120-b275-4bae-a384-a81464a1d726" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214949Z:28ba3120-b275-4bae-a384-a81464a1d726" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DA352CFCADDE4B53951EE74E935DA1F8 Ref B: MNZ221060608045 Ref C: 2025-06-02T21:49:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:48 GMT" + ], + "Content-Length": [ + "635" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4169.240906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-pro/Versions/22621.4169.240906\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4317.241005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-pro/Versions/22621.4317.241005\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-22h2-pro/versions/22621.4169.240906?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjJoMi1wcm8vdmVyc2lvbnMvMjI2MjEuNDE2OS4yNDA5MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8c12fa7c-9080-4526-8989-05e27fec99b8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12544,Microsoft.Compute/GetVMImageFromLocation30Min;73544" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "f4ffc3b9-2cab-4d67-ba6b-f093534ddb70" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5dfb266c-1220-4522-b568-8a2adbfcb8ad" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a2a7ad21-efe6-45d3-8cf8-7637365dab7b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214949Z:a2a7ad21-efe6-45d3-8cf8-7637365dab7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB8DFC4331A744F39CFC9EAC153AEC14 Ref B: MNZ221060618031 Ref C: 2025-06-02T21:49:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:48 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4169.240906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-pro/Versions/22621.4169.240906\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-22h2-pro/versions/22621.4317.241005?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjJoMi1wcm8vdmVyc2lvbnMvMjI2MjEuNDMxNy4yNDEwMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c3eb5a0f-63c6-426b-8efd-db925952dd78" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12543,Microsoft.Compute/GetVMImageFromLocation30Min;73543" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "9c00c6f6-f8d7-4d61-8cea-30649db7df6f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/134a09dc-1b6b-456f-9985-ae9093ad4ce7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bd4b3b8a-e2fb-474e-ba92-1e9b3937075e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214949Z:bd4b3b8a-e2fb-474e-ba92-1e9b3937075e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AED7EB98193840B6B489CB5FD92CFA0C Ref B: MNZ221060608039 Ref C: 2025-06-02T21:49:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:49 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22621.4317.241005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-22h2-pro/Versions/22621.4317.241005\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-23h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjNoMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a5e9ec51-44d7-45ef-b421-dc8edda61629" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15822,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43822" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "94e0b859-8e84-40a2-b2a6-21f7ac3bd495" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3fe41f00-f399-4576-ae01-2d5aabbcffb8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "728da8a8-4afc-4cc0-b950-d21f63290b56" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214949Z:728da8a8-4afc-4cc0-b950-d21f63290b56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 18E640791D62420A905448ED2BAC160D Ref B: MNZ221060619035 Ref C: 2025-06-02T21:49:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:49 GMT" + ], + "Content-Length": [ + "1583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-ent/Versions/22631.4751.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-ent/Versions/22631.4890.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-ent/Versions/22631.5039.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-ent/Versions/22631.5192.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-ent/Versions/22631.5335.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-23h2-ent/versions/22631.4751.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjNoMi1lbnQvdmVyc2lvbnMvMjI2MzEuNDc1MS4yNTAxMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c38c478f-edaf-4ba3-8234-aa07a4fcca7d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12542,Microsoft.Compute/GetVMImageFromLocation30Min;73542" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "d6673dc6-d695-4b6b-a2f9-ceac2357d827" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/28be1476-6086-4f3d-b21c-a00d2327d3ba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "313e8a55-30fb-4f15-8f69-89ca71ed715a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214949Z:313e8a55-30fb-4f15-8f69-89ca71ed715a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C91D0E8A4D8D478095864F01C60803FD Ref B: MNZ221060610049 Ref C: 2025-06-02T21:49:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:49 GMT" + ], + "Content-Length": [ + "1120" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-ent/Versions/22631.4751.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-23h2-ent/versions/22631.4890.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjNoMi1lbnQvdmVyc2lvbnMvMjI2MzEuNDg5MC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "097b4a6c-3bbd-4ec6-9870-bf5e5ac99f86" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12541,Microsoft.Compute/GetVMImageFromLocation30Min;73541" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "33c39c6f-d825-48b0-9be2-4356af33b6f2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c9cbfd4e-f6a9-4834-baf2-94ac36eb7f71" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "926f30c1-78e9-4cc1-a899-7b22dc105352" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214949Z:926f30c1-78e9-4cc1-a899-7b22dc105352" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 87AF0431E9F040D2B247B58A75B9E2DA Ref B: MNZ221060618011 Ref C: 2025-06-02T21:49:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:49 GMT" + ], + "Content-Length": [ + "1120" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-ent/Versions/22631.4890.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-23h2-ent/versions/22631.5039.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjNoMi1lbnQvdmVyc2lvbnMvMjI2MzEuNTAzOS4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8916cf89-00ef-44a7-ad15-575121a2e6e5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12540,Microsoft.Compute/GetVMImageFromLocation30Min;73540" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "44800a21-92e5-48ab-86b1-f9de6b19e2cc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/99be25f1-b131-4806-8af2-74eea97e6367" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7faa9d49-818d-4b86-8857-8b01bb709367" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214949Z:7faa9d49-818d-4b86-8857-8b01bb709367" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D711DA3B882A4745AF8567411EF8D15A Ref B: MNZ221060618037 Ref C: 2025-06-02T21:49:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:49 GMT" + ], + "Content-Length": [ + "1120" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-ent/Versions/22631.5039.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-23h2-ent/versions/22631.5192.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjNoMi1lbnQvdmVyc2lvbnMvMjI2MzEuNTE5Mi4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a561ab55-8bae-4f17-a495-fdeb552621be" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12539,Microsoft.Compute/GetVMImageFromLocation30Min;73539" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "6dd5f9f2-380b-4c35-8ec9-459e104bd7cc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/46a24883-368e-4129-92d6-a97c6718902a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e704c2a2-e10f-4e92-8241-6d0db9e92bc8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214949Z:e704c2a2-e10f-4e92-8241-6d0db9e92bc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5646794214B14C92BFF1F60D522AC965 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:49:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:49 GMT" + ], + "Content-Length": [ + "1039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-ent/Versions/22631.5192.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-23h2-ent/versions/22631.5335.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjNoMi1lbnQvdmVyc2lvbnMvMjI2MzEuNTMzNS4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b1bb69c5-7067-40b5-a5bc-a83c7e10bc1b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12538,Microsoft.Compute/GetVMImageFromLocation30Min;73538" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e446f430-22da-4cf9-afc9-cf57cd14dfcd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fdfd4518-4eb2-492a-a659-178ad90db9d9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "837d68b0-d469-4818-991b-ee5c157d355c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214950Z:837d68b0-d469-4818-991b-ee5c157d355c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A235CAA64ACB47B79483805FC7249CF2 Ref B: MNZ221060609021 Ref C: 2025-06-02T21:49:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:49 GMT" + ], + "Content-Length": [ + "1039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-ent/Versions/22631.5335.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-23h2-pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjNoMi1wcm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0b274ce9-645a-4f83-9510-1b2f906bd5c4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15821,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43821" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "0ad520c1-1ab8-4e97-b855-486956d89dc1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9b33decb-419a-4282-bace-7be1004fff13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "08e2f6f6-e9ba-4ba0-925f-ba6d1953cf12" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214950Z:08e2f6f6-e9ba-4ba0-925f-ba6d1953cf12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D7744E96DA974FB0A801FF13FE25FF3F Ref B: MNZ221060619049 Ref C: 2025-06-02T21:49:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:49 GMT" + ], + "Content-Length": [ + "1583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-pro/Versions/22631.4751.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-pro/Versions/22631.4890.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-pro/Versions/22631.5039.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-pro/Versions/22631.5192.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-pro/Versions/22631.5335.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-23h2-pro/versions/22631.4751.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjNoMi1wcm8vdmVyc2lvbnMvMjI2MzEuNDc1MS4yNTAxMTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "19614d0e-3c2d-40d2-a170-b396bc35db78" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12537,Microsoft.Compute/GetVMImageFromLocation30Min;73537" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "cecc3eea-ff65-4b2e-9601-40ab606eac8f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/18c18052-25a7-4e0d-9d7e-cb89e66a3bc3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "86dc57bd-4ebd-47f1-bd8f-1bea93834650" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214950Z:86dc57bd-4ebd-47f1-bd8f-1bea93834650" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D04BBB101C614817BF3A544EFC341EBE Ref B: MNZ221060609023 Ref C: 2025-06-02T21:49:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:50 GMT" + ], + "Content-Length": [ + "1120" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4751.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-pro/Versions/22631.4751.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-23h2-pro/versions/22631.4890.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjNoMi1wcm8vdmVyc2lvbnMvMjI2MzEuNDg5MC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4979e4bd-9302-4ae5-943e-0a1cabebbd44" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12536,Microsoft.Compute/GetVMImageFromLocation30Min;73536" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "5c33bf5b-704c-4dfd-b859-97fb44871d0e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ed571d5b-030c-4d7e-b8b2-6e3119b10c2c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f9307ed1-4ca3-47ce-bd6f-20fb3885a9f2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214950Z:f9307ed1-4ca3-47ce-bd6f-20fb3885a9f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C670F16D24944406ABF563F32001A76D Ref B: MNZ221060618021 Ref C: 2025-06-02T21:49:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:49 GMT" + ], + "Content-Length": [ + "1120" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.4890.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-pro/Versions/22631.4890.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-23h2-pro/versions/22631.5039.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjNoMi1wcm8vdmVyc2lvbnMvMjI2MzEuNTAzOS4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "67da5636-de4b-443c-a5ac-dae264d03b65" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12535,Microsoft.Compute/GetVMImageFromLocation30Min;73535" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "fcecec5c-0004-4fdf-b101-351cd98d2d69" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cb0fbc6f-8706-46e3-9992-3420fa76d12a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2004c05a-16d1-405f-9db0-1865956d0ad0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214950Z:2004c05a-16d1-405f-9db0-1865956d0ad0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EF5D724A7ACC40908E50BB7C2F47B1B7 Ref B: MNZ221060619011 Ref C: 2025-06-02T21:49:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:50 GMT" + ], + "Content-Length": [ + "1120" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5039.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-pro/Versions/22631.5039.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-23h2-pro/versions/22631.5192.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjNoMi1wcm8vdmVyc2lvbnMvMjI2MzEuNTE5Mi4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8e34317a-fdf6-4280-adfe-ba2f68b70438" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12534,Microsoft.Compute/GetVMImageFromLocation30Min;73534" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e76621d7-0172-4940-bf8d-63b17d978ffc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c6d3f978-99cc-44a0-b044-de9b8607e89a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "671e697d-e5ef-42a7-a395-4bed085bdeeb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214950Z:671e697d-e5ef-42a7-a395-4bed085bdeeb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B19935971BDB4B7CB4E3B0594467A8B7 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:49:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:49 GMT" + ], + "Content-Length": [ + "1039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5192.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-pro/Versions/22631.5192.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-23h2-pro/versions/22631.5335.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjNoMi1wcm8vdmVyc2lvbnMvMjI2MzEuNTMzNS4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0114f6ee-4bcb-4aca-bf5e-99f5615eeb9d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12533,Microsoft.Compute/GetVMImageFromLocation30Min;73533" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "b9bcd253-7075-44fb-b008-5ea21a116e6c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4286c407-0d3f-42a3-acb0-eae11b315d8e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "85713fe8-fd21-428a-aa89-69f0b2a9351c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214950Z:85713fe8-fd21-428a-aa89-69f0b2a9351c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3BC6C7AC5C3B459F885FF9387EE11894 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:49:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:49 GMT" + ], + "Content-Length": [ + "1039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"22631.5335.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-23h2-pro/Versions/22631.5335.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-ent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "97c9e085-d160-44c9-85f3-a34c19a72217" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15820,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43820" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "8f2f4278-abb5-4c1c-9329-4eb4894f181f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d29b48a1-d885-4e22-acf8-32eaf39708b5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "89913b46-bc76-4024-8d62-e93456c4b0dc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214950Z:89913b46-bc76-4024-8d62-e93456c4b0dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 46FD9BB8C5D345A5ACB09AAB62F294CD Ref B: MNZ221060618031 Ref C: 2025-06-02T21:49:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:50 GMT" + ], + "Content-Length": [ + "1899" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-ent/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-ent/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-ent/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-ent/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-ent/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-ent/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-ent/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dfa6eb73-3102-49e3-89db-5a5cc3a2818d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12532,Microsoft.Compute/GetVMImageFromLocation30Min;73532" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "6bb937e9-14e1-4556-b52a-bbed2be31037" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c7955095-f9ee-4d10-8469-69082c5cdad6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b292e0e8-b686-4c05-885a-39981acc5c8e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214950Z:b292e0e8-b686-4c05-885a-39981acc5c8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F5D08A1409C0431AA31C836A6726E93F Ref B: MNZ221060618037 Ref C: 2025-06-02T21:49:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:50 GMT" + ], + "Content-Length": [ + "1210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-ent/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-ent/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "184ee663-8a18-426f-be36-e136079b6f47" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12531,Microsoft.Compute/GetVMImageFromLocation30Min;73531" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "6b3ccbb3-a64b-4a3c-970a-673863a25e1a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ead7ae08-781e-4fa2-b6d8-6a996628a930" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c9eb0777-48fe-4e56-ba47-716eb7a35c1a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214950Z:c9eb0777-48fe-4e56-ba47-716eb7a35c1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 02C06E82AC194870B9B805DE5F6021D1 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:49:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:50 GMT" + ], + "Content-Length": [ + "1210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-ent/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-ent/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4c2be8a9-37e5-41a7-97bf-f39daa87f110" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12530,Microsoft.Compute/GetVMImageFromLocation30Min;73530" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "40fcebe4-efeb-48ac-961e-af5cb6384308" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bbcde426-7ff6-4b52-a991-334e19afe6db" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6cb58faa-96f4-4a20-a870-16780b383e95" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214951Z:6cb58faa-96f4-4a20-a870-16780b383e95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 28C07BCE9D094056A6EE16C34C369F99 Ref B: MNZ221060608045 Ref C: 2025-06-02T21:49:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:50 GMT" + ], + "Content-Length": [ + "1210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-ent/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-ent/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e7c7f097-dcd3-4b92-a16f-43e3c75e224c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12529,Microsoft.Compute/GetVMImageFromLocation30Min;73529" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "1f9356fe-96d0-4176-b397-11a19e516f4a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/97a6ebc5-d515-4ed0-a61d-5900abac133c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4b1d839d-fe82-490e-9c45-c0f296e58af5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214951Z:4b1d839d-fe82-490e-9c45-c0f296e58af5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B8FE9BB5CC2543F38980D4AFD4A51CCB Ref B: MNZ221060608045 Ref C: 2025-06-02T21:49:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:51 GMT" + ], + "Content-Length": [ + "1210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-ent/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-ent/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "aecaab5a-5b33-4318-b7d7-2dd58911f163" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12528,Microsoft.Compute/GetVMImageFromLocation30Min;73528" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "72d9fb01-a091-4263-ba04-3c705f0627f2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c7c4a86f-3fcd-4344-bd3a-be6ff825351c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "6f55450f-ee16-4fde-aee2-82fa2ca9978d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214951Z:6f55450f-ee16-4fde-aee2-82fa2ca9978d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C82D240314F845AD91FCF5BAA4DAA97A Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:50 GMT" + ], + "Content-Length": [ + "1129" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-ent/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-ent/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1lbnQvdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d0f39b4d-e417-4bf2-9c37-7cb2e700baeb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12527,Microsoft.Compute/GetVMImageFromLocation30Min;73527" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e79508bc-3dbf-4d21-a6cb-3b68039b60e0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/78d1713c-9d1b-46e7-9598-4510602465e3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5847e8b9-f7ac-4776-880a-8dcb8fa95837" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214951Z:5847e8b9-f7ac-4776-880a-8dcb8fa95837" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8BE448404CBB451097FCB5635504550A Ref B: MNZ221060609029 Ref C: 2025-06-02T21:49:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:51 GMT" + ], + "Content-Length": [ + "1129" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-ent/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-pro/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fec0307d-13d9-404e-aaeb-a9560ebdc42d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15819,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43819" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "71e03ac1-17c3-4678-b624-d647997d73d8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bb9c07be-749f-4960-b035-cf7db8fbc5be" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b9c2f59e-ffa0-403f-a6de-50225a246423" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214951Z:b9c2f59e-ffa0-403f-a6de-50225a246423" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2CA78B7AF3E54736A16FA67D3FB8A248 Ref B: MNZ221060618031 Ref C: 2025-06-02T21:49:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:51 GMT" + ], + "Content-Length": [ + "1899" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-pro/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-pro/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-pro/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-pro/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-pro/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-pro/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-pro/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "128d892f-51ae-4ed5-ae71-2978fe676015" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12526,Microsoft.Compute/GetVMImageFromLocation30Min;73526" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "711473c1-625c-4772-9b7c-f7b3e287a872" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/617eb947-05cd-4e0f-9255-9723bd13664f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1640fb29-f1c0-4ff3-aa77-a809707851d2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214951Z:1640fb29-f1c0-4ff3-aa77-a809707851d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 08F9A9029D5B4E39B754421914687AAA Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:51 GMT" + ], + "Content-Length": [ + "1210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-pro/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-pro/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5a7aeb87-77a8-4462-b5ce-434668d8954c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12525,Microsoft.Compute/GetVMImageFromLocation30Min;73525" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "e983c4ca-2de1-4d28-9458-bcb07ff9287a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cbebd822-937b-4fb4-bec1-2a182d7b5bd7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "86f2d5dd-880d-4bda-8df1-b055b663f07a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214951Z:86f2d5dd-880d-4bda-8df1-b055b663f07a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DCE2251F6F564940B2F26C11809877CE Ref B: MNZ221060619047 Ref C: 2025-06-02T21:49:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:51 GMT" + ], + "Content-Length": [ + "1210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-pro/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-pro/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dc049ca5-1321-45fe-aaec-124f96f8d044" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12524,Microsoft.Compute/GetVMImageFromLocation30Min;73524" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "474cdb25-f841-4887-89fc-1ed10e5d8ab8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/430a1ecd-7bf5-4fc5-87db-689acff19104" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8588d0a2-dc55-433f-ade7-3b9047ceed74" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214952Z:8588d0a2-dc55-433f-ade7-3b9047ceed74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 57334FC9871E4162AAED77387638F85D Ref B: MNZ221060610009 Ref C: 2025-06-02T21:49:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:51 GMT" + ], + "Content-Length": [ + "1210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-pro/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-pro/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "94a4ef64-e710-40da-a31c-fedc75c38eb4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12523,Microsoft.Compute/GetVMImageFromLocation30Min;73523" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "9ffae65b-b322-40f4-839d-ff6c44ab945f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4015fbdb-7f0b-4647-b47d-5de41dcb2fcd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4be97385-e7ef-4003-9d5c-2fc9d0a618d9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214952Z:4be97385-e7ef-4003-9d5c-2fc9d0a618d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F301965E78454426BBBF861D0CBCB95A Ref B: MNZ221060618031 Ref C: 2025-06-02T21:49:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:52 GMT" + ], + "Content-Length": [ + "1210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-pro/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-pro/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "86c08d49-f35d-4322-83f3-d309c8a6c299" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12522,Microsoft.Compute/GetVMImageFromLocation30Min;73522" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "2d2d0d62-43c5-42fc-b097-43788e479c53" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e0884acb-7e7d-427a-a38b-e79c83ab26ab" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "28113d41-dd84-485d-bff5-6ba1bdb3e51e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214952Z:28113d41-dd84-485d-bff5-6ba1bdb3e51e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 975581DE2F6C478FB8C9CCC4343E2066 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:49:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:51 GMT" + ], + "Content-Length": [ + "1129" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-pro/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsDesktop/artifacttypes/vmimage/offers/windows11preview-arm64/skus/win11-24h2-pro/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c0Rlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW5kb3dzMTFwcmV2aWV3LWFybTY0L3NrdXMvd2luMTEtMjRoMi1wcm8vdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0bc5c35f-20ce-4482-a4ca-913a8416f1dc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12521,Microsoft.Compute/GetVMImageFromLocation30Min;73521" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "109a4854-5dc4-42c4-ae9a-8d3fc49369b1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/94f78ca9-9309-4613-a0dd-606644d9e33b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "aef4276b-0e99-4dfb-90d6-76921962c7e2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214952Z:aef4276b-0e99-4dfb-90d6-76921962c7e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AA8FE13C0C804D4C94A99874A91ED230 Ref B: MNZ221060619049 Ref C: 2025-06-02T21:49:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:52 GMT" + ], + "Content-Length": [ + "1129" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop/ArtifactTypes/VMImage/Offers/windows11preview-arm64/Skus/win11-24h2-pro/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlZpc3VhbFN0dWRpby5XaW5kb3dzQXp1cmUuRGV2VGVzdC5UZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7fa767e9-e734-41ca-90dc-62847e16d3b4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;198,Microsoft.Compute/ListVMImageOffersFromLocation30Min;998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ea53b42c-4086-44d3-88ec-d14961d9cf20_133897270518466127" + ], + "x-ms-request-id": [ + "abb78d39-1022-46eb-8b20-b083c45a5d8a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/339bc4c4-d553-488e-84c1-41e3e7338304" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fffaef2e-87be-4f86-be80-8f0593bc1cd6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214952Z:fffaef2e-87be-4f86-be80-8f0593bc1cd6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D0F4250A297746BF8DED20ACF29895CF Ref B: MNZ221060609045 Ref C: 2025-06-02T21:49:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:51 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a0f621b3-1663-47d8-a8eb-7ccd5cf88df2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;198,Microsoft.Compute/ListVMImageOffersFromLocation30Min;998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "14f8a767-c8fe-422f-a848-a3b2ee3ae036_133897270518622060" + ], + "x-ms-request-id": [ + "d9bf264a-1ffa-4287-8c9c-e35d32d38e91" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/99a07883-5cb9-4e16-8e4c-cfb958d350bf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e1ac20df-f65f-4ec5-a2dd-cfabad885833" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214952Z:e1ac20df-f65f-4ec5-a2dd-cfabad885833" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F07B90F34834414FAB39659ED9519DB8 Ref B: MNZ221060610035 Ref C: 2025-06-02T21:49:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:52 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlZpc3VhbFN0dWRpby5XaW5kb3dzQXp1cmUuUmVtb3RlRGVidWcvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "99c8c2d9-8a33-4952-8f9d-50a7677acb5b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "84498330-24bb-48fe-a5fa-562667461931_133888938396828343" + ], + "x-ms-request-id": [ + "9bcaadeb-3f99-4336-9e40-f437abf9c75d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b3d4b1a4-7a65-4c73-b5ef-5177602e08b5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "8cf78268-117f-42ac-ad5e-1321cb55f47f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214953Z:8cf78268-117f-42ac-ad5e-1321cb55f47f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FC2B18B925464A8598181A4A5FB248A0 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:49:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:52 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Windows.RemoteDesktop/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MuUmVtb3RlRGVza3RvcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a160a263-ea43-4b58-9283-d22e2e1dde35" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "c57ddea9-8784-4870-80a3-5a77f5e7cd56_133889737949226317" + ], + "x-ms-request-id": [ + "aaa3e801-b632-44b7-bb5d-5629a1b80876" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f012817c-4abe-4ec4-9dfc-f0f554a1ef3d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "81e8aa2d-3d4a-4fde-9dac-9e2635a56f70" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214953Z:81e8aa2d-3d4a-4fde-9dac-9e2635a56f70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 03523CEEA9794D948A6B7222F4B87FDD Ref B: MNZ221060618047 Ref C: 2025-06-02T21:49:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:52 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2a6c6319-98fe-4e90-964b-26ea3e75c7a9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "03abde5b-ba01-4cdf-9301-cd10ddf6d71f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/aeed1a1b-0200-4f03-bbe3-a19dad60b7b0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "70bb4900-71fe-4b5e-a5a3-ecd43ca35639" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214953Z:70bb4900-71fe-4b5e-a5a3-ecd43ca35639" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 81E72744E3834F7C888F20A12A5BBB91 Ref B: MNZ221060610007 Ref C: 2025-06-02T21:49:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:53 GMT" + ], + "Content-Length": [ + "2996" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19h1gen2servertest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/19h1gen2servertest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftserveroperatingsystems-previews\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"servertesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/servertesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-cvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windowsserver-gen2preview\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windowsserver-previewtest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-previewtest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windowsserverdotnet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windowsserverhotpatch-previews\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverhotpatch-previews\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServerSemiAnnual\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windowsserverupgrade\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;992" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "573a14ee-3074-49c9-bcd1-a01e783d2404" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b2381aed-1414-4a29-8f74-40093d18811c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a736ec36-d09e-4d25-ac26-3921c53c1dd0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215240Z:a736ec36-d09e-4d25-ac26-3921c53c1dd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D7272EB20852484886C7720C36BBB8A1 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:52:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:40 GMT" + ], + "Content-Length": [ + "2996" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19h1gen2servertest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/19h1gen2servertest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftserveroperatingsystems-previews\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"servertesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/servertesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-cvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windowsserver-gen2preview\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windowsserver-previewtest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-previewtest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windowsserverdotnet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windowsserverhotpatch-previews\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverhotpatch-previews\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServerSemiAnnual\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windowsserverupgrade\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/19h1gen2servertest/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzLzE5aDFnZW4yc2VydmVydGVzdC9za3VzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "22d73787-6a4f-4fa3-b801-eb382b14b1c0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9999,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "a85424d3-f133-48cc-8803-b4cd4cc14975" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/98863fc6-e445-4294-98dd-b51509681761" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "500dd0b4-1aff-4196-a2a1-62140a391e47" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214953Z:500dd0b4-1aff-4196-a2a1-62140a391e47" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3ED498D2EA444CE8BD8D275E665D318A Ref B: MNZ221060609045 Ref C: 2025-06-02T21:49:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:52 GMT" + ], + "Content-Length": [ + "419" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacentero3tf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/19h1gen2servertest/Skus/2019-datacentero3tf\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/19h1gen2servertest/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzLzE5aDFnZW4yc2VydmVydGVzdC9za3VzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9993,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "0dac97aa-cf56-4ee7-8cba-29fc6ee7910e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/efa7145b-9b8e-43bc-916b-2b39010f677d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "420b1f57-ad63-431c-ba76-1dc961d679ae" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215241Z:420b1f57-ad63-431c-ba76-1dc961d679ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B7CF1E8552A493F99F444B0661C4531 Ref B: MNZ221060608031 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "419" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacentero3tf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/19h1gen2servertest/Skus/2019-datacentero3tf\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/19h1gen2servertest/skus/2019-datacentero3tf/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzLzE5aDFnZW4yc2VydmVydGVzdC9za3VzLzIwMTktZGF0YWNlbnRlcm8zdGYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a37c2f52-c773-4ef8-b30c-8badacac1892" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "56b88e64-c69d-4ad5-97f3-6a4d43f551d2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/12c5e885-bdf5-4587-b7e3-106278a22afc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "044d2e57-842f-48fe-a8c3-6242ec4c71a1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214953Z:044d2e57-842f-48fe-a8c3-6242ec4c71a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2E6CEAEFEBF840A0A777B1430A45C34D Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:53 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/19h1gen2servertest/skus/2019-datacentero3tf/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzLzE5aDFnZW4yc2VydmVydGVzdC9za3VzLzIwMTktZGF0YWNlbnRlcm8zdGYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15913,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43892" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f15f599a-daad-4334-8a4d-69a2990f8260" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ae8fd0ba-2eb0-4692-b0c8-2dddb8670b2d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a3c13221-c533-41fc-a804-ceabc02a10a0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215241Z:a3c13221-c533-41fc-a804-ceabc02a10a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 57CAB6ED2CF34544BB447EED2D771170 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:40 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fccd117-ff67-4177-9b0b-ba76a292fc1c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9998,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29992" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "ddd5994f-ed1b-4df6-839c-c8c1585f1b8c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/81fa9ec6-92ee-42af-85f0-133043b58456" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a031fe01-d579-4877-8a2a-9df830c57bc1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214953Z:a031fe01-d579-4877-8a2a-9df830c57bc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C7A7F69CDA5B4B1AB3A0147767D391A9 Ref B: MNZ221060610049 Ref C: 2025-06-02T21:49:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:53 GMT" + ], + "Content-Length": [ + "3297" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-2022\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-2022-azure-edition-core-preview\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-azure-edition-core-preview\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-2022-azure-edition-preview\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-azure-edition-preview\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-2022-azure-edition-preview-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-azure-edition-preview-core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-2022-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9992,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29981" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "8b2125f2-0620-4630-9580-2cd8ee43fad5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5d0b85f0-0df3-4b79-9736-d669fa2a855f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2cb713a7-8283-4385-869e-280344e17cfe" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215241Z:2cb713a7-8283-4385-869e-280344e17cfe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0C0D8750E82B483EA9D65E97DE0C4F56 Ref B: MNZ221060608031 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "3297" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-2022\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-2022-azure-edition-core-preview\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-azure-edition-core-preview\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-2022-azure-edition-preview\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-azure-edition-preview\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-2022-azure-edition-preview-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-azure-edition-preview-core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-2022-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0ae5ed8b-d50d-44d3-af4a-230b93250b41" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "76e96222-730a-4cf2-b736-db9a67ed099d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/372f496b-c5f0-41d8-b46d-df6938512500" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dd8098c9-79f9-4523-bd59-b3c7f1d39938" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214954Z:dd8098c9-79f9-4523-bd59-b3c7f1d39938" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 10DAA22BB41C4FA68E7FEFE92A3B8103 Ref B: MNZ221060609017 Ref C: 2025-06-02T21:49:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:53 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15912,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43891" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "781f3c44-ea24-46d6-8edc-cb6578c7d581" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0df111ac-19b0-41d0-af07-141346f6a0cd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "26ca3598-9602-4d62-aeda-66b87d467c70" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215241Z:26ca3598-9602-4d62-aeda-66b87d467c70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9CDA05D26532436D89CB7FB63EB3AF88 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:40 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022-azure-edition-core-preview/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyLWF6dXJlLWVkaXRpb24tY29yZS1wcmV2aWV3L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fd8afb76-5d1d-401d-9053-2733e30f7943" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43991" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b43e7c2d-0cf3-4e98-ad50-742ae0eca6ad" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9be2fa22-ad80-4f31-a9d6-b2c0ba113202" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c9474234-59bd-4fc1-b4c8-84a01eb267ea" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214954Z:c9474234-59bd-4fc1-b4c8-84a01eb267ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 365CEC867B6F4E84BF23D4E517ADAC5E Ref B: MNZ221060618021 Ref C: 2025-06-02T21:49:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:53 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022-azure-edition-core-preview/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyLWF6dXJlLWVkaXRpb24tY29yZS1wcmV2aWV3L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15911,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43890" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "66d9f967-52d1-4cc4-853e-3de6a1a1725d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/267a592a-7847-4b47-a29d-66a3cd60c628" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a311e21e-afd3-4e92-8164-8e1d2bddd84e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215241Z:a311e21e-afd3-4e92-8164-8e1d2bddd84e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 97039489F3134627B155931026BB1AB3 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:40 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022-azure-edition-preview/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyLWF6dXJlLWVkaXRpb24tcHJldmlldy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c3889bfb-4a52-4cbe-bf46-4d6cb64873cf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43990" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c850901f-5689-4bcd-b8d9-4e483330a234" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/92873da5-36c5-4afb-aaa3-a4570ce56c35" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5a6222d9-8590-468c-8541-d96dee263b23" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214954Z:5a6222d9-8590-468c-8541-d96dee263b23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C95B8DD4456E47D59A70E2CDF19E7847 Ref B: MNZ221060609021 Ref C: 2025-06-02T21:49:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:53 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022-azure-edition-preview/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyLWF6dXJlLWVkaXRpb24tcHJldmlldy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15910,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43889" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "86f39585-9190-4d17-a691-73305599424f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/613c30ea-efd6-4818-9d79-1edfdc1b1f1b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ad5d6373-4b55-417c-949a-21eb77a52e47" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215241Z:ad5d6373-4b55-417c-949a-21eb77a52e47" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 61DA73F46F0D4F0CAF743425843B5D7B Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:40 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022-azure-edition-preview-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyLWF6dXJlLWVkaXRpb24tcHJldmlldy1jb3JlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "87d913bf-df3c-4606-a088-6f8f63b06612" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "79492782-0da8-4089-a67c-a91263724f16" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fbd33631-7d52-409c-8876-6fb5e7425b04" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2ea6230c-4c1b-48f3-add5-4829c49edc8a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214954Z:2ea6230c-4c1b-48f3-add5-4829c49edc8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EED00757563B479D8FBDDB12283C0CCA Ref B: MNZ221060619021 Ref C: 2025-06-02T21:49:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:54 GMT" + ], + "Content-Length": [ + "372" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.11.2105262137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-azure-edition-preview-core/Versions/20348.11.2105262137\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022-azure-edition-preview-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyLWF6dXJlLWVkaXRpb24tcHJldmlldy1jb3JlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15909,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43888" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cb0c24ef-b9ff-4997-9620-23cd0ef482dd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/75a8f6ae-e25c-4945-b4d2-6291adf8de24" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0aa50910-c40f-4b63-992c-a4b801dc4615" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215241Z:0aa50910-c40f-4b63-992c-a4b801dc4615" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DCEDC036DD3647548130C86F617DDF33 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:40 GMT" + ], + "Content-Length": [ + "372" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.11.2105262137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-azure-edition-preview-core/Versions/20348.11.2105262137\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022-azure-edition-preview-core/versions/20348.11.2105262137?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyLWF6dXJlLWVkaXRpb24tcHJldmlldy1jb3JlL3ZlcnNpb25zLzIwMzQ4LjExLjIxMDUyNjIxMzc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7afe8434-c7e4-4fb1-98d9-f43b2913f0a4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73996" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ac4e3789-f94c-4878-a333-0aeae1f8b971" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/97f8c9a6-856e-4e53-b7d3-3568968416ba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f97c35b4-d770-46a5-88df-3f797591801c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214954Z:f97c35b4-d770-46a5-88df-3f797591801c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F7CE3691B81F4B17836FB2BFA4056D1C Ref B: MNZ221060610031 Ref C: 2025-06-02T21:49:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:54 GMT" + ], + "Content-Length": [ + "1141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-2022-azure-edition-preview-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.11.2105262137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-azure-edition-preview-core/Versions/20348.11.2105262137\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022-azure-edition-preview-core/versions/20348.11.2105262137?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyLWF6dXJlLWVkaXRpb24tcHJldmlldy1jb3JlL3ZlcnNpb25zLzIwMzQ4LjExLjIxMDUyNjIxMzc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12100,Microsoft.Compute/GetVMImageFromLocation30Min;73068" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fa6c3c1b-712a-4f70-a598-ab6f94c7d5c3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b50ebabd-ff46-4364-845e-5a57c87b0eb5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f464ca1f-bee5-49f9-af3b-1f0003b49af8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215241Z:f464ca1f-bee5-49f9-af3b-1f0003b49af8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 58844E5749E347E398C37E762320082A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:40 GMT" + ], + "Content-Length": [ + "1141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-2022-azure-edition-preview-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.11.2105262137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-azure-edition-preview-core/Versions/20348.11.2105262137\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6b13d349-21fe-468d-95f6-f7b800db7dc5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "662db207-556c-427a-a5e1-49a02dfd913c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f0b2324d-b9cd-4316-aeaa-37586047d364" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5d6d84bc-9e60-4cee-8e57-aca3fd077fab" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214954Z:5d6d84bc-9e60-4cee-8e57-aca3fd077fab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B7731750E77C4BA4907C3E04FFFFB611 Ref B: MNZ221060619045 Ref C: 2025-06-02T21:49:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:54 GMT" + ], + "Content-Length": [ + "342" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.587.220303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-g2/Versions/20348.587.220303\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15908,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43887" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2c332e45-a819-4c3c-bff0-03007f073cdd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5621322c-366e-46c2-b2b2-4219d53aee29" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4ad2601a-55fc-41f8-9703-4369dbd589a7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215241Z:4ad2601a-55fc-41f8-9703-4369dbd589a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 08A609157E4F4494BBFE4AB1E01BE697 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "342" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.587.220303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-g2/Versions/20348.587.220303\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022-g2/versions/20348.587.220303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyLWcyL3ZlcnNpb25zLzIwMzQ4LjU4Ny4yMjAzMDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3c6eda0a-9296-46a4-9f3d-e6eaea86afaf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73995" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "33f173dc-db62-4791-95d4-c48760316649" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7de5c256-5dd2-44d7-9901-061cc7c5863f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "780dc1f4-26ac-435c-a602-aed1fcd7d73a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214954Z:780dc1f4-26ac-435c-a602-aed1fcd7d73a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FDD8E41A39304DABA0956C8405695737 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:54 GMT" + ], + "Content-Length": [ + "1097" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-2022-g2\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.587.220303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-g2/Versions/20348.587.220303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-2022-g2/versions/20348.587.220303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci0yMDIyLWcyL3ZlcnNpb25zLzIwMzQ4LjU4Ny4yMjAzMDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12099,Microsoft.Compute/GetVMImageFromLocation30Min;73067" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c9b4a339-099c-4fb3-b394-fe73bd526d1f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a7cd4e28-94b6-434a-a656-835b777e97d6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c2555e06-2450-4294-baee-cf8dd837f578" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215241Z:c2555e06-2450-4294-baee-cf8dd837f578" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A02A78D0841844428171E7D553B24226 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:40 GMT" + ], + "Content-Length": [ + "1097" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-2022-g2\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.587.220303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-2022-g2/Versions/20348.587.220303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b4d94e7b-c582-4ba1-bc0c-02e98078c605" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43987" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d84f5843-624d-4e82-b54a-11664fef56b7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7242d59f-3557-4b08-81c5-ee997a8a10cd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d34a6063-79d5-486c-8fbb-e4cea02d4cd6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214954Z:d34a6063-79d5-486c-8fbb-e4cea02d4cd6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FADA51D6C1D54587B6300935C956F553 Ref B: MNZ221060608025 Ref C: 2025-06-02T21:49:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:54 GMT" + ], + "Content-Length": [ + "2121" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26334.5000.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26334.5000.241204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26360.5000.250212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26360.5000.250212\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26376.5000.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26376.5000.250312\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26384.5001.250326\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26384.5001.250326\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26392.5000.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26392.5000.250410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26404.5000.250430\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26404.5000.250430\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15907,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43886" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "77148eff-085a-4535-be5d-5e0a5b4bf234" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fafab432-5216-46cc-b116-f4937ed991c1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "46497fed-8f60-4a0e-afd3-d55b482a303d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215241Z:46497fed-8f60-4a0e-afd3-d55b482a303d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9AAEB501F92E4E1F87E1E26235C8BA73 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "2121" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26334.5000.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26334.5000.241204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26360.5000.250212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26360.5000.250212\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26376.5000.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26376.5000.250312\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26384.5001.250326\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26384.5001.250326\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26392.5000.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26392.5000.250410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26404.5000.250430\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26404.5000.250430\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions/26334.5000.241204?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zLzI2MzM0LjUwMDAuMjQxMjA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7f60d09d-a674-4638-a540-67363b22bd3f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73994" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4249771f-1015-40ed-bcc2-197cbd6ad483" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/11b79f6f-18f3-4a10-8ce7-59329aacfe0a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "20c2e86e-9176-4508-9861-8ff2680db00d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214955Z:20c2e86e-9176-4508-9861-8ff2680db00d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 52AAE4663F9E4378B2FC09CBCEDBB063 Ref B: MNZ221060610033 Ref C: 2025-06-02T21:49:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:54 GMT" + ], + "Content-Length": [ + "1533" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-16T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-10T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26334.5000.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26334.5000.241204\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions/26334.5000.241204?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zLzI2MzM0LjUwMDAuMjQxMjA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12098,Microsoft.Compute/GetVMImageFromLocation30Min;73066" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "db6da40f-443f-44e4-ae51-5f0cfbba1412" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e66a944a-4352-4633-abb7-de3e6d859be4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c0394546-7faa-4d60-a7e6-8514045c3898" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215241Z:c0394546-7faa-4d60-a7e6-8514045c3898" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0992F4FF6ED24E4282478871F8377EDE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "1533" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-16T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-10T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26334.5000.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26334.5000.241204\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions/26360.5000.250212?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zLzI2MzYwLjUwMDAuMjUwMjEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "59a01d28-773b-4aef-bc49-26fbe3e51822" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73993" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f6e046c0-fce1-4eed-b97e-21b912c9db19" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2e07ea09-1960-47e5-a338-f0eccdf2f9a9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e77accf2-c6c8-4f60-ac7a-3972d845acb6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214955Z:e77accf2-c6c8-4f60-ac7a-3972d845acb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 362BA5242B7645CFAB5732E7E1F511A5 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:49:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:54 GMT" + ], + "Content-Length": [ + "1533" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-30T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-18T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26360.5000.250212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26360.5000.250212\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions/26360.5000.250212?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zLzI2MzYwLjUwMDAuMjUwMjEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12097,Microsoft.Compute/GetVMImageFromLocation30Min;73065" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7c003888-0100-4ade-a1cb-ca208d9ca85f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fe0808df-d262-4adc-82c3-a9a99fc0216a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "17cd50df-831f-4600-b4fc-c0bdf6277881" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215241Z:17cd50df-831f-4600-b4fc-c0bdf6277881" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 37929DB0B71A47DEB4C72508BEE5E89A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "1533" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-30T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-18T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26360.5000.250212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26360.5000.250212\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions/26376.5000.250312?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zLzI2Mzc2LjUwMDAuMjUwMzEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "09cec1fd-584d-4419-9dd5-f837164f3af7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73992" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3f1d699a-1d05-48f5-af49-bfc6d5753521" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/af78ffad-aa82-47ae-9473-e230425573d5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "48f81c49-a198-4014-a609-6693c52903a9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214955Z:48f81c49-a198-4014-a609-6693c52903a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CEFC4B8731B049F38C5BAA30DBDC7483 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:49:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:55 GMT" + ], + "Content-Length": [ + "1533" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-14T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-17T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26376.5000.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26376.5000.250312\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions/26376.5000.250312?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zLzI2Mzc2LjUwMDAuMjUwMzEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12096,Microsoft.Compute/GetVMImageFromLocation30Min;73064" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e4e500e6-07c9-41de-ac7e-eec4fa0b0d33" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/11472d86-2319-44f6-9bab-4f71acfff762" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "23a0baa5-b1d2-4925-81c2-43f90fc8221f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215242Z:23a0baa5-b1d2-4925-81c2-43f90fc8221f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 88C58A0C313646E7A7F3439E513BDB53 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "1533" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-14T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-17T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26376.5000.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26376.5000.250312\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions/26384.5001.250326?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zLzI2Mzg0LjUwMDEuMjUwMzI2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "293fddd5-2f91-4a73-9bc2-de8913325a21" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73991" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "03658ba8-18b0-4de7-9614-1a93f5e9fe90" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1e529bf6-4e3c-4987-9e7c-0d614388498b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "97dde393-0159-4c7f-acab-274508b17641" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214955Z:97dde393-0159-4c7f-acab-274508b17641" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E3495EACDB9942ADB0C7EB488F140E44 Ref B: MNZ221060610027 Ref C: 2025-06-02T21:49:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:54 GMT" + ], + "Content-Length": [ + "1533" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-04T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26384.5001.250326\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26384.5001.250326\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions/26384.5001.250326?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zLzI2Mzg0LjUwMDEuMjUwMzI2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12095,Microsoft.Compute/GetVMImageFromLocation30Min;73063" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "66513252-e1e7-4f72-9843-e578d1b4e505" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7313f3b5-5cdd-4352-b7fc-3744b8753131" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "16981ca2-cd84-421f-b8d8-e72746f8803c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215242Z:16981ca2-cd84-421f-b8d8-e72746f8803c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 030EFEA6DA704EE5B6C0776650F078E3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "1533" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-04T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26384.5001.250326\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26384.5001.250326\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions/26392.5000.250410?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zLzI2MzkyLjUwMDAuMjUwNDEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f79c1622-027e-4e84-b4d4-d215de6c60ce" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73990" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3201aec8-7a05-420c-b761-5ad0939bdafd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b84a5eab-124a-40bf-b479-f89ae8cbe950" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "aaabb46c-65b6-4c5e-a6a2-3a2c2acf9f7c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214955Z:aaabb46c-65b6-4c5e-a6a2-3a2c2acf9f7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6FC95D6254BB4374AE1B2106DBB79587 Ref B: MNZ221060608033 Ref C: 2025-06-02T21:49:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:54 GMT" + ], + "Content-Length": [ + "1452" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-14T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26392.5000.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26392.5000.250410\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions/26392.5000.250410?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zLzI2MzkyLjUwMDAuMjUwNDEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12094,Microsoft.Compute/GetVMImageFromLocation30Min;73062" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "90b4c79d-cadb-4b42-a63a-c44f6d1d8d64" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1bd07470-9eb5-4c13-aa16-b369ed4a533c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5d60417c-004b-407c-a2f3-5874f5e610f1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215242Z:5d60417c-004b-407c-a2f3-5874f5e610f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B3C10CEAC71847DAAF74CDCCD7D79A71 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "1452" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-14T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26392.5000.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26392.5000.250410\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions/26404.5000.250430?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zLzI2NDA0LjUwMDAuMjUwNDMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a6a9d45f-eece-49ab-802c-13219aa5f348" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73989" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2a5afcd6-72fe-4947-87dc-fbda91609270" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e58d58fa-3763-4e6b-92c1-5aecbc82ec75" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d9320b32-82d1-428d-8aff-35a1a071847f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214955Z:d9320b32-82d1-428d-8aff-35a1a071847f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 669EC8C8D2B74260B9B05062237DB05E Ref B: MNZ221060619017 Ref C: 2025-06-02T21:49:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:55 GMT" + ], + "Content-Length": [ + "1452" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-05T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26404.5000.250430\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26404.5000.250430\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition/versions/26404.5000.250430?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uL3ZlcnNpb25zLzI2NDA0LjUwMDAuMjUwNDMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12093,Microsoft.Compute/GetVMImageFromLocation30Min;73061" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0e9b536a-f9ea-41c0-a31c-2a6fb7bdd83d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ee1ecee0-05c8-4e83-ad13-c40352274007" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2057601f-b418-4440-b746-3f59b3e8d17b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215242Z:2057601f-b418-4440-b746-3f59b3e8d17b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 83FE20BD04A045CC90161EAB00FF2F12 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "1452" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-05T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26404.5000.250430\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition/Versions/26404.5000.250430\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b32bcaf6-57b5-44bf-b49c-4fb935e27d04" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43986" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5ed86e19-4820-41e2-912a-3f7f3c79fdf8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6d0c8545-9fa0-4633-8d77-c59713ab267a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8419f98f-e7e9-4a97-b847-a757e76719d8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214955Z:8419f98f-e7e9-4a97-b847-a757e76719d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1ED975FE6A1B49919D750172913249E3 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:49:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:55 GMT" + ], + "Content-Length": [ + "2151" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26334.5000.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26334.5000.241204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26360.5000.250212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26360.5000.250212\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26376.5000.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26376.5000.250312\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26384.5001.250326\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26384.5001.250326\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26392.5000.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26392.5000.250410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26404.5000.250430\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26404.5000.250430\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15906,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43885" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f63771ff-c007-43a7-9a4f-baf100d7aaa7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9238bb48-65f6-4744-a31e-8f84d931bd9d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "8fca3578-aaba-468c-a566-ff747244f642" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215242Z:8fca3578-aaba-468c-a566-ff747244f642" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC3B44D4BBCE42E5B2C7230B69B9F158 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "2151" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26334.5000.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26334.5000.241204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26360.5000.250212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26360.5000.250212\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26376.5000.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26376.5000.250312\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26384.5001.250326\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26384.5001.250326\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26392.5000.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26392.5000.250410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26404.5000.250430\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26404.5000.250430\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions/26334.5000.241204?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnMvMjYzMzQuNTAwMC4yNDEyMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e654a65f-a263-473e-b1b9-2ad567ad9735" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73988" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "10d82f71-7dfb-4cfd-976b-41b20d3aa111" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/95cea2f3-fcb5-46c0-8ab3-4c18e56d1a2c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "1b787bef-405e-411a-bf80-e5546dd091b8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214956Z:1b787bef-405e-411a-bf80-e5546dd091b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BCDF13622A6646778D6337BE280DECB0 Ref B: MNZ221060609025 Ref C: 2025-06-02T21:49:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:55 GMT" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-16T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-10T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26334.5000.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26334.5000.241204\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions/26334.5000.241204?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnMvMjYzMzQuNTAwMC4yNDEyMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12092,Microsoft.Compute/GetVMImageFromLocation30Min;73060" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "91022dfc-54ca-4110-8e49-c93c9e7dbe0a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/292279e1-868c-4d84-b90b-82edf183a15f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "66523f8c-31e8-43cf-a954-cbfd19e318d0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215242Z:66523f8c-31e8-43cf-a954-cbfd19e318d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BE6471FBC5FA4B92937E7113AF62E029 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-16T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-10T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26334.5000.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26334.5000.241204\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions/26360.5000.250212?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnMvMjYzNjAuNTAwMC4yNTAyMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b57119eb-d9e4-45ff-946b-9dd4a6f5b3cc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73987" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "52da6caf-1e99-43df-8e52-9a71f98d9425" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8fd5c833-70c6-462f-a336-7f37093dff88" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "460ebe32-856a-44bb-a25d-347d093cc38b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214956Z:460ebe32-856a-44bb-a25d-347d093cc38b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 96B8E8E72DFF4FA5A5F0F424C89C74A7 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:49:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:55 GMT" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-30T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-18T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26360.5000.250212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26360.5000.250212\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions/26360.5000.250212?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnMvMjYzNjAuNTAwMC4yNTAyMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12091,Microsoft.Compute/GetVMImageFromLocation30Min;73059" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8bf8f2f6-bd39-4c78-961c-6259a5c833e8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/88b6e89b-1fdb-45af-ba15-c828991c7117" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "154f46a1-856f-43c2-9afc-4cb9c2d15374" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215242Z:154f46a1-856f-43c2-9afc-4cb9c2d15374" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BB7D65E7E01147F18E6FADAB2F388674 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-30T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-18T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26360.5000.250212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26360.5000.250212\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions/26376.5000.250312?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnMvMjYzNzYuNTAwMC4yNTAzMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "23c4fc0c-7ec7-4c3c-bb67-75b61f99e013" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12989,Microsoft.Compute/GetVMImageFromLocation30Min;73986" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "431061b0-50db-464b-a670-83716cddfec7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e1914a76-3ee8-4cd1-aff2-75838395e47f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f021b819-6bff-4e4f-847e-37d6335038dc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214956Z:f021b819-6bff-4e4f-847e-37d6335038dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 39A37863835540569B373D66A1A44131 Ref B: MNZ221060619029 Ref C: 2025-06-02T21:49:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:56 GMT" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-14T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-17T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26376.5000.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26376.5000.250312\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions/26376.5000.250312?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnMvMjYzNzYuNTAwMC4yNTAzMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12090,Microsoft.Compute/GetVMImageFromLocation30Min;73058" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c9f00410-289d-4ce7-90d0-fff75b35ab55" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/06dd1a34-00b4-4c12-8c8e-3fbfa32a6aa4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "076577d5-68d2-4d1c-8955-d0cfd334cd45" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215242Z:076577d5-68d2-4d1c-8955-d0cfd334cd45" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B739269B77B4271B42D53C8521F8B2B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-14T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-17T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26376.5000.250312\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26376.5000.250312\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions/26384.5001.250326?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnMvMjYzODQuNTAwMS4yNTAzMjY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7ad093e2-4f0e-4892-bc35-45b39efa0057" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12988,Microsoft.Compute/GetVMImageFromLocation30Min;73985" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "83818021-a42d-40f9-baa1-3cd27381b5ef" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9c7cbb1b-45d6-454e-bf1c-38a4e789795b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2655297b-d0bd-4c00-be31-e867eb2c8580" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214956Z:2655297b-d0bd-4c00-be31-e867eb2c8580" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0CBEE09531FA40A5B54148F8D2A7E488 Ref B: MNZ221060608039 Ref C: 2025-06-02T21:49:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:56 GMT" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-04T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26384.5001.250326\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26384.5001.250326\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions/26384.5001.250326?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnMvMjYzODQuNTAwMS4yNTAzMjY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12089,Microsoft.Compute/GetVMImageFromLocation30Min;73057" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4e53a8fb-0dd4-4a87-a2e4-96aa043ff769" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/02c79474-af9a-4cdd-89b0-8e8aec3aa984" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "716781dd-99af-497a-a89c-4806a14497be" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215242Z:716781dd-99af-497a-a89c-4806a14497be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FF8BF678D9E241DFAE6E9701BC277B7C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:41 GMT" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-04T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26384.5001.250326\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26384.5001.250326\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions/26392.5000.250410?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnMvMjYzOTIuNTAwMC4yNTA0MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4cad7930-0bb5-4edd-840e-59c317e2e5a8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12987,Microsoft.Compute/GetVMImageFromLocation30Min;73984" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "01df4090-d0ed-4acf-b7c4-cd3f875b6270" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/68671859-a9a0-4ce7-a66a-6ac4bc158966" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d4eb59c9-d260-4565-850c-f7b358c8ec47" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214956Z:d4eb59c9-d260-4565-850c-f7b358c8ec47" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C5EFFE58B5FC4BF5A41C1C4B0EB30D22 Ref B: MNZ221060609037 Ref C: 2025-06-02T21:49:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:56 GMT" + ], + "Content-Length": [ + "1462" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-14T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26392.5000.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26392.5000.250410\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions/26392.5000.250410?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnMvMjYzOTIuNTAwMC4yNTA0MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12088,Microsoft.Compute/GetVMImageFromLocation30Min;73056" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7a6297b9-1bac-4a15-8c88-78985d1bfff9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7c6f76f9-9c45-4255-954b-8c0a8fce3cb6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "453007fd-c495-489f-b3c1-f97969f72bcd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215242Z:453007fd-c495-489f-b3c1-f97969f72bcd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2F9306B8216A4003B69799A8047B0E5D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:42 GMT" + ], + "Content-Length": [ + "1462" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-14T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26392.5000.250410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26392.5000.250410\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions/26404.5000.250430?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnMvMjY0MDQuNTAwMC4yNTA0MzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b1876971-bc3f-4cac-b78f-b152679e8190" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12986,Microsoft.Compute/GetVMImageFromLocation30Min;73983" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "58e2c346-5db1-4757-9a5b-b8cf6c22e17b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/35a61a92-eb78-41d7-9444-6291c0231c2c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "678d0de2-a506-41fa-8ac8-372bc89ca33c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214956Z:678d0de2-a506-41fa-8ac8-372bc89ca33c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 308BFC8253594EAC98ECFD0C038FB4D3 Ref B: MNZ221060618039 Ref C: 2025-06-02T21:49:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:56 GMT" + ], + "Content-Length": [ + "1462" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-05T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26404.5000.250430\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26404.5000.250430\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/microsoftserveroperatingsystems-previews/skus/windows-server-vnext-azure-edition-core/versions/26404.5000.250430?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pY3Jvc29mdHNlcnZlcm9wZXJhdGluZ3N5c3RlbXMtcHJldmlld3Mvc2t1cy93aW5kb3dzLXNlcnZlci12bmV4dC1henVyZS1lZGl0aW9uLWNvcmUvdmVyc2lvbnMvMjY0MDQuNTAwMC4yNTA0MzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12087,Microsoft.Compute/GetVMImageFromLocation30Min;73055" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d6bcb768-796b-4b0d-a399-ae54b1df0d17" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6b35f2b1-546e-4e3e-91d7-0c7985c8d0b2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "6a27b97c-f8eb-439f-902d-59b7c6231a98" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215242Z:6a27b97c-f8eb-439f-902d-59b7c6231a98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9DA68D30D2FB41B5AC68F836BB455A2C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:42 GMT" + ], + "Content-Length": [ + "1462" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"name\": \"windows-server-vnext-azure-edition-core\",\r\n \"product\": \"microsoftserveroperatingsystems-previews\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-05T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26404.5000.250430\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews/Skus/windows-server-vnext-azure-edition-core/Versions/26404.5000.250430\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/servertesting/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NlcnZlcnRlc3Rpbmcvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ce7288cc-b71a-4465-a4e8-8694d873fb4b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9997,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29991" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "5aca8634-e4c5-49d3-b306-005638c608f7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/70f16e99-9573-47b4-b84a-d3946432b78c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5147d72f-05f7-4987-8cb7-9ce96b480178" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214957Z:5147d72f-05f7-4987-8cb7-9ce96b480178" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 32CCBB1815974702BB85D20D5EBEDD97 Ref B: MNZ221060619011 Ref C: 2025-06-02T21:49:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:56 GMT" + ], + "Content-Length": [ + "406" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/servertesting/Skus/2016-datacenter\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/servertesting/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NlcnZlcnRlc3Rpbmcvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9991,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29980" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "37bd5e8e-9be9-47e2-acde-80935ebeb82c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/445bd418-8aa8-489b-9a4b-97f7ecea8ff9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a21321cb-33c6-48be-89a4-2746888b69fd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215242Z:a21321cb-33c6-48be-89a4-2746888b69fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3F15AE4612A64F3A928F42630439E755 Ref B: MNZ221060608031 Ref C: 2025-06-02T21:52:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:42 GMT" + ], + "Content-Length": [ + "406" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/servertesting/Skus/2016-datacenter\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/servertesting/skus/2016-datacenter/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NlcnZlcnRlc3Rpbmcvc2t1cy8yMDE2LWRhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "21103cb7-e0dd-4c04-9efd-93f117f6026b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3f368921-dcf0-41f5-8edf-4da74477eb4e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d5ef6824-b47a-400c-93e1-6f76f0ea9157" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c8e0cb47-34d4-4255-a55a-d92634590131" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214957Z:c8e0cb47-34d4-4255-a55a-d92634590131" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 85CA5A96CEE541B7BD390CE08B2BB898 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:49:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:56 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/servertesting/skus/2016-datacenter/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NlcnZlcnRlc3Rpbmcvc2t1cy8yMDE2LWRhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15905,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43884" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "91940174-baae-47ce-bd6c-05ad0e618ece" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b14fd6eb-722e-4e52-bf04-f277042ebd14" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "98f9265c-43b1-4760-b870-84a7e815d715" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215243Z:98f9265c-43b1-4760-b870-84a7e815d715" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EB243A7C198748F8870412D39C4A3841 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:42 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e5115aa8-c5a9-413f-bfa7-5e87b82849c3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9996,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29990" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "b89ec830-e3e9-4303-bfd7-3b24a1c5461d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0d2c1e0a-50e0-42da-b2c8-d9265773c7be" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f061eebf-75d3-4df1-ba89-08778b5a4560" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214957Z:f061eebf-75d3-4df1-ba89-08778b5a4560" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EF35E8CDC4474ACFB7B5E696C3193E45 Ref B: MNZ221060608049 Ref C: 2025-06-02T21:49:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:56 GMT" + ], + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-cvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2019-datacenter-cvm\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-cvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2022-datacenter-cvm\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9990,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29979" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "363bfb2d-6ada-4869-aeb5-d05ec78874a1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bc3581a1-ce6f-4ab4-afdf-cdce0af8c86e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "68169d6e-88b6-4b13-9a8c-f243b76f2c0a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215243Z:68169d6e-88b6-4b13-9a8c-f243b76f2c0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3CB05B09202A45ADA908B199B647CA3F Ref B: MNZ221060608031 Ref C: 2025-06-02T21:52:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:42 GMT" + ], + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-cvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2019-datacenter-cvm\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-cvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2022-datacenter-cvm\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus/2019-datacenter-cvm/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXMvMjAxOS1kYXRhY2VudGVyLWN2bS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ef930d10-d50c-4a8e-abc5-987e40de5607" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43984" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d20ea21e-1374-4b12-bfe0-0a3d0b16d097" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8a811d62-2543-4217-8ec5-3154ea0038e7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "98903bc0-ff55-4d72-9c7d-08c85cf1ae54" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214957Z:98903bc0-ff55-4d72-9c7d-08c85cf1ae54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F3102D28739446498F3563868622F87E Ref B: MNZ221060610019 Ref C: 2025-06-02T21:49:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:56 GMT" + ], + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2183.2109130127\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2019-datacenter-cvm/Versions/17763.2183.2109130127\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2452.220107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2019-datacenter-cvm/Versions/17763.2452.220107\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus/2019-datacenter-cvm/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXMvMjAxOS1kYXRhY2VudGVyLWN2bS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15904,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43883" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e7e79d33-761b-4df4-98fd-3430d4abcfda" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d0ef4f82-75db-4978-8889-bf5526b136c0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "41a7b64e-a357-4dd2-abe9-fe32b73b7cf1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215244Z:41a7b64e-a357-4dd2-abe9-fe32b73b7cf1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F9E1C7F9AEE24BE0BC0324604DE927C9 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:43 GMT" + ], + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2183.2109130127\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2019-datacenter-cvm/Versions/17763.2183.2109130127\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2452.220107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2019-datacenter-cvm/Versions/17763.2452.220107\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus/2019-datacenter-cvm/versions/17763.2183.2109130127?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXMvMjAxOS1kYXRhY2VudGVyLWN2bS92ZXJzaW9ucy8xNzc2My4yMTgzLjIxMDkxMzAxMjc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "da3e4c96-8fed-42c9-b0e1-104752730188" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12985,Microsoft.Compute/GetVMImageFromLocation30Min;73982" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c5fb12f5-58d5-4389-800a-7af7e8cccf6f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e6750185-ab5d-4528-a051-35bc80fd9238" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c9a69e5c-23ae-421d-954e-f31030b700f1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214957Z:c9a69e5c-23ae-421d-954e-f31030b700f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4920C5D9680746D18A454CEA3A65C475 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:49:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:57 GMT" + ], + "Content-Length": [ + "921" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2183.2109130127\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2019-datacenter-cvm/Versions/17763.2183.2109130127\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus/2019-datacenter-cvm/versions/17763.2183.2109130127?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXMvMjAxOS1kYXRhY2VudGVyLWN2bS92ZXJzaW9ucy8xNzc2My4yMTgzLjIxMDkxMzAxMjc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12086,Microsoft.Compute/GetVMImageFromLocation30Min;73054" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "313d742b-d144-460b-b167-c90dc8f85a31" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ddc09007-f728-496e-ab6a-7b01d23550a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8ab26cf7-d44e-4dbf-b227-8cfd309781a9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215244Z:8ab26cf7-d44e-4dbf-b227-8cfd309781a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2E6BA73BF74441368D6530C842E3ABDA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:43 GMT" + ], + "Content-Length": [ + "921" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2183.2109130127\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2019-datacenter-cvm/Versions/17763.2183.2109130127\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus/2019-datacenter-cvm/versions/17763.2452.220107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXMvMjAxOS1kYXRhY2VudGVyLWN2bS92ZXJzaW9ucy8xNzc2My4yNDUyLjIyMDEwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eadd8fe9-0292-4c9a-bcea-2a99e3cdde74" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12984,Microsoft.Compute/GetVMImageFromLocation30Min;73981" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "961c391f-a0df-445d-806e-161dba377395" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8ee7b99e-3c5f-419f-a19c-52ad62b3b910" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ee92798d-0913-4790-b029-d725c30c728d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214957Z:ee92798d-0913-4790-b029-d725c30c728d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8D893BE557544973BE986FBD136190FC Ref B: MNZ221060619053 Ref C: 2025-06-02T21:49:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:56 GMT" + ], + "Content-Length": [ + "913" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2452.220107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2019-datacenter-cvm/Versions/17763.2452.220107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus/2019-datacenter-cvm/versions/17763.2452.220107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXMvMjAxOS1kYXRhY2VudGVyLWN2bS92ZXJzaW9ucy8xNzc2My4yNDUyLjIyMDEwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12085,Microsoft.Compute/GetVMImageFromLocation30Min;73053" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6e129004-8bd4-40de-8aaa-722776699eee" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1e45fe21-4ccf-4672-8d43-a994db14408e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "c05db9e4-4f4c-4096-adb9-7c2470270201" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215244Z:c05db9e4-4f4c-4096-adb9-7c2470270201" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 198C412C22374DAAABEEFB72C9BD8186 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:43 GMT" + ], + "Content-Length": [ + "913" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.2452.220107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2019-datacenter-cvm/Versions/17763.2452.220107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus/2022-datacenter-cvm/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXMvMjAyMi1kYXRhY2VudGVyLWN2bS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7fe37ed4-2e96-4522-9cc2-e5cf5c016995" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43983" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c387d3cf-78c5-4038-9d5a-6a2b0e661659" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/49aed0be-8e7d-4601-a93d-8f71a80548c7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ac4a1664-3b36-4e59-9cda-9e248b90e94d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214957Z:ac4a1664-3b36-4e59-9cda-9e248b90e94d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6E552B241B9840D4B368AF46A9D15129 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:49:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:57 GMT" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.230.2109130355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2022-datacenter-cvm/Versions/20348.230.2109130355\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.469.220106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2022-datacenter-cvm/Versions/20348.469.220106\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus/2022-datacenter-cvm/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXMvMjAyMi1kYXRhY2VudGVyLWN2bS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15903,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43882" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "65a8a018-7129-4e70-86dd-da2a35ddcf7a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/193e410f-14db-430b-b5b9-0b8db846f565" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "015efd7f-7ce6-4a3f-862b-42f0ee1561e3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215244Z:015efd7f-7ce6-4a3f-862b-42f0ee1561e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9BC2094707D543EFB16134211D3292D5 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:43 GMT" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.230.2109130355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2022-datacenter-cvm/Versions/20348.230.2109130355\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.469.220106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2022-datacenter-cvm/Versions/20348.469.220106\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus/2022-datacenter-cvm/versions/20348.230.2109130355?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXMvMjAyMi1kYXRhY2VudGVyLWN2bS92ZXJzaW9ucy8yMDM0OC4yMzAuMjEwOTEzMDM1NT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6109b545-a678-42a1-b9e0-abb8d045385f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12983,Microsoft.Compute/GetVMImageFromLocation30Min;73980" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b3a0ade9-d488-419c-b85f-e52c72599efb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ca7da8a2-ef63-4246-b121-215fb12f5d81" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dd60d9b2-da37-482f-bb28-bd11b02cfcbd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214957Z:dd60d9b2-da37-482f-bb28-bd11b02cfcbd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E1CB05D98CCF47F799100AA0E24B3608 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:49:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:57 GMT" + ], + "Content-Length": [ + "919" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.230.2109130355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2022-datacenter-cvm/Versions/20348.230.2109130355\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus/2022-datacenter-cvm/versions/20348.230.2109130355?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXMvMjAyMi1kYXRhY2VudGVyLWN2bS92ZXJzaW9ucy8yMDM0OC4yMzAuMjEwOTEzMDM1NT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12084,Microsoft.Compute/GetVMImageFromLocation30Min;73052" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8d42ac56-96c0-481e-a092-2f179caeb759" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2e47bc19-d188-4825-bd84-387773d3b407" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bde8a8d7-48d2-4f2d-927d-15479528a59b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215244Z:bde8a8d7-48d2-4f2d-927d-15479528a59b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 152DA1EBC714423D8DAAB405D250FD41 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:43 GMT" + ], + "Content-Length": [ + "919" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.230.2109130355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2022-datacenter-cvm/Versions/20348.230.2109130355\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus/2022-datacenter-cvm/versions/20348.469.220106?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXMvMjAyMi1kYXRhY2VudGVyLWN2bS92ZXJzaW9ucy8yMDM0OC40NjkuMjIwMTA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "723a23ab-c17b-4e6f-8dbf-565a0a5e333a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12982,Microsoft.Compute/GetVMImageFromLocation30Min;73979" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0f4e9ea4-2bc0-4e01-b63d-69998ed46af1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/98493438-ae89-44c2-97e9-c8286cfeab01" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "772c3476-fd8a-48a1-acea-0de893ef23e6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214957Z:772c3476-fd8a-48a1-acea-0de893ef23e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 384CCB728B42438A8199FC707F5B8A7C Ref B: MNZ221060610019 Ref C: 2025-06-02T21:49:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:57 GMT" + ], + "Content-Length": [ + "911" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.469.220106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2022-datacenter-cvm/Versions/20348.469.220106\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windows-cvm/skus/2022-datacenter-cvm/versions/20348.469.220106?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3MtY3ZtL3NrdXMvMjAyMi1kYXRhY2VudGVyLWN2bS92ZXJzaW9ucy8yMDM0OC40NjkuMjIwMTA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12083,Microsoft.Compute/GetVMImageFromLocation30Min;73051" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "10aea6f2-2c78-46c3-a52b-d22575e22307" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/206ac2c2-8e64-4f79-9e73-13a1e29821f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d29d95a8-901f-4840-b903-c7c95084e6d5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215244Z:d29d95a8-901f-4840-b903-c7c95084e6d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8294E63E4478468D9EB706669F341260 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:43 GMT" + ], + "Content-Length": [ + "911" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.469.220106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-cvm/Skus/2022-datacenter-cvm/Versions/20348.469.220106\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "581b1723-8ec6-40d8-8a06-db2771a4e0f1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9995,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29989" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "40a62b3c-56c1-4d36-bdcf-e9a280ea1368" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3f542d0f-7194-4e4e-a72a-17ebd0b9df43" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0e421d29-9100-4948-b4cd-4df0580fc5ec" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214958Z:0e421d29-9100-4948-b4cd-4df0580fc5ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 076A8F94BCEE4ACB8A9B11CF04249455 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:49:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:58 GMT" + ], + "Content-Length": [ + "30726" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2008-R2-SP1-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2008-R2-SP1-zhcn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-zhcn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-gensecond\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-gs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-Server-Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-server-core-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-Server-Core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-server-core-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-with-Containers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-with-containers-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-with-containers-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-zhcn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-zhcn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-core-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-Core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-core-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-Core-with-Containers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-with-Containers\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-core-with-containers-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-with-containers-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-Core-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-core-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-with-containers-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-gensecond\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-gs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-gs-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-with-Containers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-with-Containers\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-with-containers-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-with-containers-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-with-containers-gs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-with-containers-gs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-with-containers-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-zhcn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-zhcn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-azure-edition\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-azure-edition-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-azure-edition-core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-azure-edition-hotpatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-azure-edition-hotpatch-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-azure-edition-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-core-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-core-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-azure-edition\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-azure-edition-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-azure-edition-core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-azure-edition-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-core-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-core-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"23h2-datacenter-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"23h2-datacenter-core-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1903-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Datacenter-Core-1903-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-1909-with-containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-1909-with-containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-1909-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-1909-with-containers-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-2004-with-containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-2004-with-containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-20h2-with-containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-20h2-with-containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-20h2-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-20h2-with-containers-smalldisk-g2\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9989,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29978" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "34da7b62-d800-4ab8-bbe4-4d2af14bebc3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b154a2d0-0c6a-4003-8cf9-847147a65b93" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b6e2f70b-9ff9-4f52-9d9a-f2b378edb1b5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215244Z:b6e2f70b-9ff9-4f52-9d9a-f2b378edb1b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B4FA415B75BD47C3A25D27C1D78061EE Ref B: MNZ221060608031 Ref C: 2025-06-02T21:52:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:44 GMT" + ], + "Content-Length": [ + "30726" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2008-R2-SP1-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2008-R2-SP1-zhcn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-zhcn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-gensecond\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-gs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-Server-Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-server-core-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-Server-Core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-server-core-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-with-Containers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-with-containers-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-with-containers-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-zhcn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-zhcn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-core-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-Core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-core-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-Core-with-Containers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-with-Containers\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-core-with-containers-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-with-containers-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-Core-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-core-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-with-containers-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-gensecond\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-gs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-gs-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-with-Containers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-with-Containers\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-with-containers-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-with-containers-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-with-containers-gs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-with-containers-gs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-with-containers-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-zhcn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-zhcn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-azure-edition\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-azure-edition-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-azure-edition-core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-azure-edition-hotpatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-azure-edition-hotpatch-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-azure-edition-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-core-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-core-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2022-datacenter-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-azure-edition\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-azure-edition-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-azure-edition-core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-azure-edition-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-core-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-core-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2025-datacenter-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"23h2-datacenter-core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"23h2-datacenter-core-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1903-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Datacenter-Core-1903-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-1909-with-containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-1909-with-containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-1909-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-1909-with-containers-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-2004-with-containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-2004-with-containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-20h2-with-containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-20h2-with-containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-20h2-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-20h2-with-containers-smalldisk-g2\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c07f2308-ed2e-4298-92b5-92d50202add8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15988,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bd5cae3f-8317-4801-a051-e0c5b9f7afac" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d9e021da-2bd2-4eab-9399-dac62261bb21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8cb20e6a-c196-416c-a77f-8f37c2029e17" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214958Z:8cb20e6a-c196-416c-a77f-8f37c2029e17" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 660E3CEF9B094AA6B64D3148A9193BDE Ref B: MNZ221060608031 Ref C: 2025-06-02T21:49:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:57 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15902,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43881" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0160b5a7-4d1d-4cca-aaf2-2c00f3c2aa3e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b72d3065-c84f-4dfd-bd03-9250495e97fe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "2772fdb8-8e0c-4d5a-aef4-e1695497a55f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215244Z:2772fdb8-8e0c-4d5a-aef4-e1695497a55f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1F2017D0FEE642849BC9A82E175A2727 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:44 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "415799e9-ac6c-4ec8-adb9-ef18301458e1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15987,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43981" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3994ba9d-6e3d-4165-837c-b9c45258e190" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2a1adcd3-b23f-4012-a36d-e1c3c0b45a7b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "651aa33f-e772-4aec-ad9b-d148bc401dd0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214958Z:651aa33f-e772-4aec-ad9b-d148bc401dd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B9D5E26CDA9D462199C2E71DBA31D7B6 Ref B: MNZ221060619037 Ref C: 2025-06-02T21:49:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:57 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15901,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43880" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "18c52aaa-70fa-4ab0-9ace-f00d48b514a9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7c08d1c6-32b9-40d0-b948-61bb1b6265f5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6b427b6b-561d-4375-8b26-462caf42b09f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215244Z:6b427b6b-561d-4375-8b26-462caf42b09f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E59CFA4E13BA451199C90FD3D2149394 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:44 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-zhcn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS16aGNuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1aecd8d1-f390-4a7c-a051-4b3db28140f5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15986,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43980" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2e115738-6c74-487f-a19e-480be91eb681" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/008ad21c-da70-42e0-be40-543005135ad2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "015b5192-5fbd-4e10-b84e-79d3888c7f0a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214958Z:015b5192-5fbd-4e10-b84e-79d3888c7f0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8AF7A8CEFA3A42C2BE34CDDDBBC75F7E Ref B: MNZ221060609023 Ref C: 2025-06-02T21:49:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:58 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1-zhcn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS16aGNuL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15900,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43879" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5cda364a-b5c1-4abb-95ed-977c58f3a2a2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7d495367-2ff5-472b-ba32-04cbc7c2931b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9f7cb79d-3f0b-40df-8bf8-b8fd9bbb1965" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215244Z:9f7cb79d-3f0b-40df-8bf8-b8fd9bbb1965" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5C381CCDEDC849E6BA55EB691437BAE4 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:44 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b8d40026-597f-4d60-b543-850259717590" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15985,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43979" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6b7b6efe-3b24-47a6-b0cf-5bf1dea6d2b7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/61eae175-05ed-473d-833b-eef0f7291f4d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "830d7387-f30b-4f5a-b1b8-17aaefa54ba9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214958Z:830d7387-f30b-4f5a-b1b8-17aaefa54ba9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1DF8E6614B2449B3BA34D1C30D6157B6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:49:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:58 GMT" + ], + "Content-Length": [ + "5222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15899,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43878" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fa11c2f1-1f47-4b24-852d-7c6414ef57a6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4eb4354c-5797-4918-bd5c-847d6f70c841" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "480e72fb-bcec-4b15-89c1-dce273331449" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215244Z:480e72fb-bcec-4b15-89c1-dce273331449" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2A698E1105154E8784169BF53788A109 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:44 GMT" + ], + "Content-Length": [ + "5222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNjYxNC4yNDAxMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4ef8f3b1-78af-4b34-9558-fb7835113bc6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12981,Microsoft.Compute/GetVMImageFromLocation30Min;73978" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5e373f11-b35b-4619-806a-53e2024b1167" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1e941123-16da-47bf-a31b-c595dd91f3a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bbe88e12-b853-46cc-98c3-eb847656c6e9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214958Z:bbe88e12-b853-46cc-98c3-eb847656c6e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7644A0DE668B4F00959A19429F3B8EFE Ref B: MNZ221060608035 Ref C: 2025-06-02T21:49:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:58 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNjYxNC4yNDAxMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12082,Microsoft.Compute/GetVMImageFromLocation30Min;73050" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9c278998-487b-4a46-a08a-b30f8ba1a2fe" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b7ec2e87-8a44-4046-a4e4-de169924943b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "80319c90-43b5-488c-af5b-2d9c896d075e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215244Z:80319c90-43b5-488c-af5b-2d9c896d075e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9ED8E84770E04C17A8E7513A13BEADB0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:44 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNjcwOS4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "75f0f83b-659b-4526-8c7a-1f1cb19562aa" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12980,Microsoft.Compute/GetVMImageFromLocation30Min;73977" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "41156437-48a4-4853-b1d5-351fc1c7d40c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5c87337b-822e-49ee-b5d8-05c7138d250d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ce500841-26a0-4eb6-8503-acabbc8c8085" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214958Z:ce500841-26a0-4eb6-8503-acabbc8c8085" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 26DE66FFE9B54A579FBD8BA58C96819F Ref B: MNZ221060619051 Ref C: 2025-06-02T21:49:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:58 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNjcwOS4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12081,Microsoft.Compute/GetVMImageFromLocation30Min;73049" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4ff4a035-ea8a-4b85-812b-f91345665e47" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/474236e3-25ce-4db4-a181-7e62e5fcd68a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "85b44a5f-fce1-4bee-9978-e927e3a0ed2e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215245Z:85b44a5f-fce1-4bee-9978-e927e3a0ed2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 141FEC599C96445593FBC244B51F70BA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:44 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNjc5Ni4yNDAzMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0d34cc80-cf85-4433-b815-02b5c1fa1793" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12979,Microsoft.Compute/GetVMImageFromLocation30Min;73976" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "46f3091f-bcfa-4134-8b5a-d3898475d9f5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/88e73493-9e4e-4fe9-b76e-4bee83684e04" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5eb8c93d-d392-4d7d-8ad1-3012ba56cd5d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214958Z:5eb8c93d-d392-4d7d-8ad1-3012ba56cd5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5269E584F5674AD69D0390740BAAEBBC Ref B: MNZ221060608029 Ref C: 2025-06-02T21:49:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:58 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNjc5Ni4yNDAzMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12080,Microsoft.Compute/GetVMImageFromLocation30Min;73048" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9713d63b-6907-4940-b90c-d49e39c87e61" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5161a779-dbaa-4edf-8ee4-e7c3eea6a5ce" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "6a3202e0-8a4b-4a79-b72d-623c328be63c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215245Z:6a3202e0-8a4b-4a79-b72d-623c328be63c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6DE9B26F6AED4E6D83C7CEA57EBB0B07 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:44 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNjg5Ny4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f1dc085b-0a52-48b2-b3cc-e2fc8f7639f2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12978,Microsoft.Compute/GetVMImageFromLocation30Min;73975" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6a6caa9a-3db5-4cea-9ca8-46709bb76fb8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6a9cf40f-b417-4a4f-bba5-5bbed6acf493" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "618bd290-1667-46a9-817c-26c9556172f1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214959Z:618bd290-1667-46a9-817c-26c9556172f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F4F662CD95854D5B855B8AFD4818DFAA Ref B: MNZ221060608009 Ref C: 2025-06-02T21:49:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:58 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNjg5Ny4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12079,Microsoft.Compute/GetVMImageFromLocation30Min;73047" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8f263e2e-d344-470f-b48c-9bed3955feb9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ed5342d3-f343-4158-9fe5-95c69dc3a389" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "03f87232-8bca-49ac-8e89-d12b3e0fb531" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215245Z:03f87232-8bca-49ac-8e89-d12b3e0fb531" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3F9E59CF6A3B47DBA4125DB47AE8B745 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:44 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNjk4MS4yNDA1MDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0d8baa78-95bf-4f2d-b8e4-55fc8d5c8729" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12977,Microsoft.Compute/GetVMImageFromLocation30Min;73974" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9fdc3516-3b52-4e0d-b55c-4816463b7580" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b9d723a8-a3be-4e84-a139-12e2b3a531b1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b8a05b36-7f27-44e9-93c4-f13d36f1fb22" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214959Z:b8a05b36-7f27-44e9-93c4-f13d36f1fb22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 914DB408EA3040DA9E17B721B61837B6 Ref B: MNZ221060608047 Ref C: 2025-06-02T21:49:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:58 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNjk4MS4yNDA1MDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12078,Microsoft.Compute/GetVMImageFromLocation30Min;73046" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d50a1d4b-fd6b-4f5f-9d4e-020f9fa2614d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9a183534-b792-4076-8ac1-a345f2df8272" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "389bc7f2-ea75-4eb7-bbb5-91096de1407c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215245Z:389bc7f2-ea75-4eb7-bbb5-91096de1407c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D41EE95D5C0049A3B2DA9E740150AABA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:44 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzA3MC4yNDA2MDg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "00b614e6-75ec-48e8-b2c3-78e9f5d17840" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12976,Microsoft.Compute/GetVMImageFromLocation30Min;73973" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4c01e82a-c6a3-449f-adde-41c28f2fa154" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/021a1828-7d3c-45d4-a55d-49b608d0b51c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4556d901-0a04-461f-a6d9-484b55f3f798" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214959Z:4556d901-0a04-461f-a6d9-484b55f3f798" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 35899D74BDA442B58ED7479478503286 Ref B: MNZ221060610025 Ref C: 2025-06-02T21:49:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:58 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzA3MC4yNDA2MDg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12077,Microsoft.Compute/GetVMImageFromLocation30Min;73045" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "563c3ceb-5dc5-4e9f-af76-10ed0df7e5d7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8c97b001-c66a-4740-abc9-c879daec70bc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "94cdfde0-e348-49f0-beca-7245c015b9fa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215245Z:94cdfde0-e348-49f0-beca-7245c015b9fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1C8225CC8CA84F449A21DB46D35CDA2B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:44 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzE1OS4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1eb0926a-7797-4714-9024-6b68c14f1940" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12975,Microsoft.Compute/GetVMImageFromLocation30Min;73972" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3f700fa3-1431-47ee-a9c7-811d3cc0c9df" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/22a51682-d509-44be-9864-64bb6c050d4e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6e7a8e99-2f3d-4c0f-932e-489b5635d70f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T214959Z:6e7a8e99-2f3d-4c0f-932e-489b5635d70f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 75A9BB2DFFEF4D32AA61E832A1167D9A Ref B: MNZ221060610007 Ref C: 2025-06-02T21:49:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:59 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzE1OS4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12076,Microsoft.Compute/GetVMImageFromLocation30Min;73044" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e32ddd8d-0e0a-46cb-b1a3-106235ae8015" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d70c71b5-e586-43c2-a61f-7dc505eeba67" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "240e1890-147d-4528-9cb3-d7a67a665015" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215245Z:240e1890-147d-4528-9cb3-d7a67a665015" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4D7C41A225714B42A64DE7758AE8B736 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:44 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzI1OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "69c36bcb-4b31-41b0-be7d-c9a254667cb2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12974,Microsoft.Compute/GetVMImageFromLocation30Min;73971" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b709b423-24ff-4f9c-8139-3fda92eee43f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/65e76f0f-bbf6-4c6a-9223-bfdaeddc61b2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "058813fc-2332-4fab-a05d-1bb7cb27e68b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214959Z:058813fc-2332-4fab-a05d-1bb7cb27e68b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1466D11CBC84402A9E36C13ABF1B4E53 Ref B: MNZ221060610045 Ref C: 2025-06-02T21:49:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:58 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzI1OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12075,Microsoft.Compute/GetVMImageFromLocation30Min;73043" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "93347b44-0da2-4029-8785-e2e759fa1a7b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b72a521b-bf67-48ea-8f94-a532285e43e9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "0df449dd-2741-46c8-af62-05226989bc11" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215245Z:0df449dd-2741-46c8-af62-05226989bc11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CDCB16A840CB4C20BE43BD2FEA3081E1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:44 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzMzNi4yNDA4MzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b19d410a-a8cf-4364-86bf-7193ed0103cf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12973,Microsoft.Compute/GetVMImageFromLocation30Min;73970" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "01e33a53-8bea-4dd8-8e4c-2f452103068e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/705ed2e8-f986-47a6-8a24-616b3ce21056" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2ff6fe72-84a1-4447-908a-4fb4915706cf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214959Z:2ff6fe72-84a1-4447-908a-4fb4915706cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E1DC6D1F900A4046A7E48225F8B777C6 Ref B: MNZ221060619025 Ref C: 2025-06-02T21:49:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:59 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzMzNi4yNDA4MzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12074,Microsoft.Compute/GetVMImageFromLocation30Min;73042" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "92a456d0-3c85-4389-996d-f7df253faad3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8a2e3521-70f6-432f-b513-54d3c7132740" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cbacea65-794c-4425-9f42-37531f8f78fc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215245Z:cbacea65-794c-4425-9f42-37531f8f78fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BB9CE4E51D674C0B8238615BC53D5E70 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:45 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzQyOC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0eab37e4-1384-49ee-918c-9e56d1db447b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12972,Microsoft.Compute/GetVMImageFromLocation30Min;73969" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9bcfb0fb-c8d7-407a-b628-89da29ddd4bd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a7ced144-9ee2-4236-9ccf-f20efdaf5368" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7afb6998-b4ab-4c5d-84ff-23768a6a8d4e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214959Z:7afb6998-b4ab-4c5d-84ff-23768a6a8d4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A944825C052449A982D81BB8B80A78C3 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:49:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:59 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzQyOC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12073,Microsoft.Compute/GetVMImageFromLocation30Min;73041" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bf3c94f7-07ad-4295-ac65-bfa049c42bd2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fd9912e7-916d-44e3-b0f7-4dd7f264be09" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ec41d357-b397-4b98-b46f-0be1db3d5ab9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215245Z:ec41d357-b397-4b98-b46f-0be1db3d5ab9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4ED34D05A30448DCA5A8003DD4BF82C6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:45 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzUxNS4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "11d9ec8c-c159-45e2-b7bf-be91823b3f1e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12971,Microsoft.Compute/GetVMImageFromLocation30Min;73968" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "71c20a89-0dd4-463d-9ae4-c52a40431667" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/68b44453-33b6-4523-9e51-92ddebd57293" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "bcf276b7-f850-4767-8450-28b27b6b2428" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T214959Z:bcf276b7-f850-4767-8450-28b27b6b2428" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 618C04B3168D4D4BB2329E8581F82C3E Ref B: MNZ221060618021 Ref C: 2025-06-02T21:49:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:59 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzUxNS4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12072,Microsoft.Compute/GetVMImageFromLocation30Min;73040" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b03eee0a-33d7-4f80-b64f-d2c5d747c2f4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cc4f4940-490e-43f6-9755-32588f3e75f2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f7599d9c-d508-415c-a27d-ce8a53a74f7b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215245Z:f7599d9c-d508-415c-a27d-ce8a53a74f7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 64720C4E449C4EF29A3BBB8A2D8855AB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:45 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzYwNi4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1a50514e-2af7-46e3-833a-316570e8fef5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12970,Microsoft.Compute/GetVMImageFromLocation30Min;73967" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a5512498-27dc-4011-bb4a-991f8e65cde3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1de99f4c-55e8-4a59-9ea2-607bc21ccda1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ec2bd8b7-70a6-453e-9f6c-1972f655e534" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215000Z:ec2bd8b7-70a6-453e-9f6c-1972f655e534" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 64C4CD89239143A592914BC21D450780 Ref B: MNZ221060619029 Ref C: 2025-06-02T21:49:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:59 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzYwNi4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12071,Microsoft.Compute/GetVMImageFromLocation30Min;73039" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d4e8dfb0-c2c7-4270-b0ba-86eda001aa6f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/011f3f26-bed3-4d7f-8459-3fc14f4ecb50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d28d7d94-42b9-449d-a2a1-91a86752d914" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215245Z:d28d7d94-42b9-449d-a2a1-91a86752d914" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F23682E2EB2F49B0A940B740564AD21B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:45 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzY5OS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "002490ba-c467-4151-be68-c675910932c4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12969,Microsoft.Compute/GetVMImageFromLocation30Min;73966" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "85326007-0def-42b1-b31c-58f68dd4461d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c6de138a-b7d3-437d-b8f5-89fb38a12a6b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "655e7bfe-806d-46ae-be8a-e57f36092109" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215000Z:655e7bfe-806d-46ae-be8a-e57f36092109" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 63FEB18E82874F4AA949417394F08EC7 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:50:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:59 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzY5OS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12070,Microsoft.Compute/GetVMImageFromLocation30Min;73038" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b8c357e4-a5e0-49e4-b6e6-69f2250a453e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/989355eb-c298-460a-a089-a07b58b93afe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ae8e557d-213e-47a9-a591-b11e0d1d01c6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215246Z:ae8e557d-213e-47a9-a591-b11e0d1d01c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E15F344DA7EB4EB28BBCF36D674CCD50 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:45 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzc4NS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "62e0cce4-5c5e-48f8-a87c-c28e1a800303" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12968,Microsoft.Compute/GetVMImageFromLocation30Min;73965" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0ac098f4-f925-4982-8b6c-3654abbf1245" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6d36baa9-bd18-4212-9bfb-ef817ace3d77" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "536f7fd3-4509-49d3-a612-6c69e460f14a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215000Z:536f7fd3-4509-49d3-a612-6c69e460f14a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B0F7CAA6B2784285BC0116E3E4FB0A4A Ref B: MNZ221060618021 Ref C: 2025-06-02T21:50:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:49:59 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzc4NS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12069,Microsoft.Compute/GetVMImageFromLocation30Min;73037" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1e83c11d-68f6-46e3-83c6-f1b781e66d8d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d5c7ddb9-f8a6-46c0-99c9-10dde0c9f864" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "af06e55c-b748-4452-b8ed-11c949ef9623" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215246Z:af06e55c-b748-4452-b8ed-11c949ef9623" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AC6333983B1F4A65AD4873CE502B2839 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:45 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzg3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0ba7d059-af1e-4a25-83e3-9075bf5d4bbd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12967,Microsoft.Compute/GetVMImageFromLocation30Min;73964" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aca8184f-bd19-4f66-843e-0d1c5594c981" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9b37c321-012c-4101-926e-1b364cdab5ad" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e88aa9a9-02ce-4924-8751-718d374e14b3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215000Z:e88aa9a9-02ce-4924-8751-718d374e14b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1ECAB8A591E54FB5A5941F43C56C09D8 Ref B: MNZ221060608045 Ref C: 2025-06-02T21:50:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:00 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzg3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12068,Microsoft.Compute/GetVMImageFromLocation30Min;73036" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fcb70f10-f751-4a46-b158-2dfc2e5bbc9b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a36c958f-7a21-4a36-ab9e-3eddbcab92d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "64281710-bc3a-4b29-90f3-3a91161d43e8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215246Z:64281710-bc3a-4b29-90f3-3a91161d43e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 23760F28763448F88E9879A326F39B4E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:45 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzk3My4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b7f9bfb7-741f-41f0-a39d-de145d946ec3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12966,Microsoft.Compute/GetVMImageFromLocation30Min;73963" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "72d80604-64ab-4b1c-b7b7-5c5bd0f8c82b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a3c8b67f-e30c-43f7-b3da-4bca68984536" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "895eb32d-af85-48e1-add8-37baf6464f3c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215000Z:895eb32d-af85-48e1-add8-37baf6464f3c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 91AD0A8F10AC49788A3B567072F4E542 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:50:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:00 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuNzk3My4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12067,Microsoft.Compute/GetVMImageFromLocation30Min;73035" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a7df9951-b31d-475f-8918-24e4dd04b1aa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6993bb3f-79c5-459c-9c27-1cc81a4edf63" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9eaebc6b-3d9c-4a76-958f-def7fcab1704" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215246Z:9eaebc6b-3d9c-4a76-958f-def7fcab1704" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E5D02FB72DE74E7590669C3DF01A80B5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:45 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuODA2Ni4yNTA1MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e5f7b178-b684-4b67-854c-c5d713bda8da" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12965,Microsoft.Compute/GetVMImageFromLocation30Min;73962" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8bc75a9d-f2d5-48f9-8472-054056a30e63" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3b83c28f-3d9b-4ad2-86cf-898f4efa5239" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6ead46f0-3bc3-467a-829a-27b6ce04f567" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215000Z:6ead46f0-3bc3-467a-829a-27b6ce04f567" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DE6236BC873F458481095435CBAD0BB2 Ref B: MNZ221060619037 Ref C: 2025-06-02T21:50:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:00 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXIvdmVyc2lvbnMvMTQzOTMuODA2Ni4yNTA1MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12066,Microsoft.Compute/GetVMImageFromLocation30Min;73034" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b6c9cf28-5b47-4e9b-a45a-f5f884d97797" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/75b459d0-c3bb-4a94-9179-d55ff3232e70" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "27c096ef-782c-49ce-8211-6118944850be" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215246Z:27c096ef-782c-49ce-8211-6118944850be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E09DED798DF8442487116C58D52912DF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:45 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "98aefe5b-8af0-4a84-b90b-8981b4ff4bae" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15984,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43978" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e39cddaa-60ec-4fbb-891e-a7d94841ee70" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/962fdbc7-3b3f-4f86-aed5-6885e7318bc0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f0ad107a-b6b4-4b52-b4c5-257d656d77bb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215000Z:f0ad107a-b6b4-4b52-b4c5-257d656d77bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 521AD8C58BF7437B924C152AF0CC178A Ref B: MNZ221060618053 Ref C: 2025-06-02T21:50:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:00 GMT" + ], + "Content-Length": [ + "5392" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15898,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43877" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d0e670e9-609c-42ff-a47e-a5bb21ee8667" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5facac41-76c9-4a34-924c-10722164788c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6b23365a-aa16-4c0a-9257-ff21110db8f8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215246Z:6b23365a-aa16-4c0a-9257-ff21110db8f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2C80A606BDA5457B9067F89143B5D745 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:45 GMT" + ], + "Content-Length": [ + "5392" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjY2MTQuMjQwMTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1a2b72b1-09b1-4901-ae40-9766e458d1f5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12964,Microsoft.Compute/GetVMImageFromLocation30Min;73961" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dcbdcb05-7f98-4068-b2f1-0e63c6c5c082" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b6c49671-4eb8-4d00-a502-1aee3f848379" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8dd62e79-0570-4985-8ecb-2aea2dac31f8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215001Z:8dd62e79-0570-4985-8ecb-2aea2dac31f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DCBBA1DD33304717BD8A5315BDBB9AF6 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:50:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:00 GMT" + ], + "Content-Length": [ + "1250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjY2MTQuMjQwMTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12065,Microsoft.Compute/GetVMImageFromLocation30Min;73033" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fac15f23-c993-4648-9ba7-11f01eda2741" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e701c20e-18f1-47ee-b284-f1b4044aa524" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "fd3f4b9c-c4d7-4b5f-af32-653a02652b80" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215246Z:fd3f4b9c-c4d7-4b5f-af32-653a02652b80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 66D413B5379947ED8CC4546975707443 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:45 GMT" + ], + "Content-Length": [ + "1250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjY3MDkuMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "00088106-ee6a-4a6f-b8f9-a56b0682cb1d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12963,Microsoft.Compute/GetVMImageFromLocation30Min;73960" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3a61aa98-bdee-4d75-8831-8b6748f36851" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e1bf9b64-88dd-4800-a8dc-81acc9c66394" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8603d944-e24c-40e7-ad24-77a293de75eb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215001Z:8603d944-e24c-40e7-ad24-77a293de75eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E1B36530EBB24917B49D8B9493EAC880 Ref B: MNZ221060608025 Ref C: 2025-06-02T21:50:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:01 GMT" + ], + "Content-Length": [ + "1250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjY3MDkuMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12064,Microsoft.Compute/GetVMImageFromLocation30Min;73032" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0afe4e51-ab50-4013-b9d6-bfed69c2eade" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/44206ec3-6473-441f-835d-4b61fa7ab972" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c2a65218-3351-46ac-984c-406ddd67670b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215246Z:c2a65218-3351-46ac-984c-406ddd67670b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 131A9007FA3E4B5790B6EB1AB9239179 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:45 GMT" + ], + "Content-Length": [ + "1250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjY3OTYuMjQwMzAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c287b315-4c0a-4e03-91c4-981e01f46620" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12962,Microsoft.Compute/GetVMImageFromLocation30Min;73959" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e2e37a69-fbd4-40e8-91fd-0e9b0aded5a7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2e794d45-a739-4191-b2a0-78ea5b193e8e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "69a1fc63-e921-4461-b739-12f5f6d2b651" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215001Z:69a1fc63-e921-4461-b739-12f5f6d2b651" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9A611CAA09934CBC888D2A625E472999 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:50:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:01 GMT" + ], + "Content-Length": [ + "1250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjY3OTYuMjQwMzAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12063,Microsoft.Compute/GetVMImageFromLocation30Min;73031" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "638278f0-aa89-4466-aa71-8557e794341b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/659065f6-0e2e-446b-bef6-4f254ba10cb7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b8d2e952-4002-4dcb-b9f1-1d4040e208a9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215246Z:b8d2e952-4002-4dcb-b9f1-1d4040e208a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 534C60C356A146C98CF50D2E54EB463D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:46 GMT" + ], + "Content-Length": [ + "1250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjY4OTcuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dc1c3962-09dd-4e39-ac9d-bdf9bd82c701" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12961,Microsoft.Compute/GetVMImageFromLocation30Min;73958" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "baaaea6e-6979-4f13-ad10-01cabf996c6a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/68e7f539-a62c-45cb-ae1b-aa8708a52b48" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fbe6404d-1cf6-4c64-ad59-b383015f3f9c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215002Z:fbe6404d-1cf6-4c64-ad59-b383015f3f9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E88CD0BAD3F940508FB54BA0A3E7C232 Ref B: MNZ221060610035 Ref C: 2025-06-02T21:50:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:01 GMT" + ], + "Content-Length": [ + "1169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjY4OTcuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12062,Microsoft.Compute/GetVMImageFromLocation30Min;73030" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e515011c-b9f2-4581-b327-90fdc37d7311" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dc2caf08-b1fb-49b2-8549-3b732bd17266" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "af4ee7ea-2a1c-46c1-b772-04f6465b3c86" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215246Z:af4ee7ea-2a1c-46c1-b772-04f6465b3c86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ACD97C070F7F4B49A418FDEB0DDC9FA9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:46 GMT" + ], + "Content-Length": [ + "1169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjY5ODEuMjQwNTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6e999da3-6fc6-493e-aec3-37e8b9ce5c6c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12960,Microsoft.Compute/GetVMImageFromLocation30Min;73957" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "46ff2eb7-1bcb-4270-9f0a-5b6d5ef10586" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/22f89158-aed5-4e23-9b3e-5fbb58caf85d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "806ac5fd-7e52-42a0-8a6a-449c8f789fd3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215002Z:806ac5fd-7e52-42a0-8a6a-449c8f789fd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 098067C7B812440BAA6944971E8A8867 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:50:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:02 GMT" + ], + "Content-Length": [ + "1169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjY5ODEuMjQwNTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12061,Microsoft.Compute/GetVMImageFromLocation30Min;73029" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4594394c-df1b-4914-ba8d-e4b1caf99b7c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/97cc1dde-9fbf-4034-8158-c0c00b7fb261" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f3a0d78e-d11a-4330-ae82-ddbb731f2cae" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215247Z:f3a0d78e-d11a-4330-ae82-ddbb731f2cae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 560AF29320FE46ECAB03FBE04DCAB14A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:46 GMT" + ], + "Content-Length": [ + "1169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjcwNzAuMjQwNjA4P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cc2f7913-c365-4e4d-a955-172c6df946c2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12959,Microsoft.Compute/GetVMImageFromLocation30Min;73956" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ef4d499f-9392-49a7-847d-739cdce013c0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/38d2e056-c995-4152-9e07-6f068d0139de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f4d00dcd-e9cb-4b36-ac98-641ce72022b2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215002Z:f4d00dcd-e9cb-4b36-ac98-641ce72022b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 20661845CF684786A709E7E59A973255 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:50:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:02 GMT" + ], + "Content-Length": [ + "1169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjcwNzAuMjQwNjA4P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12060,Microsoft.Compute/GetVMImageFromLocation30Min;73028" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c364411b-69b3-496d-93a7-3a57335d40b6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ea157d19-2da7-4aab-b482-55fa894d69a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "1fee7697-5adc-4a95-a663-4a05b976206c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215247Z:1fee7697-5adc-4a95-a663-4a05b976206c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 02E3B3C556DA42FE9AF50AF1B59A5663 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:46 GMT" + ], + "Content-Length": [ + "1169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjcxNTkuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2659dfcd-553e-45be-8198-d025183832b6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12958,Microsoft.Compute/GetVMImageFromLocation30Min;73955" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b033e195-49a7-42d0-b3a1-f08291d4be53" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/da5e1d90-deef-4766-9eb0-cbe963331966" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "35497356-63b3-4277-8975-8acf4efbbbc0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215002Z:35497356-63b3-4277-8975-8acf4efbbbc0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC73AB26D7774EA095D3B4DC3D852D05 Ref B: MNZ221060610033 Ref C: 2025-06-02T21:50:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:02 GMT" + ], + "Content-Length": [ + "1169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjcxNTkuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12059,Microsoft.Compute/GetVMImageFromLocation30Min;73027" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b59f8afe-0c60-4554-943f-3d0679597fb7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8337be8b-6ace-42aa-a98c-5d738478d2de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "eb7529df-7e48-4279-8627-e062c34890ef" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215247Z:eb7529df-7e48-4279-8627-e062c34890ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 746E013ABAFC478C9285307BD4607AF1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:46 GMT" + ], + "Content-Length": [ + "1169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjcyNTkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3fa3c648-f884-44c7-8415-42ce5aa25a16" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12957,Microsoft.Compute/GetVMImageFromLocation30Min;73954" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "75a8738f-d63a-47af-bd73-b5dc9ca63cc6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/360c81ff-c086-4091-a080-8f809d8b236b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "98ea1354-1592-47eb-b387-c534ea559d00" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215002Z:98ea1354-1592-47eb-b387-c534ea559d00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6200FDE5BC50474EBDEB9BC509E2310B Ref B: MNZ221060610025 Ref C: 2025-06-02T21:50:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:01 GMT" + ], + "Content-Length": [ + "1169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjcyNTkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12058,Microsoft.Compute/GetVMImageFromLocation30Min;73026" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d5c39116-ec66-4219-835a-049bb8bf821c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b66c4a73-08d8-46ec-a8e0-a3381850d631" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "747e814f-4bf3-4287-92ae-056e7b7adab2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215247Z:747e814f-4bf3-4287-92ae-056e7b7adab2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FA20997FC0334F989856A80E519E08FB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:46 GMT" + ], + "Content-Length": [ + "1169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjczMzYuMjQwODMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "88eeb8a9-7540-4098-af0f-5075572b907c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12956,Microsoft.Compute/GetVMImageFromLocation30Min;73953" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "46707cf8-ecfb-4a11-b907-1c8e7f41927b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2c62c38d-c5b0-44e9-b94f-8c8dec1bcbda" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a88979d7-f1de-41ad-b9a5-7ea23a635a9c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215002Z:a88979d7-f1de-41ad-b9a5-7ea23a635a9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CF17DD93930C4EAB83A46AA6D116B528 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:50:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:02 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjczMzYuMjQwODMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12057,Microsoft.Compute/GetVMImageFromLocation30Min;73025" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f6cdeb57-4231-453f-8676-2b70acb7a48c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/161ba538-48d0-4079-86fa-f897f14329a3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "247dedae-7a85-4c0f-80c6-e81f05534069" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215247Z:247dedae-7a85-4c0f-80c6-e81f05534069" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 37417449E2174E11BCD222752963D047 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:47 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc0MjguMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4c58ddd9-a4f2-46fa-8206-6f5bb996c013" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12955,Microsoft.Compute/GetVMImageFromLocation30Min;73952" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f072f03b-ff15-40f9-ac6b-235d0627cd2d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9cbfa6d0-1df3-4dd0-a97e-4d94137b43b2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3e535c4a-47f6-450c-9298-868524631877" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215003Z:3e535c4a-47f6-450c-9298-868524631877" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D842F2E83F2741378902703EB0CCEBA7 Ref B: MNZ221060608009 Ref C: 2025-06-02T21:50:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:02 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc0MjguMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12056,Microsoft.Compute/GetVMImageFromLocation30Min;73024" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "564fe468-44c7-480a-92e1-f57d2635f64c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5ed6e780-62d6-4954-97bd-e0d08aded744" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "87220c23-fb20-4552-9cf7-e9522df3f49e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215247Z:87220c23-fb20-4552-9cf7-e9522df3f49e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D2EC93A5205B4FF4B7C4094EA2DB5C61 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:47 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc1MTUuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cb60618d-6d49-4794-9d02-88ef2af92983" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12954,Microsoft.Compute/GetVMImageFromLocation30Min;73951" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "94d730e8-4eaa-4cb2-a53f-c9a9553f209e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0f92364a-a42f-4d86-aa18-bb7f2a6d5c61" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d6565571-ce52-471e-9a08-1968c804aaae" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215003Z:d6565571-ce52-471e-9a08-1968c804aaae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41E7336A19694064ABA04AE8FAFB8820 Ref B: MNZ221060619049 Ref C: 2025-06-02T21:50:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:02 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc1MTUuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12055,Microsoft.Compute/GetVMImageFromLocation30Min;73023" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ba83455d-1ad6-4334-a016-b870a5580ba4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dbdb8dff-d3a8-4c2d-bfb3-3036dc435963" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ce905c13-f2e1-4e2f-875c-91482e28a893" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215247Z:ce905c13-f2e1-4e2f-875c-91482e28a893" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0B9B1E07F21040E2A69DFC4569CD8FE5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:47 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc2MDYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "34d5c286-3fc9-4f30-9516-f67c24f44d01" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12953,Microsoft.Compute/GetVMImageFromLocation30Min;73950" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "23c2fc8b-0362-49ef-b11e-a5437cd56b7a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/377234cc-2a64-4e58-8ceb-7e6ea0f2b87f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4f9cd416-91fc-466d-b453-07d6fa806a22" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215003Z:4f9cd416-91fc-466d-b453-07d6fa806a22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F3305DFE282D4A21AB102FE06266AA15 Ref B: MNZ221060608021 Ref C: 2025-06-02T21:50:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:02 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc2MDYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12054,Microsoft.Compute/GetVMImageFromLocation30Min;73022" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9bb13ebf-5d57-4d31-bb42-309c609943c5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f31a210c-8b76-4116-8ab9-91859b554883" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f90d9653-1777-4d25-a214-86440efb9b65" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215248Z:f90d9653-1777-4d25-a214-86440efb9b65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4320A6C9AB134ECFBA142577FAD10D4F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:47 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc2OTkuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8f97f5ad-42cb-48dc-9db6-c41696f05700" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12952,Microsoft.Compute/GetVMImageFromLocation30Min;73949" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b390102f-f52b-4f19-bfd7-ac26861ee60e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9afb5a2b-e0b9-44ba-82bb-acc06a988fa5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "9cac6eab-7477-4ebb-82a1-5208b43ebf76" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215003Z:9cac6eab-7477-4ebb-82a1-5208b43ebf76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 339CEA3FA32E4B1C9282A43BB52D0192 Ref B: MNZ221060609047 Ref C: 2025-06-02T21:50:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:03 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc2OTkuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12053,Microsoft.Compute/GetVMImageFromLocation30Min;73021" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8108071d-5f8f-464e-9590-9501ce5a1ad9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2848754a-968b-479c-8f43-811cd845b1de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f8c01ed1-e933-4346-8e15-018d62759801" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215248Z:f8c01ed1-e933-4346-8e15-018d62759801" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E5FE4737756D47BBB6F79C65EF054767 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:47 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc3ODUuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a34cd7dd-a45c-4deb-acac-ee283b10cde7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12951,Microsoft.Compute/GetVMImageFromLocation30Min;73948" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ab8b0d4d-f44f-44f1-abcf-cb45aa6ca522" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ac5d44f6-e3d3-47a1-9d92-1adac8a9cd39" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "914e2776-181d-418c-a849-6a5da20f667a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215003Z:914e2776-181d-418c-a849-6a5da20f667a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 56C6744F94914FFBBD3E67F4C28B3FE2 Ref B: MNZ221060608051 Ref C: 2025-06-02T21:50:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:03 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc3ODUuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12052,Microsoft.Compute/GetVMImageFromLocation30Min;73020" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "42c4b228-e75c-45ee-bd5a-a38cc69cf0b9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a639653a-aafb-49f1-b249-65bb6b25bf42" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "fd765404-8661-4f9d-b1a9-c3010de01eb8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215248Z:fd765404-8661-4f9d-b1a9-c3010de01eb8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A42DC7BD9F014CC98A0A2ABDBEB1295F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:47 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc4NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "92882e38-c7c1-4c56-a028-9e9b79aaebe2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12950,Microsoft.Compute/GetVMImageFromLocation30Min;73947" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "14d6756c-f46a-4a3a-b682-f8f7b9cae0fd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/90332c81-99e5-4be3-a31e-9cb8ce978443" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3ca90b2a-8e8c-42ec-b7e5-4c65ab5cd0de" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215004Z:3ca90b2a-8e8c-42ec-b7e5-4c65ab5cd0de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2B4869884A284B41AB039F9C33178659 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:50:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:03 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc4NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12051,Microsoft.Compute/GetVMImageFromLocation30Min;73019" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "966e4f71-f532-4e43-8ae7-81c93ceac850" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/06d5be83-a9a2-4259-a7ad-db02bc9c827a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "3d217889-6d25-45c9-b499-b65fc3e4502f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215248Z:3d217889-6d25-45c9-b499-b65fc3e4502f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6C6C8D921E0D470283971A70322A1051 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:47 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc5NzMuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0257b9ec-507b-45bf-b864-e7c3611c4aeb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12949,Microsoft.Compute/GetVMImageFromLocation30Min;73946" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b1fcf004-6541-4093-b8ab-2655248bc44f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a9d32836-f811-4748-88c1-d6ab86454dfe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dab9af4c-a7d1-4077-a554-334b131bd5b1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215004Z:dab9af4c-a7d1-4077-a554-334b131bd5b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD852E3BD1A34306A4898390CE49E82B Ref B: MNZ221060609045 Ref C: 2025-06-02T21:50:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:03 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjc5NzMuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12050,Microsoft.Compute/GetVMImageFromLocation30Min;73018" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "59038d0f-66e9-453f-9493-adef9e38b923" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8eb10cc6-9146-4879-8d30-85c498ff92d6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dcbd258d-c6bc-447a-b811-c409bcdf4b2f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215248Z:dcbd258d-c6bc-447a-b811-c409bcdf4b2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 586FE392F73E4C3790F3906B1CBEB932 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:47 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjgwNjYuMjUwNTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dd766286-7063-4038-916d-953f8a48caf1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12948,Microsoft.Compute/GetVMImageFromLocation30Min;73945" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a0b079a1-6221-409a-9b80-dec10a934fc2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d9a538ae-c377-4c7d-ad8f-98b94aa3e1f6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "874ee5b1-e40b-41f0-8aca-b1f65bdf208e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215004Z:874ee5b1-e40b-41f0-8aca-b1f65bdf208e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 82A0F89B0D064143AC5E05444B705001 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:50:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:03 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gensecond/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE0MzkzLjgwNjYuMjUwNTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12049,Microsoft.Compute/GetVMImageFromLocation30Min;73017" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f3fc59d4-d26f-4dab-9992-044977ea4ef5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/abcd67d7-9edb-4ab6-a592-2395a784480d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "3130fc11-a4a9-4e38-bf79-0043cff870b2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215248Z:3130fc11-a4a9-4e38-bf79-0043cff870b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EA8D084B313744178D4E324616327898 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:48 GMT" + ], + "Content-Length": [ + "1217" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "98ea4ee2-7832-4683-b7e6-55684d28d3f2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15983,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43977" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e93d17c-f427-40aa-a97a-b2b6ea5f1cb5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/61d1fe0a-cbf7-43e0-b55e-90ec40a5e6ca" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "8ab35ff7-7e3d-41cb-8ead-420a7d435c9d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215004Z:8ab35ff7-7e3d-41cb-8ead-420a7d435c9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1A547DC7E0E7486FA79A5BF5C0F6E8CA Ref B: MNZ221060610037 Ref C: 2025-06-02T21:50:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:03 GMT" + ], + "Content-Length": [ + "5273" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15897,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43876" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cf58014e-d0b7-4fd9-997e-a498958e5dfa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2a04b710-ebac-4c20-bc9b-d5dcf8d0e9af" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "6e1e9a8d-8e3d-44a6-a04b-320d1c93e3bd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215248Z:6e1e9a8d-8e3d-44a6-a04b-320d1c93e3bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 51872FB55DB44FA5AF7E7D347C3F048F Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:48 GMT" + ], + "Content-Length": [ + "5273" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNjYxNC4yNDAxMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3d3a61cd-fd9b-485c-823b-30f5908dca7d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12947,Microsoft.Compute/GetVMImageFromLocation30Min;73944" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a1e7a68b-d3eb-4199-a6cd-7de2c286488f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fa605675-fbd3-490b-a6f7-277aec56f263" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "86e110b5-f38a-4d71-8f35-63380dd465d4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215005Z:86e110b5-f38a-4d71-8f35-63380dd465d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4EFF703A82234BABBF035FA4FD49C102 Ref B: MNZ221060609021 Ref C: 2025-06-02T21:50:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:04 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNjYxNC4yNDAxMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12048,Microsoft.Compute/GetVMImageFromLocation30Min;73016" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8c3c4cf5-9164-4153-acb0-2adf86b80a64" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/59199ff9-6a22-4fec-9643-f3f04abf649a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "5e522852-e2dc-4b30-8032-5885d7146637" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215248Z:5e522852-e2dc-4b30-8032-5885d7146637" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B86143D35B60423BA809DF273EEBF240 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:48 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNjcwOS4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0e8cafe0-540c-48d5-b1c5-0ed7df62e89e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12946,Microsoft.Compute/GetVMImageFromLocation30Min;73943" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3105ca9c-9e94-4c4b-ac57-532a5a8be299" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2dc60697-39f0-4740-8564-c96ffd2d8e4b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8896f747-c59a-4c02-9528-9c5a14f29b57" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215005Z:8896f747-c59a-4c02-9528-9c5a14f29b57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F9517D424F13400494354B3DCF808705 Ref B: MNZ221060608047 Ref C: 2025-06-02T21:50:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:04 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNjcwOS4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12047,Microsoft.Compute/GetVMImageFromLocation30Min;73015" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4777be70-cb79-4913-a7ae-16545d328e45" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d6cb7f02-9783-4a0d-bac7-451a92d1a2a0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2698f9f3-1626-4e03-a924-760b1fb6ab82" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215248Z:2698f9f3-1626-4e03-a924-760b1fb6ab82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3E82E9104104469399C8A011C89F7F91 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:48 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNjc5Ni4yNDAzMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ae3f9488-3e65-4c86-9b40-ccff5017d3f2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12945,Microsoft.Compute/GetVMImageFromLocation30Min;73942" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "46afa83a-1fc7-4f2b-a6d6-deb99f1565f1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9d644279-6d2c-4323-bf88-711887fb74e3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fd972853-ee58-4e9e-a15f-cb83f4eb11fc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215005Z:fd972853-ee58-4e9e-a15f-cb83f4eb11fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F8045B9EEC0C47EC950E12100E1B0E1F Ref B: MNZ221060608025 Ref C: 2025-06-02T21:50:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:04 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNjc5Ni4yNDAzMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12046,Microsoft.Compute/GetVMImageFromLocation30Min;73014" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "49966b3e-2d17-430b-a981-96bf838c9f1c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0e0dd03f-45c1-4ef8-af73-8666bc313eb2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1d2ddb13-d866-4ca3-9958-c4bba8f7c21a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215249Z:1d2ddb13-d866-4ca3-9958-c4bba8f7c21a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8021D4E929FD4C57B57E150F260FB56B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:48 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNjg5Ny4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8e414cf5-c031-46f7-8eed-424028520603" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12944,Microsoft.Compute/GetVMImageFromLocation30Min;73941" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f26f48d0-794c-4866-9d94-a8992e926f9d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7ee97701-a1ab-42fd-b98a-f43e3d446cb1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d2cf3702-82cf-4f97-9f49-6e430d82a9ac" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215005Z:d2cf3702-82cf-4f97-9f49-6e430d82a9ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 587B20293B9A4E7B84D950D59456076A Ref B: MNZ221060610027 Ref C: 2025-06-02T21:50:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:04 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNjg5Ny4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12045,Microsoft.Compute/GetVMImageFromLocation30Min;73013" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3cb8f07e-a38e-4548-bc6c-d87c727a7659" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c07b3c52-ce0a-498b-9642-ebc4dd077527" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "017f38a2-bc83-49ed-8093-902f8b252358" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215249Z:017f38a2-bc83-49ed-8093-902f8b252358" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 921389C5314D431387D22FB75612D05B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:48 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNjk4MS4yNDA1MDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0c5b9e28-daa5-4238-b527-58a85e51b136" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12943,Microsoft.Compute/GetVMImageFromLocation30Min;73940" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0eb3ce87-6c3d-4364-bd9f-8ea15aa07c75" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/992666d0-0ab0-4923-b67e-6461eca660d0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c0f0200d-673c-47b0-a268-abdf343a2ece" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215005Z:c0f0200d-673c-47b0-a268-abdf343a2ece" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ACBDCFF925DE4DD0B174D07A4F12EB19 Ref B: MNZ221060619049 Ref C: 2025-06-02T21:50:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:05 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNjk4MS4yNDA1MDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12044,Microsoft.Compute/GetVMImageFromLocation30Min;73012" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6a844194-9186-44fa-b7cb-762756680fdf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1848c7b2-8fe1-49a8-aca8-f1df44b91d11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "31ce2813-15ce-434f-86c4-de154610406c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215249Z:31ce2813-15ce-434f-86c4-de154610406c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4A2A7FC42F6D416FAF4E2160E6E1B6D4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:48 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzA3MC4yNDA2MDg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2234dc22-5b3f-4299-99f9-a86442b7c400" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12942,Microsoft.Compute/GetVMImageFromLocation30Min;73939" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f8f63a17-207e-4c86-ae13-d9455ee89dac" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5fc9dda1-80af-40cf-ad8c-93ed669ddcd7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a74c228e-dfba-454a-8104-8f55457fb93c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215005Z:a74c228e-dfba-454a-8104-8f55457fb93c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1161C32D823F472E8BA5B7529A5536F1 Ref B: MNZ221060619031 Ref C: 2025-06-02T21:50:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:04 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzA3MC4yNDA2MDg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12043,Microsoft.Compute/GetVMImageFromLocation30Min;73011" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d0abbd35-ee0b-4ffe-8ec3-d8edaff07444" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/871089bf-d114-4b68-9e75-7ce5a42947b3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "b743cc1e-002c-4352-a605-f19117b51398" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215249Z:b743cc1e-002c-4352-a605-f19117b51398" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DBE3241CDCFF4E39868B37DA38C46A6E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:48 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzE1OS4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "053b124d-5fcf-4781-8a35-45b5d914beb8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12941,Microsoft.Compute/GetVMImageFromLocation30Min;73938" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "de5c15df-6ad5-409d-a3db-ac74e508c940" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c891f641-d842-4882-8ceb-d35e12d867ee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "79876813-4b1e-4544-b76d-a1be3f0d4eee" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215005Z:79876813-4b1e-4544-b76d-a1be3f0d4eee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8565BCCB3DD745E1AFEEC43AF070BBA9 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:50:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:05 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzE1OS4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12042,Microsoft.Compute/GetVMImageFromLocation30Min;73010" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0a261736-0989-4b41-ba0c-cef1b879da73" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2ac80fd3-e1a3-4657-947d-382ad75e56eb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "cbec81d9-dd44-4e03-b325-bfdfa540a817" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215249Z:cbec81d9-dd44-4e03-b325-bfdfa540a817" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 23CBB9FC109A40A6B62AB9733B816E80 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:48 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzI1OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ab84a40f-2577-4503-815d-ab6e0c9db251" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12940,Microsoft.Compute/GetVMImageFromLocation30Min;73937" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eeafd5e8-9421-40de-a7bd-124d680075a7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/58fda889-581a-4016-a88e-456b8db9cf1d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "08a6648d-c58c-46f1-bfe8-d5bf1bb63024" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215005Z:08a6648d-c58c-46f1-bfe8-d5bf1bb63024" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 720F91531B624517B2FED41395EBBEE9 Ref B: MNZ221060608033 Ref C: 2025-06-02T21:50:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:05 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzI1OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12041,Microsoft.Compute/GetVMImageFromLocation30Min;73009" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e2e9e249-7df0-4a6e-a531-a662e896fd29" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/60da6692-789b-473a-8f9c-96da070eec3f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7f509303-73cf-4c32-88d7-a9f1791455b7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215249Z:7f509303-73cf-4c32-88d7-a9f1791455b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DA726EE5B74A465A9DA2D4218DB0375F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:48 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzMzNi4yNDA4MzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "59a8ea02-001d-4550-8c41-227bf5e07e92" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12939,Microsoft.Compute/GetVMImageFromLocation30Min;73936" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8c01589a-219b-4c62-bbb7-4b17e5e1564f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ebcc180f-3b65-4df3-8d74-c78a0e557e3d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "9ee91a5b-4d4f-4309-888e-065d67051373" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215006Z:9ee91a5b-4d4f-4309-888e-065d67051373" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EF396F172C6D47BD80FC130C862598B6 Ref B: MNZ221060610027 Ref C: 2025-06-02T21:50:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:05 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzMzNi4yNDA4MzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12040,Microsoft.Compute/GetVMImageFromLocation30Min;73008" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1e4da500-53c7-44fa-aead-52658a428c15" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/efbc9bc6-03e7-4c44-bfcc-b8b192e0227b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a38f0914-7d57-4d7b-8ffc-6b0d4837e35f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215249Z:a38f0914-7d57-4d7b-8ffc-6b0d4837e35f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 24C65E9596BA48D9BC2CE392EE38DCCF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:48 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzQyOC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6d8f5819-a39a-48ca-b0e2-e8b4e32e56cc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12938,Microsoft.Compute/GetVMImageFromLocation30Min;73935" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8c9cf854-a9ba-4419-8c0b-0e372079a485" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9e5088bc-89de-4448-b21f-28f39f0ae59c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f4b90e7f-8c63-44c1-9ca7-f93c16b0cd17" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215006Z:f4b90e7f-8c63-44c1-9ca7-f93c16b0cd17" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FBB1FD593ABF467E9B2666A804713AB1 Ref B: MNZ221060618029 Ref C: 2025-06-02T21:50:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:05 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzQyOC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12039,Microsoft.Compute/GetVMImageFromLocation30Min;73007" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "18e56227-359f-4131-b6fc-a18c559e1009" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2649ae04-386c-4555-9d18-edc4bb024df4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a762f6b0-870c-4f50-ad69-82f259c92c8f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215249Z:a762f6b0-870c-4f50-ad69-82f259c92c8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C96DFBF2DB1B4475B6B250371E9F543A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzUxNS4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "98e7c48d-12bc-4c9a-ac73-2a3d27cb178b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12937,Microsoft.Compute/GetVMImageFromLocation30Min;73934" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c4b290c9-3557-4ed0-b236-7bd9f43111e4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1777a562-4a62-4fdc-9d42-56ec7fc93043" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c6720303-01be-4547-85aa-b4a56e35005a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215006Z:c6720303-01be-4547-85aa-b4a56e35005a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B6FD1B9B3FED4835970DF30C84B6E0F6 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:50:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:06 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzUxNS4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12038,Microsoft.Compute/GetVMImageFromLocation30Min;73006" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "396739e6-246b-44d2-8d24-619a2caaa475" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4a2d8575-aca0-418d-b3c6-a2187dc3b9fa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "5610e687-9156-477d-b0e5-80f179d9f530" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215249Z:5610e687-9156-477d-b0e5-80f179d9f530" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6260875CB65740CB86BC3A5C0EAD076F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzYwNi4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "905477b9-6c5f-4492-a64a-d3595ea11dcd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12936,Microsoft.Compute/GetVMImageFromLocation30Min;73933" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "24deadb8-11f7-4157-a19e-2e283e7785bd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6d946c58-ec22-4a12-9a21-47cf3d5b9340" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3ccd76b6-139c-4c08-905f-f4fa77d81c1e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215006Z:3ccd76b6-139c-4c08-905f-f4fa77d81c1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 205437A7203E41D492E03D9C7D9AA6F6 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:50:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:06 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzYwNi4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12037,Microsoft.Compute/GetVMImageFromLocation30Min;73005" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b0ac9492-3560-41ea-81f1-063796db8433" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9c48f9fe-4443-4dd6-896e-e06d61c3ca43" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "55bfe111-3dcc-491b-bf54-4beae7edcd12" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215249Z:55bfe111-3dcc-491b-bf54-4beae7edcd12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AE2848EEC73842AE8B73ED4E29BE939E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzY5OS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "948b463c-6187-4090-941d-4cd7128f7321" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12935,Microsoft.Compute/GetVMImageFromLocation30Min;73932" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "92ffe9c2-6def-41d2-9c6f-7a0e39bc710b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/27f94baf-5d39-4f06-aa0a-de04cfb43769" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "abc12773-c1ff-4a31-b043-decef37f03f3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215007Z:abc12773-c1ff-4a31-b043-decef37f03f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F2C6DCFE2B824CC68623FCD7151336B8 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:50:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:06 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzY5OS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12036,Microsoft.Compute/GetVMImageFromLocation30Min;73004" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "896813e4-7dfe-436d-ab3b-6f5c8588d929" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a17db420-4b8a-460a-b195-3be714b812a8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "729ea051-bf5f-4eef-8ecf-d5fd911be1ac" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215250Z:729ea051-bf5f-4eef-8ecf-d5fd911be1ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 081BA12FE3CF455EA70CE7495554944D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzc4NS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "40542225-d13f-42c8-8df0-cfa07d325025" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12934,Microsoft.Compute/GetVMImageFromLocation30Min;73931" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "364d2c80-b9d8-4877-af88-3c6f75f85390" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f7c0c490-3ac6-4c28-bd66-aacc315d1467" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "03a2eae5-d9c3-4c78-8176-ffe0680b715e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215007Z:03a2eae5-d9c3-4c78-8176-ffe0680b715e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ABABF65C44CF45C697D220883D6DFA6F Ref B: MNZ221060608009 Ref C: 2025-06-02T21:50:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:06 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzc4NS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12035,Microsoft.Compute/GetVMImageFromLocation30Min;73003" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4266bc8a-bd5b-4b24-9ae5-959d9e8f22ee" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/da442fac-b25b-4197-a6b6-3725f46a31f1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4591fd6a-5259-4d48-8afb-2256c1566f80" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215250Z:4591fd6a-5259-4d48-8afb-2256c1566f80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 89166EBB6A41411B82B34920CA756627 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzg3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b3397b70-7c40-4ad0-abb9-5699144a7edc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12933,Microsoft.Compute/GetVMImageFromLocation30Min;73930" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "40f9adda-b2cd-405e-93d1-dc61a1299ec2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5ada3da0-def8-4f21-88aa-368fff65be69" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c2af4670-d682-4462-a303-2265c6f26f83" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215007Z:c2af4670-d682-4462-a303-2265c6f26f83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7AA3DA0F6F574315B88C4842067FD3D6 Ref B: MNZ221060608025 Ref C: 2025-06-02T21:50:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:07 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzg3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12034,Microsoft.Compute/GetVMImageFromLocation30Min;73002" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "dbec99ee-2928-4786-878a-b2613b58a7eb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1a0c416e-cf2b-490c-bd05-48299279667a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "944f6dbe-a3b7-449f-a701-f8106c9260d2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215250Z:944f6dbe-a3b7-449f-a701-f8106c9260d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5E816A129710415C823AB8D5DBD27D4F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzk3My4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8128f08e-5bf5-4cde-82ff-9315da3750eb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12932,Microsoft.Compute/GetVMImageFromLocation30Min;73929" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c201ae1b-097c-4704-bb58-e0d3acc2eda7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/66fe89f3-78c9-4e46-91ee-d35e1c81bbdd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "77674c0c-d89c-4cd1-a179-2ce244afd71b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215007Z:77674c0c-d89c-4cd1-a179-2ce244afd71b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 492786152C9545519454BBE0067D703E Ref B: MNZ221060609025 Ref C: 2025-06-02T21:50:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:06 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuNzk3My4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12033,Microsoft.Compute/GetVMImageFromLocation30Min;73001" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "50c22117-0db7-4c3a-ba98-8db0d2a319e2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f8be2540-4a11-497e-a85a-905e75ac6b67" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "80c276c8-b0c8-4e46-80a1-78e4631a60d9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215250Z:80c276c8-b0c8-4e46-80a1-78e4631a60d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3C81F684A90B431883F5CEAE4161C178 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuODA2Ni4yNTA1MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "06341c70-f0eb-4314-aee2-19463f2f4276" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12931,Microsoft.Compute/GetVMImageFromLocation30Min;73928" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "968159a6-1a20-4fc3-81df-2eec6bd77a30" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2d3a82e8-6b83-4d9e-8dfa-bb1f71f91f68" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7ab7576a-8946-4d89-a15f-8b369838e400" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215007Z:7ab7576a-8946-4d89-a15f-8b369838e400" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CFA980DDB00F4EB3AEF7465B313EF91A Ref B: MNZ221060608051 Ref C: 2025-06-02T21:50:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:07 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-gs/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTQzOTMuODA2Ni4yNTA1MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12032,Microsoft.Compute/GetVMImageFromLocation30Min;73000" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "606e0547-77ce-44f7-a0c7-09413015c13c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dae1598c-02da-43fc-a4ad-fbdee99ffea4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "d0900527-6b53-42fd-ae4e-57230388f20c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215250Z:d0900527-6b53-42fd-ae4e-57230388f20c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8623603773DE42369738E579AE319C77 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f48dbd6b-d77d-4665-953b-15dd48bc5526" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15982,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43976" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f65ab503-8b11-46aa-ab9b-57d8d9e00428" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6d4abf31-de65-4a53-ac93-03043fbf81d6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3e99775f-7aec-4669-8aea-4ded3826fcdb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215007Z:3e99775f-7aec-4669-8aea-4ded3826fcdb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6C70D8A4F4B249EB9C5652AC37A9CB32 Ref B: MNZ221060608053 Ref C: 2025-06-02T21:50:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:07 GMT" + ], + "Content-Length": [ + "5107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15896,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43875" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "271ccb9b-2c3b-4c02-8ca2-851c83e84c0c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7e96f934-3b0f-432f-9a5b-f1602e262cc7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2c9d1008-6b1e-4b28-acc1-ad13f5308c9f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215250Z:2c9d1008-6b1e-4b28-acc1-ad13f5308c9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 97BD4414C8554E948CB44CAE4508F6BD Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "5107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNjYxNC4yNDAxMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "07293310-8636-4dd3-8712-adb1d4a5792c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12930,Microsoft.Compute/GetVMImageFromLocation30Min;73927" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d31f9200-c2bf-42c4-8ecb-66ccd632342e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/89f38ef5-a8b8-496c-84c3-2805645526e6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6a5dc024-d11c-4e27-b054-0becb82e79b0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215008Z:6a5dc024-d11c-4e27-b054-0becb82e79b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 07CB382FC6E246E585508FAB56ABBC28 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:50:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:07 GMT" + ], + "Content-Length": [ + "1141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNjYxNC4yNDAxMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12031,Microsoft.Compute/GetVMImageFromLocation30Min;72999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b5290119-9a17-43cb-9766-bcce35b8d48d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7e81314f-3fe4-48e6-9498-285e976d458a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a6c67694-191d-4112-9868-14ee1534cfd6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215250Z:a6c67694-191d-4112-9868-14ee1534cfd6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 80ED0FF3AF7D40D78540CF129073FE1D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "1141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNjcwOS4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7f1a399d-a816-499f-8447-dd60c14c57d4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12929,Microsoft.Compute/GetVMImageFromLocation30Min;73926" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dd32fd69-6457-40e4-a36f-2acad6c12d07" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9438d9eb-bf1e-4cf2-857a-b4f584b69417" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6baae656-8120-4988-8b51-58c7a7fb8572" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215008Z:6baae656-8120-4988-8b51-58c7a7fb8572" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C7E86F0916664E7E91D2E6606193521D Ref B: MNZ221060610047 Ref C: 2025-06-02T21:50:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:07 GMT" + ], + "Content-Length": [ + "1141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNjcwOS4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12030,Microsoft.Compute/GetVMImageFromLocation30Min;72998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "09cceca7-dc97-4ded-80af-2260d75ab4a3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e2d014f0-4e1d-4943-8670-c6a3509afa85" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "c1ac0fb8-c5dc-432b-b6ca-47fd27fbb220" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215250Z:c1ac0fb8-c5dc-432b-b6ca-47fd27fbb220" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D7EE8D46024E44E49FFD256E32DC06B3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "1141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNjc5Ni4yNDAzMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fe7c68eb-9381-42e5-a600-723c26eb3f34" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12928,Microsoft.Compute/GetVMImageFromLocation30Min;73925" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0c3b9d6a-25f4-4d6d-9730-b74c653066ce" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4a890b81-e875-44a5-b3c6-b560724b5ebe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e67dc7fc-6027-418c-b25c-3f69e702b84b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215008Z:e67dc7fc-6027-418c-b25c-3f69e702b84b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7A22A62498044AA68D8D71E3A3E9BB62 Ref B: MNZ221060618009 Ref C: 2025-06-02T21:50:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:08 GMT" + ], + "Content-Length": [ + "1141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNjc5Ni4yNDAzMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12029,Microsoft.Compute/GetVMImageFromLocation30Min;72997" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c2f315c2-06f7-4d11-8704-76ca10b49e41" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dd64f6df-dd05-4d09-b6a8-42c2f6efbf7b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "31cbb4d9-0039-49cf-9037-5e47aa54e9d3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215250Z:31cbb4d9-0039-49cf-9037-5e47aa54e9d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B4DB2CF7203347ED8660E7ED11FDC157 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "1141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNjg5Ny4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0bbf166c-0fac-4f12-8a29-bc17b38b3f66" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12927,Microsoft.Compute/GetVMImageFromLocation30Min;73924" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "13d6e10f-bd2f-45a9-8748-0fbbe7195110" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/423124db-2a67-4dc8-918c-ac3f7b1b3b50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8694c583-3931-485b-b759-5d642c74340e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215008Z:8694c583-3931-485b-b759-5d642c74340e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 076F3B359CE5470095F505796AEAC8AD Ref B: MNZ221060619029 Ref C: 2025-06-02T21:50:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:08 GMT" + ], + "Content-Length": [ + "1060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNjg5Ny4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12028,Microsoft.Compute/GetVMImageFromLocation30Min;72996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "dce111be-8d0a-46bb-9e72-4dd6bd7d9e78" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/08d38075-4636-4ed4-8365-2f732f1594f8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a2faa25f-f3dd-4a31-8c90-e8c05c26230e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215250Z:a2faa25f-f3dd-4a31-8c90-e8c05c26230e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7C6147B8E7074A7692CF16FAD9010C09 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "1060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNjk4MS4yNDA1MDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a9828f1b-8f74-4938-9f1f-c0d53fb834fd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12926,Microsoft.Compute/GetVMImageFromLocation30Min;73923" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f2c54424-4ec2-4492-ab19-c02495063b3b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ba31b294-83c8-4854-b642-53ac1333d43d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6007f388-c91c-4026-a8ed-d54d9e6f45c9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215008Z:6007f388-c91c-4026-a8ed-d54d9e6f45c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5E1884156D1F405BBAF03DCD758124A5 Ref B: MNZ221060609035 Ref C: 2025-06-02T21:50:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:08 GMT" + ], + "Content-Length": [ + "1060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNjk4MS4yNDA1MDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12027,Microsoft.Compute/GetVMImageFromLocation30Min;72995" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "25c6b2bc-606b-4e35-a14e-e983d13060df" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bd8670b0-7848-4dc1-ad24-bac3b6697c8a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "970bea76-9d84-4610-8667-57545863bfeb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215250Z:970bea76-9d84-4610-8667-57545863bfeb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AEECD137DB71496C9D3F0278AD5D1DB5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:49 GMT" + ], + "Content-Length": [ + "1060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzA3MC4yNDA2MDg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cf8d26c6-1d82-4916-8ef4-f6a4bec0254f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12925,Microsoft.Compute/GetVMImageFromLocation30Min;73922" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "03ffdb84-bc3e-4441-b6dc-b2c6deb2e51f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c4acf0f5-9c8d-48dd-8380-233c67fa9f4a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e14b25b9-d92d-4997-8b5b-60213e33d49b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215008Z:e14b25b9-d92d-4997-8b5b-60213e33d49b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2E3E9D7030E0486BB8F8D7BD03F0EB0F Ref B: MNZ221060609019 Ref C: 2025-06-02T21:50:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:08 GMT" + ], + "Content-Length": [ + "1060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzA3MC4yNDA2MDg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12026,Microsoft.Compute/GetVMImageFromLocation30Min;72994" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "149d15da-819d-4eff-8bfd-c86992be222b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bebbdf41-9183-41c4-b522-f4d03757032c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "fc582933-022b-4a3f-a31a-deb8cc58a81d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215250Z:fc582933-022b-4a3f-a31a-deb8cc58a81d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D47F0B0322924EC8BF2D10D42FC67A07 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "1060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzE1OS4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "07910dc1-c9f7-4738-b2bf-0efd7d42d675" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12924,Microsoft.Compute/GetVMImageFromLocation30Min;73921" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4f21352c-b7bb-4077-92c1-d4c4b51457e9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/211820b0-95eb-4bca-8464-2ff4ca4511cd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3fc697de-1f6c-4bd3-b4f2-0204337edd94" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215009Z:3fc697de-1f6c-4bd3-b4f2-0204337edd94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3197585C8DA9471684A985678917FFDA Ref B: MNZ221060619021 Ref C: 2025-06-02T21:50:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:08 GMT" + ], + "Content-Length": [ + "1060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzE1OS4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12025,Microsoft.Compute/GetVMImageFromLocation30Min;72993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a365e641-ec0a-49a3-a13a-7c5c52bb5eff" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dc37d562-6042-4b8d-b17c-c9ea73ec8e11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a895eaab-13a8-47fc-b5fb-bf2f563bfc8f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215250Z:a895eaab-13a8-47fc-b5fb-bf2f563bfc8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6CB687B4F8C44E0988482398B4675606 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "1060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzI1OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "64f47e33-c2a0-4c59-b0cb-ba48c6dde884" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12923,Microsoft.Compute/GetVMImageFromLocation30Min;73920" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8995d63b-7dda-4dee-98c9-b04cd8919ed2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c99e8e25-75b7-4915-b74e-19f9f26a2ca3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7fbc55fe-abc8-4bd0-94e3-1d2d57d58154" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215009Z:7fbc55fe-abc8-4bd0-94e3-1d2d57d58154" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 027190BF8343440E8E782B261602FC86 Ref B: MNZ221060608049 Ref C: 2025-06-02T21:50:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:08 GMT" + ], + "Content-Length": [ + "1060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzI1OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12024,Microsoft.Compute/GetVMImageFromLocation30Min;72992" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d5e183c5-d061-47c2-a646-09f413ccc751" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e1319882-6cb2-4b4a-837b-33b5b978e3b7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "1d557dd7-995f-4795-865c-57ca3c722a2c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:1d557dd7-995f-4795-865c-57ca3c722a2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2060486C85AD46A0889F78D5461AA964 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "1060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzMzNi4yNDA4MzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eb15a108-4fc5-4b5d-b5df-afafd390fec8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12922,Microsoft.Compute/GetVMImageFromLocation30Min;73919" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "690831dd-9373-4844-86a1-c9b456d461ea" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c942b999-23b9-4689-b7eb-9a6183077357" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8c904b77-6caa-4d56-8e07-22a9261eb446" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215009Z:8c904b77-6caa-4d56-8e07-22a9261eb446" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2BAC4D6A98A243DC9079746FACBB74A3 Ref B: MNZ221060610017 Ref C: 2025-06-02T21:50:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:08 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzMzNi4yNDA4MzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12023,Microsoft.Compute/GetVMImageFromLocation30Min;72991" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "dce11f79-ec9f-42c6-a4df-d1564be57e5d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/321a6041-339d-4aa3-898d-8fa711cf8146" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "40c7720a-da0a-4f42-abaf-a4391ee086eb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:40c7720a-da0a-4f42-abaf-a4391ee086eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8FC5CC18C4274539BA57C56A72403368 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzUxNS4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b1e44129-43fb-4ff4-911f-b6cbb716312c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12921,Microsoft.Compute/GetVMImageFromLocation30Min;73918" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4940d381-80c3-423a-8ac7-3d9829ba79da" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d1c2474c-3353-4599-8017-972bc3b03108" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b627c2d8-411d-48af-9886-53f8efc63eee" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215009Z:b627c2d8-411d-48af-9886-53f8efc63eee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C72F2263DBE14DB8B9D6F0C10C04D99E Ref B: MNZ221060609039 Ref C: 2025-06-02T21:50:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:09 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzUxNS4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12022,Microsoft.Compute/GetVMImageFromLocation30Min;72990" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "076dcafc-5912-4b78-b945-cc16b10eb2e2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1f1f0701-a8ec-440e-b927-fbb063c218cb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9b0567b6-1961-43a7-a599-c7ef178887ad" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:9b0567b6-1961-43a7-a599-c7ef178887ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CF9872B299644BB98EC26441E994CA15 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzYwNi4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "18a09f9e-626e-48a1-a04a-8b316a5660bc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12920,Microsoft.Compute/GetVMImageFromLocation30Min;73917" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "35b103cf-4f61-441c-9678-5352b8e16539" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d8174794-ca38-412a-9e2c-c7a7ac03d40b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b9a54246-bb29-4048-9451-04e96fb1ddaf" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215009Z:b9a54246-bb29-4048-9451-04e96fb1ddaf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F2A540EDCA304F6B9516346B9600E57C Ref B: MNZ221060619019 Ref C: 2025-06-02T21:50:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:09 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzYwNi4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12021,Microsoft.Compute/GetVMImageFromLocation30Min;72989" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cb4ccc89-1e8a-45b9-9e0c-573d283da77a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8eb530f7-9e48-4ff4-a306-b3cb2464d83b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "65cf2a32-aa3a-4251-8c16-7f4e229a68c9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:65cf2a32-aa3a-4251-8c16-7f4e229a68c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 83E2A1EAFD0443669C5D7CF9FD496ADD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzY5OS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d7974284-c766-4f66-8e07-71d17f5a179e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12919,Microsoft.Compute/GetVMImageFromLocation30Min;73916" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "38a6eae5-2faa-467c-aebf-aa94473fd7be" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0322f499-1bbd-4750-b768-ab07e32676f2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "93314f9c-bfa1-4567-b608-25b881886c88" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215009Z:93314f9c-bfa1-4567-b608-25b881886c88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0AC2A3FE547D424D8C8A99FD49EF45B6 Ref B: MNZ221060609049 Ref C: 2025-06-02T21:50:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:08 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzY5OS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12020,Microsoft.Compute/GetVMImageFromLocation30Min;72988" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1af79afd-cedf-46d7-9db7-b89eab41faf6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8e2cf13b-af33-45d8-a332-769ebfd4aec6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "739b851b-4155-407b-9118-edb730996d50" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:739b851b-4155-407b-9118-edb730996d50" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2230EAE1B05849EAB09239A7F56EE5E4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzc4NS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f36f29c1-0dd9-496f-89bc-e8e9fec1dee6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12918,Microsoft.Compute/GetVMImageFromLocation30Min;73915" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6234a110-9e08-42b2-b307-d9456f72748a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c8eebe13-f4aa-4abe-b227-c62095c1b0a5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2240ed41-2e44-41a2-af14-08d87b2a722a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215010Z:2240ed41-2e44-41a2-af14-08d87b2a722a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EA9F35FCF38C4C1AA60A3BD6FEE33CF1 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:50:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:09 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzc4NS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12019,Microsoft.Compute/GetVMImageFromLocation30Min;72987" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "70bd5e7d-50c1-49a5-9277-6558f0b7bb3d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/44a8fbdc-2509-4215-9ebf-7fcc46fe218e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "380ce638-77a1-4d62-b854-9750514f0aeb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:380ce638-77a1-4d62-b854-9750514f0aeb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A8463D5779944C02B3E9D2FB5ECA975D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzg3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2b0a79ff-22e0-4448-a182-031d53b727ab" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12917,Microsoft.Compute/GetVMImageFromLocation30Min;73914" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1124bcfc-d40e-4961-ba3b-e6ee1272289e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/75f828bf-1df4-4305-bc72-48e719d2e4e5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c9fc687a-7d15-421c-8e68-3279e91610b6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215010Z:c9fc687a-7d15-421c-8e68-3279e91610b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0D64EA3D447D44CBAD9D798492B452B8 Ref B: MNZ221060608039 Ref C: 2025-06-02T21:50:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:10 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzg3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12018,Microsoft.Compute/GetVMImageFromLocation30Min;72986" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "be238029-6957-4cf1-b5d4-48153770ea99" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9c8e99cb-6a54-47a5-b700-71f18227a392" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "2de69643-d000-4f02-ae78-cd6a7e41275d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:2de69643-d000-4f02-ae78-cd6a7e41275d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 846773F5E9454AC490920970DA813924 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzk3My4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "be7c08bc-384e-4400-b8f9-245463a75cc3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12916,Microsoft.Compute/GetVMImageFromLocation30Min;73913" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c0a59331-9f91-445b-9ba3-2f203937cb4f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4249e5a9-f82c-4ff2-8518-6dff9f6d8591" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "10a5b98c-ddcb-4ae8-a937-3be1b6ef5c20" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215010Z:10a5b98c-ddcb-4ae8-a937-3be1b6ef5c20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D1090D3926354C9394314F029954C749 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:50:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:09 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuNzk3My4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12017,Microsoft.Compute/GetVMImageFromLocation30Min;72985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "049205b1-5a6f-4a8f-ba73-b2bbe1c983c6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5421810d-bc00-47fa-845a-5f76bea38e22" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "83dfb8e4-9e00-4350-90e5-1b4b82c7ccad" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:83dfb8e4-9e00-4350-90e5-1b4b82c7ccad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5C9FFEB14FE74152AB80F615060276EC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuODA2Ni4yNTA1MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6cce1a20-ba47-44fe-a89a-507161a0a203" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12915,Microsoft.Compute/GetVMImageFromLocation30Min;73912" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5779197a-3ec5-457b-b6c3-fe959f12f6fd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/637811a6-a19f-49f6-bd30-d1e34159177d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e942d6b2-8dc8-43e0-9c7f-bfde7833476f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215010Z:e942d6b2-8dc8-43e0-9c7f-bfde7833476f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 86CF1E46A3CC4FA4BAF1E75F83028976 Ref B: MNZ221060619047 Ref C: 2025-06-02T21:50:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:10 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUvdmVyc2lvbnMvMTQzOTMuODA2Ni4yNTA1MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12016,Microsoft.Compute/GetVMImageFromLocation30Min;72984" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0bb4ba55-e9b5-4102-8a9c-306151bdbe32" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/781ed7a9-6883-4e35-8c14-63007a942e36" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d8382edf-2a8a-4eca-b584-9ee4e9213430" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:d8382edf-2a8a-4eca-b584-9ee4e9213430" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 64A27F412E9E4EB888A9D3BDF3B50E49 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "1108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3e807ad1-29c6-4b40-a14e-44f5b7910e64" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43975" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3f62c5c9-1429-42ad-ae33-ea81721bca26" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f5d5eb56-2bef-47dd-b35f-d3c2a1d21286" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f7c02375-663d-4e03-af42-44bd66c13623" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215010Z:f7c02375-663d-4e03-af42-44bd66c13623" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 658FA86A5B6B4D1C93676A1F2C374814 Ref B: MNZ221060610029 Ref C: 2025-06-02T21:50:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:10 GMT" + ], + "Content-Length": [ + "5477" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15895,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43874" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "878457be-6464-4a28-b7a8-3e7dc0f5d015" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3dd7e94b-b57a-4e88-852b-10188be706b6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c118145a-2af1-448c-ac13-8abfe4449d13" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215251Z:c118145a-2af1-448c-ac13-8abfe4449d13" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ED2FC20C536A43C6BACBFD13FD3FD066 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "5477" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNjYxNC4yNDAxMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9135274b-6f1c-4e5a-a147-a3a7cb1f40ee" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12914,Microsoft.Compute/GetVMImageFromLocation30Min;73911" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0c8d9e87-032a-49cd-a8cc-0c2ee3a75878" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d110c781-a97c-4197-8432-8c52e045374d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "be5dc872-2bb6-4962-a41b-b4fdb5c0e756" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215010Z:be5dc872-2bb6-4962-a41b-b4fdb5c0e756" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 03896962D6B947BDB10E24204698B67E Ref B: MNZ221060618021 Ref C: 2025-06-02T21:50:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:10 GMT" + ], + "Content-Length": [ + "1255" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNjYxNC4yNDAxMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12015,Microsoft.Compute/GetVMImageFromLocation30Min;72983" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b8bcd3ba-8185-4ea8-b98a-097a619b00ba" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/43467398-8a36-4877-8be1-d0b51f178d13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "9b591812-2f81-4d28-835a-7fe5d25232e3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:9b591812-2f81-4d28-835a-7fe5d25232e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F7819344D7654D54AB6E140338198801 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "1255" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNjcwOS4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3d13ac49-f6da-4dd8-9baa-144fb0820d9c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12913,Microsoft.Compute/GetVMImageFromLocation30Min;73910" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "030ba523-dc9e-43fd-8d30-c863eb019501" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8ceeae3f-3c57-4e27-b524-789d61a8ea2f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e011d374-c29f-4e27-ab7a-505db96a94c7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215011Z:e011d374-c29f-4e27-ab7a-505db96a94c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B9EDF96249094C619B14630AC37C6F08 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:50:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:10 GMT" + ], + "Content-Length": [ + "1255" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNjcwOS4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12014,Microsoft.Compute/GetVMImageFromLocation30Min;72982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "af5cfa31-f946-4127-a3fc-4b98f55ddbe6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8635b998-ec3d-483e-b281-f66ed3ac67f8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f333aed1-d889-4b1a-b355-54efe2cdff04" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:f333aed1-d889-4b1a-b355-54efe2cdff04" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3D7C0B1559CB494FB8437B13D0986D7A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:50 GMT" + ], + "Content-Length": [ + "1255" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNjc5Ni4yNDAzMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8b736d5d-715a-4c69-90dd-f83144da9653" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12912,Microsoft.Compute/GetVMImageFromLocation30Min;73909" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8c26990e-d301-4b4e-9e5a-089e253d11e0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9de08939-f457-4935-8e76-7b879b0b5b1b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b8a344dd-5d32-4369-b87c-07f1ab5a8531" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215011Z:b8a344dd-5d32-4369-b87c-07f1ab5a8531" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 13793342669A4F8293D632CAFA5990D3 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:50:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:10 GMT" + ], + "Content-Length": [ + "1255" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNjc5Ni4yNDAzMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12013,Microsoft.Compute/GetVMImageFromLocation30Min;72981" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d242e8dd-6292-4de8-a8a8-e53ea119b9d2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c083a9fb-18fd-4c54-9806-ba948a298e42" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "930afb11-03db-4949-8044-33b9b174504a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:930afb11-03db-4949-8044-33b9b174504a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7C645AA0EE2B47589487812FA31BFF14 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1255" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNjg5Ny4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3c7fe622-7297-41c7-873a-7179dce3bf55" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12911,Microsoft.Compute/GetVMImageFromLocation30Min;73908" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e31dc71-37dc-47be-a2ec-f7435134119d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c6091e8c-089f-4515-acab-3d0546fb6327" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "1d653bd3-14f2-415e-83c2-3cff501641b9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215011Z:1d653bd3-14f2-415e-83c2-3cff501641b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 94C48FD63EC94CF4ABE45E8ED3CB32CA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:50:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:10 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNjg5Ny4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12012,Microsoft.Compute/GetVMImageFromLocation30Min;72980" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "16c0d335-a118-45e4-8ed5-1fb4a3b3b8bc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fb8037a0-a175-42f1-804b-077a6ee67e9b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "c82ce41c-9d04-4f3d-9367-176ee2a89ee4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:c82ce41c-9d04-4f3d-9367-176ee2a89ee4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 46BA933F36784EAF941AB92EA2DE1B2C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNjk4MS4yNDA1MDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "204e09a3-d5ab-44df-8ede-8d50d38c2514" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12910,Microsoft.Compute/GetVMImageFromLocation30Min;73907" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "38ad25d5-378c-4aa7-98d3-a6d938fd0792" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/54174916-7bbf-4816-92b7-42ba27a3e6f7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "ce7128a7-4044-4c9a-8ffd-9fff2412e0cf" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215011Z:ce7128a7-4044-4c9a-8ffd-9fff2412e0cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D7009CA938B04CFE8B0D663648B9AD79 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:50:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:10 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNjk4MS4yNDA1MDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12011,Microsoft.Compute/GetVMImageFromLocation30Min;72979" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3a5cffd5-9dea-4e7c-a7cb-7f9e9e71822a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3e8f854a-58e5-4d76-aee3-fd1c1e12e2b2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "a5c71d77-9425-47c2-8a50-80eac47bf361" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215251Z:a5c71d77-9425-47c2-8a50-80eac47bf361" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 51E6EBC2A0E9405B834690AAA4189F08 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzA3MC4yNDA2MDg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9d083a7e-c3f0-4dd5-919d-1ad0d2f8eded" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12909,Microsoft.Compute/GetVMImageFromLocation30Min;73906" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5c52a771-eea8-45bc-bdaf-246d78521b54" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/18101ef3-1bab-4e02-9003-4b09bd17aad1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8db765ef-fb3d-4021-88fc-d52a904d3edc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215011Z:8db765ef-fb3d-4021-88fc-d52a904d3edc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 156470187A3F4BEE8B2AD553391F3B32 Ref B: MNZ221060619025 Ref C: 2025-06-02T21:50:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:11 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzA3MC4yNDA2MDg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12010,Microsoft.Compute/GetVMImageFromLocation30Min;72978" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "536f6fd2-c657-4021-bead-ea8bbbaf0cd2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5a650ab2-e84f-40f7-b05e-e6e5e413afbf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "ce41fa1a-6d0c-4c2d-95b0-0ec670dc7b30" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:ce41fa1a-6d0c-4c2d-95b0-0ec670dc7b30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D1270C3398D341BDB3B6BE36DD477B72 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzE1OS4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "17537d24-3389-44aa-8e12-bffa0e462713" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12908,Microsoft.Compute/GetVMImageFromLocation30Min;73905" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6ef5d4f2-3652-4e8e-b70c-97c81d1b1abb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c58b6fe0-be0c-48fe-a969-6eff4f1a8e8e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5910749b-3754-4a89-914f-20e844604855" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215011Z:5910749b-3754-4a89-914f-20e844604855" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 75619F9B0FC04883AE4D17A78C43F9D4 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:50:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:11 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzE1OS4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12009,Microsoft.Compute/GetVMImageFromLocation30Min;72977" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d1e16d8d-b22c-4d62-bb7d-ab2b356afbda" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7a6aafa3-7ade-4ef5-b914-3c486103aad6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "7b5934ef-ff24-407a-9e64-3919145b7b3b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:7b5934ef-ff24-407a-9e64-3919145b7b3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2EACC465FCD34AAC91B0784A9687444F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzI1OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "04beffc8-c7be-4023-ad4a-c1b95b16bbc0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12907,Microsoft.Compute/GetVMImageFromLocation30Min;73904" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ef940917-3b3b-41f7-a1b4-fbf1b84d3b00" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4ab235b7-29a7-4cf6-9073-e30965da964d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "baf6643d-248c-4542-bd47-6cc7716f232a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215012Z:baf6643d-248c-4542-bd47-6cc7716f232a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41554C768D804A98971B920C816C2077 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:50:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:11 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzI1OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12008,Microsoft.Compute/GetVMImageFromLocation30Min;72976" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2d613b6d-55dc-4142-9952-f321ad862c0f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/48cd0201-ed67-4154-8d49-4283d2d24d3b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "898ed228-cf04-49f2-8ea1-4e8579edf15a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:898ed228-cf04-49f2-8ea1-4e8579edf15a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 80FC287DFEA84EBE98452071184A22E9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzMzNi4yNDA4MzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3ef61c03-5f14-4879-adfc-37ed00f79559" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12906,Microsoft.Compute/GetVMImageFromLocation30Min;73903" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "70572eac-1e75-4a7d-8802-33e8e2aec659" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4d726488-6560-4742-8990-5b1e4bb9018c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f179d4ee-7140-493c-9d1e-22b272e5d63d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215012Z:f179d4ee-7140-493c-9d1e-22b272e5d63d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 007E74462F7F4448BC479B5E1706D143 Ref B: MNZ221060610007 Ref C: 2025-06-02T21:50:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:12 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzMzNi4yNDA4MzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12007,Microsoft.Compute/GetVMImageFromLocation30Min;72975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0b24974f-ca26-4a3c-bd45-23532d88be78" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0c8a8ea7-e9e0-413a-9261-4e0599b47283" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "ca30bc6a-8c89-4b87-aac1-b8f2c4b50388" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:ca30bc6a-8c89-4b87-aac1-b8f2c4b50388" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1F3974E060274BAD8F3D9DF05DDFFE3A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzQyOC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3c0dcea3-f436-4118-8539-5757efa21584" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12905,Microsoft.Compute/GetVMImageFromLocation30Min;73902" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "db35814a-4d75-436c-a17a-dff3630f0b08" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/83762894-fca2-4450-a943-39872e2c5e84" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c26ab4aa-1a23-4276-adda-b32fb296f2f0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215012Z:c26ab4aa-1a23-4276-adda-b32fb296f2f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5A1E7D5BE91149F581426ECEAF9E4860 Ref B: MNZ221060610009 Ref C: 2025-06-02T21:50:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:11 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzQyOC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12006,Microsoft.Compute/GetVMImageFromLocation30Min;72974" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "53bbad8d-c463-4610-921a-11febf7fc788" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2ecd2287-6ed2-4ffc-b87e-2d6093b9ebec" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "70c8e8e8-6506-4521-8a01-e2e085a1e38b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:70c8e8e8-6506-4521-8a01-e2e085a1e38b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2AE3426496C94DAF9893A967FA66B85C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzUxNS4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "99a17a09-1eb8-45b3-a422-d7cfa2a13488" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12904,Microsoft.Compute/GetVMImageFromLocation30Min;73901" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "53a51326-c955-45bc-9360-4b0578475800" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d4ed0c52-18a2-4800-976c-1e0ec646ae72" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "956a42f5-352b-4157-9e42-dc36ada8d160" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215012Z:956a42f5-352b-4157-9e42-dc36ada8d160" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EB086DBCB95B440982CA09B9F309B333 Ref B: MNZ221060608031 Ref C: 2025-06-02T21:50:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:12 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzUxNS4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12005,Microsoft.Compute/GetVMImageFromLocation30Min;72973" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "14e6b771-b9a3-48eb-a5ec-aff0bf289143" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1849e26b-9a65-4ca0-b2d4-3bc360c83735" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "72e80c75-14d4-4328-b7bd-90a50ea600ff" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:72e80c75-14d4-4328-b7bd-90a50ea600ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 54958C640B404A0980C24ABBCE4AC7C3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzYwNi4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7be11fb1-cbfa-47ab-9b19-dbe2d52cb762" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12903,Microsoft.Compute/GetVMImageFromLocation30Min;73900" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f012b297-a942-4264-b59c-fc042badb69b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0841a431-0c13-4e0c-ac8f-6292fbdf09b0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4058430b-0152-46dd-bdc9-4eb24ea0e1b8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215013Z:4058430b-0152-46dd-bdc9-4eb24ea0e1b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4CDDF8DF73EF473A845809A5E8BA32CC Ref B: MNZ221060609039 Ref C: 2025-06-02T21:50:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:12 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzYwNi4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12004,Microsoft.Compute/GetVMImageFromLocation30Min;72972" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8730c30d-5e1a-42b9-bca8-3f2daeaed1dd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3ea9a04f-d974-4ed4-bc07-92393b1b38e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "f222a38a-25c9-414c-acb2-4cc4375ee52d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:f222a38a-25c9-414c-acb2-4cc4375ee52d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3E7BAA4BDB1E45B0ACA4DF9E6C65D763 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzY5OS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d89dfe97-ab9d-42a8-bbea-b7d3ada01f31" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12902,Microsoft.Compute/GetVMImageFromLocation30Min;73899" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0251ae65-6499-4f45-873c-d4d1b4d05621" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/176d1d6d-7560-44d1-ad44-4f1cc79927dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "00b33798-56be-46c5-99ae-968a2a5b4481" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215013Z:00b33798-56be-46c5-99ae-968a2a5b4481" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D146E00A803C4E49AEEF3ACFE0E087AD Ref B: MNZ221060619017 Ref C: 2025-06-02T21:50:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:12 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzY5OS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12003,Microsoft.Compute/GetVMImageFromLocation30Min;72971" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "73fe75e2-7449-4874-82c7-3126e50f28d5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/44e75b19-5efc-4fcf-afe5-de40c6ec3ca1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "547c768f-5c0f-43a8-9dae-c6e3febe4881" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:547c768f-5c0f-43a8-9dae-c6e3febe4881" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8E91C3F8CC8745EF97B4C731B38C5959 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzc4NS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3201ff24-3a56-49e8-bfc5-8ce8ee7887df" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12901,Microsoft.Compute/GetVMImageFromLocation30Min;73898" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a57aef6f-34be-4241-9d04-e21bffa03dba" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dfe2d416-d728-40e3-ac0f-4fcc99dd160e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "258bb5de-843e-4af7-8827-3562b5fd0d64" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215014Z:258bb5de-843e-4af7-8827-3562b5fd0d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1183040A46E1448AA75E221767CBBF3D Ref B: MNZ221060608035 Ref C: 2025-06-02T21:50:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:14 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzc4NS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12002,Microsoft.Compute/GetVMImageFromLocation30Min;72970" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6b988f14-5308-4021-ba1d-0d8181fc7657" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d3713ce5-1048-4e7c-bb57-018674bb630a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "8e3b80cf-2c7a-4476-8646-520f71251fe0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:8e3b80cf-2c7a-4476-8646-520f71251fe0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 213D043B069E44E5A797F8E88CE58103 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzg3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1a18ff96-fcff-4dea-b4c5-fe8782bf7800" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12900,Microsoft.Compute/GetVMImageFromLocation30Min;73897" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6def8a3d-798e-47a6-af16-b8221e20c1ef" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/41e9a9f2-5c6c-4078-9945-3db89b372374" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5197b231-14fa-472b-a9b9-bfb6c049091d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215014Z:5197b231-14fa-472b-a9b9-bfb6c049091d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 17479C17BDA041C6BB8E4420F18895BC Ref B: MNZ221060618051 Ref C: 2025-06-02T21:50:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:14 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzg3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12001,Microsoft.Compute/GetVMImageFromLocation30Min;72969" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "44c7bb18-ccde-4736-b3bd-143d552265cb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c215a7d5-6aba-4e9e-8fea-dbad7388675f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "df9f5632-4144-4561-bf27-241cc2652771" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:df9f5632-4144-4561-bf27-241cc2652771" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0A7E8DA27A6B4073909D6E973B68DF7F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzk3My4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "db0521b6-7781-4b9d-bfdd-3dc9280af607" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12899,Microsoft.Compute/GetVMImageFromLocation30Min;73896" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dac06ea2-ea87-4127-8892-b8971a64ff48" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/43555da0-e18b-44b1-822d-9771c3123911" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5c86ee02-4687-4318-9488-eb192b47e842" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215014Z:5c86ee02-4687-4318-9488-eb192b47e842" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B3482173A1B4C6DAAD55F712D412C87 Ref B: MNZ221060609011 Ref C: 2025-06-02T21:50:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:14 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuNzk3My4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12000,Microsoft.Compute/GetVMImageFromLocation30Min;72968" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0c29806e-db21-42e2-a96f-e92c6ae38e65" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/02518207-a2b9-4798-a2eb-337443756e6a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4dfcd4b0-9aed-496a-b6ed-0d6842b7c41f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:4dfcd4b0-9aed-496a-b6ed-0d6842b7c41f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2CF0B112D7FB4AFE8A3F73C80CA286C3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuODA2Ni4yNTA1MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "adb20236-7961-4984-9d4e-0aad84e7d887" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12898,Microsoft.Compute/GetVMImageFromLocation30Min;73895" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a175d36c-b4a1-4a6f-b71d-eff8addfe210" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/542dbff2-a1e6-4f6d-bb12-e0e420b3a209" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "80f6bc0c-21fe-483e-93e7-4820c105f88d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215014Z:80f6bc0c-21fe-483e-93e7-4820c105f88d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1FC3170AB13D4A1E9E0FF768FB0512E0 Ref B: MNZ221060618037 Ref C: 2025-06-02T21:50:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:14 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-g2/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtZzIvdmVyc2lvbnMvMTQzOTMuODA2Ni4yNTA1MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11999,Microsoft.Compute/GetVMImageFromLocation30Min;72967" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "341e8ff7-f92a-4dd3-aff4-cbdc39244e36" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f41bdb1e-ad12-4b58-bea3-e7edf072ebeb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "da7880a7-3042-4b13-91c0-c4c3a7fc79aa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:da7880a7-3042-4b13-91c0-c4c3a7fc79aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EC74A480C46D41EA99A5159FF551B49A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:51 GMT" + ], + "Content-Length": [ + "1222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bc446127-56a6-4504-b14f-252656401f46" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15980,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43974" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3cb6f2ce-4489-4303-b93f-b12a1aa96a4a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dfc239ce-b1e5-4e0f-9589-987fdd99bb88" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6d088a26-8eb6-4c5a-90bd-8796bd24ebe8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215014Z:6d088a26-8eb6-4c5a-90bd-8796bd24ebe8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AA0841B81864425E8C88123678BEED80 Ref B: MNZ221060608021 Ref C: 2025-06-02T21:50:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:14 GMT" + ], + "Content-Length": [ + "5596" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15894,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43873" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1aa07a9a-f915-44d6-8c11-c05175de93d9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c8b218e5-2bc4-4074-9165-485ee2437b1c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4fdf977e-07ac-4282-a984-2599ef6f91ff" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215252Z:4fdf977e-07ac-4282-a984-2599ef6f91ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ED167CA8DB0F4C48AC579599FF1D9BB8 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "5596" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY2MTQuMjQwMTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e86640fb-cbc2-4664-acf7-0d5b2bf62305" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12897,Microsoft.Compute/GetVMImageFromLocation30Min;73894" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a0956275-2457-4f51-8d9e-d9d3d50efd02" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cdfc78c5-0972-413d-b21f-b2246bdcb828" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c4d885c9-627f-4d30-9a50-125ae01c3c80" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215015Z:c4d885c9-627f-4d30-9a50-125ae01c3c80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6ACC7FABA3574634A1126FC3CEDCA1BF Ref B: MNZ221060610039 Ref C: 2025-06-02T21:50:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:14 GMT" + ], + "Content-Length": [ + "1150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY2MTQuMjQwMTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11998,Microsoft.Compute/GetVMImageFromLocation30Min;72966" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a2e0f7e4-355e-4381-8213-8427969fb861" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e809d1a9-8ed5-4839-9e98-813e3cfdc33a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "6ccda8ad-ff62-4cd3-a6da-82806b54e158" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:6ccda8ad-ff62-4cd3-a6da-82806b54e158" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FEC0BA681DA04D1A88A6191D693BA970 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "1150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY3MDkuMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c2c807d8-fda8-4b9e-bd6b-437be8a3b01a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12896,Microsoft.Compute/GetVMImageFromLocation30Min;73893" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d3bf363d-1381-4c19-b8ae-557b3b34bdb9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b79105f6-b24b-4485-82b8-d189c6828989" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "73abd7a3-c17f-4c87-89e4-b45ac7008c91" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215015Z:73abd7a3-c17f-4c87-89e4-b45ac7008c91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7C53C12EF5444C0A8C1F65216A77B21B Ref B: MNZ221060610007 Ref C: 2025-06-02T21:50:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:15 GMT" + ], + "Content-Length": [ + "1150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY3MDkuMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11997,Microsoft.Compute/GetVMImageFromLocation30Min;72965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "41668231-286e-42dd-b08c-c8a5ad7adb6c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3bedd7b5-4c67-48ca-8d3e-e52bbf7830f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "7cf8eb91-1c57-4cfd-a6ec-947bd9fb5e07" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215252Z:7cf8eb91-1c57-4cfd-a6ec-947bd9fb5e07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 49EBAA7D5411446E82E1478687394277 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "1150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY3OTYuMjQwMzAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a25fb550-c9af-4973-bc48-be9db6dabe87" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12895,Microsoft.Compute/GetVMImageFromLocation30Min;73892" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1769a549-00fd-4f7a-a9e2-6d2850443e80" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9e3b96ff-7b68-40a9-a061-9313d38ffc55" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "c4e3a40a-0348-4f6d-ae8c-c9c301736c68" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215015Z:c4e3a40a-0348-4f6d-ae8c-c9c301736c68" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 59829958A6434F23963C96414556D8AE Ref B: MNZ221060609031 Ref C: 2025-06-02T21:50:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:15 GMT" + ], + "Content-Length": [ + "1150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY3OTYuMjQwMzAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11996,Microsoft.Compute/GetVMImageFromLocation30Min;72964" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3d647e70-ede9-421c-a546-bf594df94a40" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4dcc8f97-83f6-4bba-962d-0afcd3424d62" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d4d0fd3d-7596-4eba-94ec-71c0bd0062c7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:d4d0fd3d-7596-4eba-94ec-71c0bd0062c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D308A47F7A2D471AA2A55F208A7E7780 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "1150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY4OTcuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b9f9390f-8320-4e73-bd11-bec30ede3e34" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12894,Microsoft.Compute/GetVMImageFromLocation30Min;73891" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "45662720-3a83-401d-992c-2434a996bf70" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fea3c7ba-f459-4ba5-8b7d-28b505dc15e8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "53751e96-7d52-459a-bc47-96e2e0cd1d71" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215015Z:53751e96-7d52-459a-bc47-96e2e0cd1d71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A341AC2BE8FC4318BF356CDA5C5DE989 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:50:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:15 GMT" + ], + "Content-Length": [ + "1069" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY4OTcuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11995,Microsoft.Compute/GetVMImageFromLocation30Min;72963" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a7536585-8a88-446a-8f89-c224523f93a9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/12ed8565-8f57-4d80-8994-eb81010a5987" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "0464cead-2faa-4098-8a48-cdcb426657c3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:0464cead-2faa-4098-8a48-cdcb426657c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7C17D107D1C24433863B948973F8F301 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "1069" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY5ODEuMjQwNTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6866f3c4-fb05-49a6-98b9-9a94ca0fe4b0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12893,Microsoft.Compute/GetVMImageFromLocation30Min;73890" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ae43c30a-5be8-4378-9f4f-e67d04103fc2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9e701f2b-5423-4909-af0e-5d3ad1724a37" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5bcd44bb-30ef-4dda-9896-2034b3a7bd15" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215016Z:5bcd44bb-30ef-4dda-9896-2034b3a7bd15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 562A2C1FA19745F884B934BFEFFD821B Ref B: MNZ221060609039 Ref C: 2025-06-02T21:50:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:15 GMT" + ], + "Content-Length": [ + "1069" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY5ODEuMjQwNTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11994,Microsoft.Compute/GetVMImageFromLocation30Min;72962" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ad110f5d-38fe-4ea6-9c24-6b8c2b3db4a4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/13dcc4c1-1d44-4c3a-ab71-4d20a443ebdc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "06a65dfb-c149-4f61-889b-0bb33fa1941e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:06a65dfb-c149-4f61-889b-0bb33fa1941e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4E0031BB9CA64EA7A0B8C1F9A0E52F65 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "1069" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjcwNzAuMjQwNjA4P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "feea2213-73fb-4658-b4b2-a374ec83cb4b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12892,Microsoft.Compute/GetVMImageFromLocation30Min;73889" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6a9625c5-a1fb-4156-868b-e53587c67074" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a1930cf7-1818-466a-a344-e6606e46fe0d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "bcbb8846-7f30-48cd-b80a-227708dfbc1f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215016Z:bcbb8846-7f30-48cd-b80a-227708dfbc1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0CE21DF3ECFD40EB881AA1F120003E07 Ref B: MNZ221060609037 Ref C: 2025-06-02T21:50:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:15 GMT" + ], + "Content-Length": [ + "1069" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjcwNzAuMjQwNjA4P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11993,Microsoft.Compute/GetVMImageFromLocation30Min;72961" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3cb7427f-ec3b-46d0-b4eb-18508a9031c6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ee501dd7-8940-425c-99a8-74e30a8bac95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "f05da308-224f-4cdf-9d03-64fbc6d4e772" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:f05da308-224f-4cdf-9d03-64fbc6d4e772" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 84FF4DFEFE1C48BEB7723C071A9E74FB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "1069" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjcxNTkuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3e2fb901-0bf4-45d9-aaa2-9acc100906b5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12891,Microsoft.Compute/GetVMImageFromLocation30Min;73888" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8a519ae3-ad2e-4d1d-9c05-c05fcd4fd9c1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a400eb7e-c897-4c79-90a9-8539d7b8ca0f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d35a276b-9a80-4273-aac4-7797a588d02e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215016Z:d35a276b-9a80-4273-aac4-7797a588d02e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 22D58DBDA4F1443D9901B5EF8C4B22B8 Ref B: MNZ221060618029 Ref C: 2025-06-02T21:50:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:15 GMT" + ], + "Content-Length": [ + "1069" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjcxNTkuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11992,Microsoft.Compute/GetVMImageFromLocation30Min;72960" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ea767b1d-2335-48ec-9f47-04c49283b5a6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4edbdcef-327b-4e77-ab59-a214339eea95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a34be640-01f1-403f-994a-ecc5ac7d5579" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:a34be640-01f1-403f-994a-ecc5ac7d5579" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B31EEDAF409943D5B8FA69D3A1567B82 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "1069" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjcyNTkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c531aebe-5f51-4e24-bfeb-1fb83ee7530e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12890,Microsoft.Compute/GetVMImageFromLocation30Min;73887" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "47d955f9-a648-47b6-b9bb-c8b6d074101a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3cbe5013-d122-4e15-99df-58f140de66d6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b15e8881-9242-415b-96d0-c864244c7435" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215016Z:b15e8881-9242-415b-96d0-c864244c7435" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 38F1B347A3224B5BAAC1003CB33682AC Ref B: MNZ221060619051 Ref C: 2025-06-02T21:50:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:16 GMT" + ], + "Content-Length": [ + "1069" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjcyNTkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11991,Microsoft.Compute/GetVMImageFromLocation30Min;72959" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "43b11663-a9e2-4a24-861d-5b5367a342aa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cda1ea48-7d61-4b97-9dc2-0675dc2075b6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "b53b3892-fa11-4b93-8c00-903ed1eb2d5f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:b53b3892-fa11-4b93-8c00-903ed1eb2d5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9020B55673124E7AA5440C14619F7318 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "1069" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjczMzYuMjQwODMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "15a0a3f9-d4de-4632-b3f9-b96fa01f2476" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12889,Microsoft.Compute/GetVMImageFromLocation30Min;73886" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "da5f9b5a-2a0e-4344-b01a-09bbd97ddc1c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/869f8abe-2e5b-470c-ab6b-985281b5bb36" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a7ad6f88-74c5-41b4-8877-c63f4870e7dd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215016Z:a7ad6f88-74c5-41b4-8877-c63f4870e7dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5757D1207102410CB820AD69E058E13A Ref B: MNZ221060619047 Ref C: 2025-06-02T21:50:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:16 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjczMzYuMjQwODMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11990,Microsoft.Compute/GetVMImageFromLocation30Min;72958" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "16884760-bc83-4d05-804d-7188cfa41937" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/73cdf004-cd8e-4ab0-b6b2-b6c26bcfe176" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c3914fc4-21e7-4e8e-a8e2-36b7243fcd48" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:c3914fc4-21e7-4e8e-a8e2-36b7243fcd48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8D297071246943C1B9F0E80CD9F2A44D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc0MjguMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0d4dfad7-c545-401d-b095-2055cd575414" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12888,Microsoft.Compute/GetVMImageFromLocation30Min;73885" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f8f22ce8-3983-4c96-81de-bd2f7a6f1a92" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0dcc0581-c370-4b40-9f59-efd1f5298dd5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "685f5cb3-9cf5-44c7-877d-1d676fbe2824" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215016Z:685f5cb3-9cf5-44c7-877d-1d676fbe2824" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BEE9A8E47B0944DE84C6A153CBA536E3 Ref B: MNZ221060618029 Ref C: 2025-06-02T21:50:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:15 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc0MjguMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11989,Microsoft.Compute/GetVMImageFromLocation30Min;72957" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a235bc08-0f64-41f6-822a-9ea7ca7ce3f5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ccfa5d6e-352c-4c7f-9a4e-cce4ba744f8c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "6ad756c7-2781-4777-bf9b-189b440c0579" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:6ad756c7-2781-4777-bf9b-189b440c0579" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9D65EAC101D24798A031011F900BC028 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc1MTUuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3466f18f-f447-44b9-a6ec-9c1d568e7f3a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12887,Microsoft.Compute/GetVMImageFromLocation30Min;73884" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5882eb0e-df6c-4d70-993f-dcc97b4da76e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4ba090a7-06ce-47ac-b203-8cd78888d6bf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "83f3be4b-1cc9-47d1-8af7-9fd8f040f2c5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215016Z:83f3be4b-1cc9-47d1-8af7-9fd8f040f2c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C6919138B0F47D1AB97B6EC7F01B0F7 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:50:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:16 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc1MTUuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11988,Microsoft.Compute/GetVMImageFromLocation30Min;72956" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "25ebca24-9858-4a10-889c-e6def4f01985" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ae4aaed6-a876-4b19-82c6-a5b272e09418" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "9936009d-8f73-4148-86b8-40ab95fad1bf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:9936009d-8f73-4148-86b8-40ab95fad1bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0AE8B18B8375421D8E7E38475430E859 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc2MDYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "701653b1-d951-469a-8cc6-b292b04aace5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12886,Microsoft.Compute/GetVMImageFromLocation30Min;73883" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "32894c64-75eb-4704-a771-88915c4ec3c7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8b95d44a-23cf-45a9-aabb-5f7cb0407387" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6ff9dc99-7251-4d52-8df0-ab9d48fecbb8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215016Z:6ff9dc99-7251-4d52-8df0-ab9d48fecbb8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F72DB67624FE41B0A0860B8A0EBC2E46 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:50:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:15 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc2MDYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11987,Microsoft.Compute/GetVMImageFromLocation30Min;72955" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6da2f0ff-c735-499f-9370-c9ecc29a6305" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5f660226-f460-4bc3-91e2-cdcab589921f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "5b6e3826-c895-4bc6-9fba-d40232b88405" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:5b6e3826-c895-4bc6-9fba-d40232b88405" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BA5201BEBC3F4FDABD0691A76B9DA247 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc2OTkuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9b2c281a-f9e2-44ce-8ba0-8a3d0e3b86cc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12885,Microsoft.Compute/GetVMImageFromLocation30Min;73882" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ce32b91e-4b94-4fa8-aece-9420ab3dcde6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/70d857f7-1b2b-4b4c-a750-8ae68bb045d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b91d1337-f3ec-46d1-9e7f-bb0219d1876a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215016Z:b91d1337-f3ec-46d1-9e7f-bb0219d1876a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2438A3E75F4E4B6B88D9ADDDD3341D5B Ref B: MNZ221060610019 Ref C: 2025-06-02T21:50:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:16 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc2OTkuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11986,Microsoft.Compute/GetVMImageFromLocation30Min;72954" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8db4a5c6-f870-43b2-84a1-d3e422bcefef" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2099aa99-958e-4a9a-b4fc-d002911f440c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "02607e97-bc58-4463-ba5c-ad4c72d448af" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:02607e97-bc58-4463-ba5c-ad4c72d448af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5518599C68EE42EDA6BFB6F9B8316FC8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:52 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc3ODUuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "928fb588-cb8a-484e-bc0f-ae6e6e3ca47b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12884,Microsoft.Compute/GetVMImageFromLocation30Min;73881" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "38814937-bb17-4d0a-b23a-997b86a6ae90" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5665e950-dd2e-439d-8382-db5c3933ce17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a42c86ce-9d77-47d4-a018-138b7481a142" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215017Z:a42c86ce-9d77-47d4-a018-138b7481a142" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4775776F337E4F82A3493249E47C384E Ref B: MNZ221060618035 Ref C: 2025-06-02T21:50:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:17 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc3ODUuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11985,Microsoft.Compute/GetVMImageFromLocation30Min;72953" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d48229f0-4fe0-4025-a4fc-dedd6a85d79d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c713f408-777b-4f66-a00e-a0178930b6e0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "c87b032d-f74a-40e5-a2d0-bd53f8911c14" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:c87b032d-f74a-40e5-a2d0-bd53f8911c14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F06A80AA2094D5ABC73952C3FAA5C99 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc4NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dc92c6cb-141b-4452-8f17-2cd94edb0c8b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12883,Microsoft.Compute/GetVMImageFromLocation30Min;73880" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ee07523d-1d52-46dd-b884-c8a011d3e4b2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a11d61e8-fa0e-46b8-9034-cdb89ad13c3f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "074b03ac-1996-423d-9289-ff34de6d99bc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215017Z:074b03ac-1996-423d-9289-ff34de6d99bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 32B867E69A0542509B186E19D7921729 Ref B: MNZ221060608039 Ref C: 2025-06-02T21:50:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:17 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc4NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11984,Microsoft.Compute/GetVMImageFromLocation30Min;72952" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2abbb172-e0ca-4213-9c5b-10c20293e43a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c852c5c3-e95f-40ab-887d-fea9ad36bdb0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "85672231-fa5b-4513-ad9f-fa8a1a6d47cd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:85672231-fa5b-4513-ad9f-fa8a1a6d47cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 894D675866AA4E52A35E9B63A0D47470 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc5NzMuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "af8194a4-e6e1-4377-a7f8-f2c2db1bcdad" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12882,Microsoft.Compute/GetVMImageFromLocation30Min;73879" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "166232b8-d735-4f48-b780-af8f5e87e796" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/26a38872-d94f-4f7f-84f5-1304f4ba531c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e82e6d2f-dad0-4fac-ab0e-a2407f69903c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215017Z:e82e6d2f-dad0-4fac-ab0e-a2407f69903c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 77716CB2B6E247199C016295CC48F903 Ref B: MNZ221060608039 Ref C: 2025-06-02T21:50:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:17 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc5NzMuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11983,Microsoft.Compute/GetVMImageFromLocation30Min;72951" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3711581c-5943-46fe-98dc-5083124d2217" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0f2f1cbc-2df6-40b4-8a5e-58e80921eec1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "b50d1c24-43fd-4ab6-8c2b-891afe87fbdb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:b50d1c24-43fd-4ab6-8c2b-891afe87fbdb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 12C2C503111C48FAA4C765B7D41F6F62 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjgwNjYuMjUwNTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c47d328f-0bd1-4993-89fd-ffd64d1b4536" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12881,Microsoft.Compute/GetVMImageFromLocation30Min;73878" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d6134f52-cc03-43e7-b65c-f66343f85d68" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/98d2f127-81e9-4d05-8ceb-59ef23cf6bc9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c58ad435-ac07-4cf6-bfe6-109339fdd501" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215017Z:c58ad435-ac07-4cf6-bfe6-109339fdd501" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 04A60DEBADD54EE78CF8A090749C0019 Ref B: MNZ221060608033 Ref C: 2025-06-02T21:50:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:16 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-Server-Core-smalldisk/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItU2VydmVyLUNvcmUtc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjgwNjYuMjUwNTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11982,Microsoft.Compute/GetVMImageFromLocation30Min;72950" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bdd0d1be-bceb-42d6-a403-e4b321f1a9e6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0be5dee7-292d-46ac-9b0a-4e87cc87a2e8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bb77ad31-26a1-4a3b-b809-eff571efe9a8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215253Z:bb77ad31-26a1-4a3b-b809-eff571efe9a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E48258492775468F90D1D10C02B0A715 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5b35113c-8464-4907-9524-7e6b583f7729" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15979,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43973" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "71e931c3-09a0-42eb-902f-9b54d1fdeda8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6f17de61-8d46-4424-8760-2e6a4b0a595f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "11ce98ff-8b6d-4aef-9d00-8bad97c5e055" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215017Z:11ce98ff-8b6d-4aef-9d00-8bad97c5e055" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 81E97BF2B64A4710B67C3676A29554D5 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:50:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:16 GMT" + ], + "Content-Length": [ + "5315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15893,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43872" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3d98dcaa-5a81-4afa-9340-5e3bd9919c2e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2cc7396b-1999-4732-aece-34f0dc86e13d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "69bcc989-a660-4297-bede-79b56029f67f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215253Z:69bcc989-a660-4297-bede-79b56029f67f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4A6A9715DA734C9390B8BBF02176BDD6 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "5315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY2MTQuMjQwMTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0039dffa-5028-4a74-b313-7892ceb8a4e8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12880,Microsoft.Compute/GetVMImageFromLocation30Min;73877" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "50501b07-0691-48ea-b0c4-8f01f42e4f8e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/15be9aaf-587a-445d-b0a8-cdaa85707df8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0763e8c6-af81-4080-84af-9f19aa366419" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215017Z:0763e8c6-af81-4080-84af-9f19aa366419" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BEF12EBE3ADB445A80E5BD3B8FE061F0 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:50:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:17 GMT" + ], + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY2MTQuMjQwMTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11981,Microsoft.Compute/GetVMImageFromLocation30Min;72949" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7d3b149c-b1b8-4f21-a34a-63e015e83d93" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c2504838-beba-4588-bdd6-b1ecbe8292f1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f457ded0-1b85-466c-a779-adf6c1c8d133" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:f457ded0-1b85-466c-a779-adf6c1c8d133" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6223CF6A1DCF49E3819AE57DEAC6B211 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY3MDkuMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "49fe8a5b-87ea-4f1b-bdae-18f88a0b9d37" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12879,Microsoft.Compute/GetVMImageFromLocation30Min;73876" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8a2de204-c304-4de3-8e45-36a077c1339e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c5127dd6-cb9d-4133-b7ac-411391da81bd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "46a6e7a6-ce22-4d97-bcab-35f1557e1f30" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215017Z:46a6e7a6-ce22-4d97-bcab-35f1557e1f30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 21F02CD0FA6A447588A9C4D1EB1823DE Ref B: MNZ221060619053 Ref C: 2025-06-02T21:50:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:17 GMT" + ], + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY3MDkuMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11980,Microsoft.Compute/GetVMImageFromLocation30Min;72948" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "41ea371a-4cd2-4e6e-82ea-77638e8fa362" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0de76938-a0c2-4d60-8550-426820b7221f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "05b3cd0e-e18c-44cd-a6d2-a45d307d7a8c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:05b3cd0e-e18c-44cd-a6d2-a45d307d7a8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DF25D8F0B6D04ECA9BEBA15A2672CA3F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY3OTYuMjQwMzAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "81d83a42-1a4f-4984-b16f-a3c0cab0bf20" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12878,Microsoft.Compute/GetVMImageFromLocation30Min;73875" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "baea8dd4-8b40-4ad5-895f-bea384704769" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5d680814-01c0-4cd2-948f-a35e0bd79417" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f96ddaa6-7d13-430b-8a3e-d0f46a7b7494" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215017Z:f96ddaa6-7d13-430b-8a3e-d0f46a7b7494" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BF4F5AED78DF4D63842A5F713BF2A1F1 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:50:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:17 GMT" + ], + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY3OTYuMjQwMzAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11979,Microsoft.Compute/GetVMImageFromLocation30Min;72947" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7ce0c850-3fff-4712-886d-d43afdf981db" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/88deb70b-e777-4ee1-a270-cae608ef8618" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "337a4f21-0418-4bd6-8d65-c20a3b36187a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:337a4f21-0418-4bd6-8d65-c20a3b36187a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2BC812A363554C4AAC41C77240967A0A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY4OTcuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "164e3753-729c-4958-8e69-90aedf66eba0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12877,Microsoft.Compute/GetVMImageFromLocation30Min;73874" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b9adf116-7c0d-4245-a0fe-6d313013c0be" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/87015db5-8906-4a49-b1e1-fcd6f863d45d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "229d43a9-f0fb-4f74-b7c9-5ca101b2c7e4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215018Z:229d43a9-f0fb-4f74-b7c9-5ca101b2c7e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 979845D9CA5E4972A1C52D581D387A23 Ref B: MNZ221060608039 Ref C: 2025-06-02T21:50:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:18 GMT" + ], + "Content-Length": [ + "1183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY4OTcuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11978,Microsoft.Compute/GetVMImageFromLocation30Min;72946" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6d07e36e-caed-48a4-97d1-9a73699b387c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/847aed38-5f5d-440a-a4c0-e5e13584aa0b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "172cd487-5c8a-45fd-b9fd-c01d274232bd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:172cd487-5c8a-45fd-b9fd-c01d274232bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6206F0D85E544CF7A7221CC68A67522D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY5ODEuMjQwNTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f0d25431-a74a-48f8-88a3-a69445e681b0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12876,Microsoft.Compute/GetVMImageFromLocation30Min;73873" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4364e234-b044-4cc1-b686-a368cbae6fe4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/832e3e92-5a04-48db-a387-5b381db62da8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "210622b8-9bc2-4474-a1e6-68ddf5d5b59e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215018Z:210622b8-9bc2-4474-a1e6-68ddf5d5b59e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8DF4339DC2154DC9AECD03CEA26EAD13 Ref B: MNZ221060619037 Ref C: 2025-06-02T21:50:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:17 GMT" + ], + "Content-Length": [ + "1183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY5ODEuMjQwNTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11977,Microsoft.Compute/GetVMImageFromLocation30Min;72945" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fcb70c1e-c5ba-414e-8186-b02b63768de3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2c3f3d20-66f4-4b47-82bb-90bcc64ebe41" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "a656e1e6-a641-48ec-8858-06a6fbd6f632" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:a656e1e6-a641-48ec-8858-06a6fbd6f632" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 67FF1521D94340889AA0289CA1070A55 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjcwNzAuMjQwNjA4P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1a11f72b-63e8-4294-bd86-0512d3f3166b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12875,Microsoft.Compute/GetVMImageFromLocation30Min;73872" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b22078dc-e227-416b-8ee6-a90cde9f8658" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6d38dfb4-1ad5-4820-ae40-929f2c2cdce3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "145bf238-277b-4a5c-b8fa-b1f90c54030f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215018Z:145bf238-277b-4a5c-b8fa-b1f90c54030f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 917B208BA93A4FD689B60C0AB318171F Ref B: MNZ221060608011 Ref C: 2025-06-02T21:50:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:18 GMT" + ], + "Content-Length": [ + "1183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjcwNzAuMjQwNjA4P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11976,Microsoft.Compute/GetVMImageFromLocation30Min;72944" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0653c9fa-3e03-4f64-9406-2b0ff0362bad" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b798c2e4-450a-4b8b-9b22-0b2bcba87c4f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "ea14a9d5-fb03-45b5-8222-67137d91779f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:ea14a9d5-fb03-45b5-8222-67137d91779f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F556CDDD154420A9EC2F490124C4E32 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjcxNTkuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "806819bc-d5d8-4862-beea-66e84d70109c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12874,Microsoft.Compute/GetVMImageFromLocation30Min;73871" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4dbe6231-b066-474f-a84c-21aea59c5566" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cbb4c6c6-0b43-47e1-a24a-1551eec5598c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6d7a7bc0-b906-4eb6-aa30-d2054bbc5ba4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215018Z:6d7a7bc0-b906-4eb6-aa30-d2054bbc5ba4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C8A224D163A8445399BD93C40872CA40 Ref B: MNZ221060610033 Ref C: 2025-06-02T21:50:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:18 GMT" + ], + "Content-Length": [ + "1183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjcxNTkuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11975,Microsoft.Compute/GetVMImageFromLocation30Min;72943" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "892d912e-590c-47e6-87b9-a6f614d01eb8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/10bc77a1-a8ee-4253-8ff0-376e081601f3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "1bb1cbb3-075d-459a-bc9a-1984dad87a96" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:1bb1cbb3-075d-459a-bc9a-1984dad87a96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 76742161B9C1443AB4C05571F9BB21B7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjcyNTkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bf21f42c-a6c6-4ed0-9948-d2a62c69dbf2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12873,Microsoft.Compute/GetVMImageFromLocation30Min;73870" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "938b3ed6-41ca-47e2-aa0b-f7533500edcb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/40334b04-ca36-48f6-8e34-ce517ead354d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "143269cd-9c2e-466e-a009-524be25973e8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215018Z:143269cd-9c2e-466e-a009-524be25973e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9FC9CC2085B44A86A9DD0908B955A6BA Ref B: MNZ221060609045 Ref C: 2025-06-02T21:50:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:17 GMT" + ], + "Content-Length": [ + "1183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjcyNTkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11974,Microsoft.Compute/GetVMImageFromLocation30Min;72942" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b24a0775-390c-4d3d-97e5-f01a437d3e2d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d27e615a-d520-47e0-bc77-fbc2f8979b9b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "e68d35fc-9d61-486d-8e48-7e8a67f7e50c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:e68d35fc-9d61-486d-8e48-7e8a67f7e50c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E9718F614E52485288B67852E0F97014 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjczMzYuMjQwODMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6278f872-0d68-4d31-83ed-7a2f96bbc8b4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12872,Microsoft.Compute/GetVMImageFromLocation30Min;73869" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f449d1a4-cdbe-4ee8-8361-5258ee58695c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/505543f8-6cea-4052-ba27-8370ae04a029" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "76ea94d0-333f-4e47-a572-6b41e576594f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215018Z:76ea94d0-333f-4e47-a572-6b41e576594f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F0118ED731D04D03BE6EDE4F9B3034DF Ref B: MNZ221060609047 Ref C: 2025-06-02T21:50:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:18 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjczMzYuMjQwODMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11973,Microsoft.Compute/GetVMImageFromLocation30Min;72941" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "04e46bc6-5a48-4bca-b3e5-01cdfd2a764e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f7d65ee4-62d5-4646-a100-bef80502fbd4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "d425c933-6cf6-4c1f-8c5f-2ebd580c33df" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:d425c933-6cf6-4c1f-8c5f-2ebd580c33df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 98781A61063C4896BB3EDF9E941C244F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc1MTUuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d90d870b-ee31-4187-a9b9-6a6457f37bc9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12871,Microsoft.Compute/GetVMImageFromLocation30Min;73868" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d3d439a3-2344-40c0-be68-e194cdd1c89a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6fdca1c5-d8ce-42d4-9db5-33a047d2533b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bfe14ceb-309b-4743-98b9-fd519a089b9a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215019Z:bfe14ceb-309b-4743-98b9-fd519a089b9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 500AE774F56F494E9825C1AFA01FF2E1 Ref B: MNZ221060618009 Ref C: 2025-06-02T21:50:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:18 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc1MTUuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11972,Microsoft.Compute/GetVMImageFromLocation30Min;72940" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b2360099-e58f-483a-b5ce-89bf026a6909" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f6967f4e-8cea-4682-8ab2-3c5e5fcec35c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "d4484657-7686-433c-9038-31d831aa6090" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:d4484657-7686-433c-9038-31d831aa6090" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 55E3DA241C124F87A3DA1BF8AE7564A5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc2MDYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f49c1b3e-877b-4c3e-a8f1-d36850aff06c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12870,Microsoft.Compute/GetVMImageFromLocation30Min;73867" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f5dabf74-0016-4e4c-8932-07067d5f282d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/07a111ad-1bd0-478c-95c0-79f19daa2fbe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8fa32f48-489d-4169-8d74-904817bba0aa" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215019Z:8fa32f48-489d-4169-8d74-904817bba0aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 708872EFCB76411A9CAEC15E43259280 Ref B: MNZ221060610035 Ref C: 2025-06-02T21:50:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:18 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc2MDYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11971,Microsoft.Compute/GetVMImageFromLocation30Min;72939" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fdba6567-1aa7-47ce-91b8-cd9f47fb0456" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/38aa5bd5-4dc5-413d-845e-02189cfa4663" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "dea36249-4930-4a36-b65c-8c4c62f24fc1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:dea36249-4930-4a36-b65c-8c4c62f24fc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F01C59233A454E9E99CDC5779CF6321A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:53 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc2OTkuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "12ebbb7f-ea6d-4cd6-99ad-2efb4a875b81" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12869,Microsoft.Compute/GetVMImageFromLocation30Min;73866" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4c746c59-49b9-4f82-8301-3b028d1ab406" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2287aa0b-4831-494c-80d5-9a3f27c9b5e0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2cbf9a6b-5540-4a57-96c2-1af1c1c5ef5d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215019Z:2cbf9a6b-5540-4a57-96c2-1af1c1c5ef5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 92BB53734D304AA8B71744848E108345 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:50:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:19 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc2OTkuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11970,Microsoft.Compute/GetVMImageFromLocation30Min;72938" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "58e18867-7f4c-4dc6-b2fd-2d321c258b76" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/01499823-e132-473a-8f97-1bc755718df7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "ff881410-97db-447e-b391-9fea4e6e8c62" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:ff881410-97db-447e-b391-9fea4e6e8c62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F484CF95CE374C8AA8BE349F3F075A3C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc3ODUuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a091d249-ad01-4e26-acca-8f73f6d8ab38" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12868,Microsoft.Compute/GetVMImageFromLocation30Min;73865" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1ce45d28-16f4-40c1-b71c-9c59c689b57e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0413e20d-1afc-4006-8e4e-4699e56b88ee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3912acd4-49e7-4973-a27d-0f886dc88dcf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215019Z:3912acd4-49e7-4973-a27d-0f886dc88dcf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E288E136AFA94704B4ED7A1594F1B846 Ref B: MNZ221060609011 Ref C: 2025-06-02T21:50:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:18 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc3ODUuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11969,Microsoft.Compute/GetVMImageFromLocation30Min;72937" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "887b7edf-c8f5-4906-9722-28c2dc2e4fb1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/023d8fea-556f-4b15-91a8-4fb6559f4a0c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "3d95a8a0-9ddc-437a-ab95-a2cea8cb7686" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:3d95a8a0-9ddc-437a-ab95-a2cea8cb7686" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5A425F9DBC974F2296780A30D495B7F5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc4NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "34c37eff-953e-4bd3-afdf-d72517ca8d35" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12867,Microsoft.Compute/GetVMImageFromLocation30Min;73864" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fab2316d-9010-4265-8e8b-b186cc0d5a94" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9746c989-1c50-4db4-bfa0-31fd198a158f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "15a0245b-de11-411c-902e-47e48710190d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215019Z:15a0245b-de11-411c-902e-47e48710190d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 90C98DC79F9546A9BCD67D02EF55B429 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:50:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:19 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc4NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11968,Microsoft.Compute/GetVMImageFromLocation30Min;72936" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a5984025-40d6-4848-8ad8-e68d489ed999" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1d98dde7-eda0-43a0-ac0d-44431ab7d87f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "8538fa11-a9c4-414f-bbb1-c04ff6894162" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:8538fa11-a9c4-414f-bbb1-c04ff6894162" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 550D9BC0C6834174AFEAA415FDE83F37 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc5NzMuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8ad10ef0-5eed-4d66-863f-28385af5a270" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12866,Microsoft.Compute/GetVMImageFromLocation30Min;73863" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a6b7d36f-0f0e-4193-b1df-250b27f53e27" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4785bc35-2ac7-443b-95a4-6c5d0d1a2772" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e956ed59-9c2c-48ca-8d2f-70d4d9d1eeba" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215019Z:e956ed59-9c2c-48ca-8d2f-70d4d9d1eeba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C2B744645C55491A901848554DF323D4 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:50:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:18 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc5NzMuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11967,Microsoft.Compute/GetVMImageFromLocation30Min;72935" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "193bd36f-8990-4a98-93ea-d23c6ed88d5e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ec8e11ef-413c-4f7f-9989-088ec6f8995c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "36f37088-9f2b-4ac6-80fc-ed54115ea5a9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215254Z:36f37088-9f2b-4ac6-80fc-ed54115ea5a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3A9A65B1FF254C12AF73A13F511AF695 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjgwNjYuMjUwNTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "67892989-0efb-4d11-8030-bb03c6298c9b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12865,Microsoft.Compute/GetVMImageFromLocation30Min;73862" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cf0d7449-e05e-4bfd-99d2-be78f1999f01" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1e862188-f787-4231-af28-1b40525d5238" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "73b1911f-4398-42bf-bd68-6eced76178a1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215019Z:73b1911f-4398-42bf-bd68-6eced76178a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 91EC993F0C2046438871827BEE9C656D Ref B: MNZ221060610047 Ref C: 2025-06-02T21:50:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:19 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-server-core-smalldisk-g2/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc2VydmVyLWNvcmUtc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjgwNjYuMjUwNTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11966,Microsoft.Compute/GetVMImageFromLocation30Min;72934" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "de7260ab-246b-4e01-9a00-14a93c7ba63b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bdb945a4-5064-44ff-b00f-ed9d22ed0a7c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a10dc57b-8789-4e10-9ba3-1f778e868ebd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215255Z:a10dc57b-8789-4e10-9ba3-1f778e868ebd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DD9B6CD611F14F11AE30332BA853019A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2211f139-0d17-45be-b14d-c6d1a8438ac3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15978,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43972" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3ffc2d79-a696-4f98-9b98-f09b90e48283" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d369cc3a-da57-4838-9a03-deb481e09b9e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "80aa77cd-412c-4af0-a5a4-523b567f67c9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215020Z:80aa77cd-412c-4af0-a5a4-523b567f67c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2507156AE4C941838E092092AA60D8B9 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:50:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:19 GMT" + ], + "Content-Length": [ + "5392" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15892,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43871" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b9a86645-9745-4bfc-8596-008e19e7f2d1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f94787ce-aadc-48eb-8855-4b29882b9eb5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "50e1f1bf-fd7a-4d8b-9a4c-e00d212ec653" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215255Z:50e1f1bf-fd7a-4d8b-9a4c-e00d212ec653" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 47F091CEA89840ACA7129D02841CC04A Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "5392" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY2MTQuMjQwMTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9f76b89c-4d7a-40ec-a68b-2cb0c4ef5b0e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12864,Microsoft.Compute/GetVMImageFromLocation30Min;73861" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "46c5a955-e815-470f-830e-3400f3c54ccc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/03b90c09-2d26-41c0-a962-4a600a6dac13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f7356fe2-da5c-4c98-adc8-9c42bdf90453" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215020Z:f7356fe2-da5c-4c98-adc8-9c42bdf90453" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B0962F764F994BC191D1E260A1D9A176 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:50:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:19 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY2MTQuMjQwMTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11965,Microsoft.Compute/GetVMImageFromLocation30Min;72933" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4146ffdb-1855-45ae-9dff-207e0c5c560b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b563f2d5-f0b0-4747-9f1b-629538f8741c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "ca698b9f-9ccf-4306-bc4f-ce40738df143" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215255Z:ca698b9f-9ccf-4306-bc4f-ce40738df143" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 79DE152E71624D55858AFFDCF40267E7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY3MDkuMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e1391495-4dda-4ee1-8624-e294ed8d07ac" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12863,Microsoft.Compute/GetVMImageFromLocation30Min;73860" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d531b54c-ec30-4eeb-b9e1-95112416aea7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c78d1f09-e4f2-431b-b115-1bf6625b1785" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "76652a94-dd74-4550-8292-4dc6e54e05b5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215020Z:76652a94-dd74-4550-8292-4dc6e54e05b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 25FABE5EFD504E97A2926FBC1D08A298 Ref B: MNZ221060609019 Ref C: 2025-06-02T21:50:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:20 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY3MDkuMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11964,Microsoft.Compute/GetVMImageFromLocation30Min;72932" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "19cb21ca-4c54-49fd-8001-0a513d7fb757" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/696d7879-14ff-4137-aff8-73c9e2573a81" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "79becd93-d384-430a-939d-b0e26763796a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215255Z:79becd93-d384-430a-939d-b0e26763796a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A29CA58A3B3B4AF18F699C668E72A708 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY3OTYuMjQwMzAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0250a09b-1451-4d1a-8daa-c51000de4b02" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12862,Microsoft.Compute/GetVMImageFromLocation30Min;73859" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "57db9e7d-f5db-49de-a90e-d1a98d670a87" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8c9df984-90d9-4b53-9489-7f4affe79c7b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "53ffbe7b-4e1c-47f7-989d-58b6356b6f2a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215020Z:53ffbe7b-4e1c-47f7-989d-58b6356b6f2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 81437C2B67354DCAA3705192B1A37174 Ref B: MNZ221060609025 Ref C: 2025-06-02T21:50:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:19 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY3OTYuMjQwMzAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11963,Microsoft.Compute/GetVMImageFromLocation30Min;72931" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "979316b7-1932-4fea-9a51-4cf6f8481ba2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3bac5a94-ae8c-487b-a952-44e4a53c3f20" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "075e6fb1-5d54-47a6-a3f5-1305c81ba96a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215255Z:075e6fb1-5d54-47a6-a3f5-1305c81ba96a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1EAD4758D8C843A2A674516F1BE295F5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY4OTcuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7a1af6a7-36ad-476f-a952-9faacacddb65" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12861,Microsoft.Compute/GetVMImageFromLocation30Min;73858" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b253d444-c469-415f-9f1b-29b310a0212b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c561bda3-4893-48f7-bc48-ca7858012ebb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1a87d743-c0dc-479c-9f16-16c6fd95350b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215020Z:1a87d743-c0dc-479c-9f16-16c6fd95350b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C16663992E4C41EFBCDA2C07C5FB441E Ref B: MNZ221060610051 Ref C: 2025-06-02T21:50:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:20 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY4OTcuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11962,Microsoft.Compute/GetVMImageFromLocation30Min;72930" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9857fc72-e071-4535-96a6-624d2855803d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bd54b882-e162-4f19-bd09-2b9d3e3f457c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "e76f5bfe-1355-46ef-84d9-293416aca100" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215255Z:e76f5bfe-1355-46ef-84d9-293416aca100" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BAF4620F365D47639B965017037A1F55 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY5ODEuMjQwNTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0463b861-a6ad-4aea-9449-2b706dbaf880" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12860,Microsoft.Compute/GetVMImageFromLocation30Min;73857" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a6c6bc42-4c9b-4a24-a203-da10243c5a24" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8973fcef-2189-493e-bd93-ee72cf82bd1a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a9e0ecd9-eadb-44b3-9912-172f9a8ca575" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215021Z:a9e0ecd9-eadb-44b3-9912-172f9a8ca575" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6FD76F039CEE423B9B3C496B949CD4FA Ref B: MNZ221060608033 Ref C: 2025-06-02T21:50:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:20 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjY5ODEuMjQwNTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11961,Microsoft.Compute/GetVMImageFromLocation30Min;72929" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "89e3d9ce-b505-44e8-ac1d-d72690f907eb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9930fd09-694d-41fc-8c65-a3a99d352a7b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "cf4ac988-546c-4627-b84f-7810908b4ec0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215255Z:cf4ac988-546c-4627-b84f-7810908b4ec0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 37894C2984F046F8BF929D9E694CFB99 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjcwNzAuMjQwNjA4P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6e6bf71f-f118-4aec-ae47-fc7a47cba330" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12859,Microsoft.Compute/GetVMImageFromLocation30Min;73856" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "25617cea-e2a6-4dca-8159-06f9fa1bf122" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cffd45e6-0c01-4349-8a8d-1fa1fb357115" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "30a40c4f-e998-47c3-b1a3-61f7ffe95484" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215021Z:30a40c4f-e998-47c3-b1a3-61f7ffe95484" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 229FDBD8DC85423FA24E08A0F93B7FE9 Ref B: MNZ221060610047 Ref C: 2025-06-02T21:50:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:20 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjcwNzAuMjQwNjA4P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11960,Microsoft.Compute/GetVMImageFromLocation30Min;72928" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0325295d-4015-41b1-a652-8706c0b85aab" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dcc5dd08-a800-447b-80a0-c1641b03f8db" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "fb4e4a9d-0ee0-48d1-9d56-17b41ddbef62" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215255Z:fb4e4a9d-0ee0-48d1-9d56-17b41ddbef62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 67B69B5EBDC642619CEBCEE00D64FC75 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjcxNTkuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1817825b-a9fa-45fe-9802-818efb21131f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12858,Microsoft.Compute/GetVMImageFromLocation30Min;73855" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "96b5dab8-d1f7-40a4-8a9c-545714558d4b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3341a526-d3df-4753-8178-7a28621c7ae6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "265f6c8a-f3b0-4195-a2b8-2f0a526cf57c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215021Z:265f6c8a-f3b0-4195-a2b8-2f0a526cf57c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B696084B317143679F12F126BF6DD562 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:50:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:20 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjcxNTkuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11959,Microsoft.Compute/GetVMImageFromLocation30Min;72927" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c3956b36-d87e-4bc8-b6ac-169dfedd8a2a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4e5a7f81-233d-43d5-bcf6-234760ee1761" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "baa8321a-8707-43b4-9a83-3ee5a68262f1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215255Z:baa8321a-8707-43b4-9a83-3ee5a68262f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D8353ACD772943D5BD81DCF233F29A4E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjcyNTkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9b664478-65b9-4d43-9c31-1def227dd379" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12857,Microsoft.Compute/GetVMImageFromLocation30Min;73854" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "beb14705-f449-4db1-b92a-adcaacfe059a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8040a94b-04fb-4b3d-9328-e7a6a444982d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "137e9776-e2d5-4395-86e1-422e2cd2fe63" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215021Z:137e9776-e2d5-4395-86e1-422e2cd2fe63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 28E7763F843B42748C585A31C7E81F26 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:50:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:20 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjcyNTkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11958,Microsoft.Compute/GetVMImageFromLocation30Min;72926" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fc7492e6-20ca-4e1c-8290-0a8fdea9f6ca" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7e5b6cbf-49a5-452d-9a1d-eccdba073814" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "d4102d95-c6df-4993-a937-22a9e88e8ec5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215255Z:d4102d95-c6df-4993-a937-22a9e88e8ec5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 10D08A0A1E3B4D969100688930C30F66 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjczMzYuMjQwODMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8d23b526-0f21-4a38-9a76-3f6c3bc69b9c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12856,Microsoft.Compute/GetVMImageFromLocation30Min;73853" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6515559e-250b-457f-873e-079f121da417" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/812448a3-1037-4023-af83-c53453f3d20c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6007d7cc-c64f-4c46-9340-42444f2ee2ef" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215021Z:6007d7cc-c64f-4c46-9340-42444f2ee2ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EDF08105DE604693B5769E87961DC042 Ref B: MNZ221060618009 Ref C: 2025-06-02T21:50:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:21 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjczMzYuMjQwODMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11957,Microsoft.Compute/GetVMImageFromLocation30Min;72925" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "aba4d0d1-2392-4893-9dc7-1fd375faeb23" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/21fdd93a-f2bc-4901-b0d9-2c201a69b30f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "2f210a90-bcb7-43b2-8936-369272c7f9b1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215255Z:2f210a90-bcb7-43b2-8936-369272c7f9b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 098B3341B57C4E6797CF03F46AA3E866 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc0MjguMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3f7c8953-c7e7-4bd0-8402-1946a3ad8ba0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12855,Microsoft.Compute/GetVMImageFromLocation30Min;73852" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e3bb37cb-3071-4e43-82c8-c4ff62fd879c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/574aade1-cc8a-4557-b72d-cf17dbaf2da5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5faadf07-4a9e-43b4-97c1-4aaea77a5320" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215021Z:5faadf07-4a9e-43b4-97c1-4aaea77a5320" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AE011BAD2B9A45B4915B2821C77EAA81 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:50:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:20 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc0MjguMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11956,Microsoft.Compute/GetVMImageFromLocation30Min;72924" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "51324449-d4ee-4eed-bacd-d8d92e2724a3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b811c65f-b3c6-4d36-a430-e0ff6eb05967" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "052011df-b4bc-4fa8-9b77-b90f746edbf0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215255Z:052011df-b4bc-4fa8-9b77-b90f746edbf0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2D543FC4CEA34E6DAA5BA919EA875D32 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:54 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc1MTUuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d79f19a6-196e-44ad-91a3-7c855504f3ed" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12854,Microsoft.Compute/GetVMImageFromLocation30Min;73851" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2de6fe4b-9e57-41da-b709-3da9b33b2921" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5c08ca5b-d8c1-4776-9b39-7d1b1a29b9da" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5782b4b1-f266-49ec-9483-9995b6d97808" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215021Z:5782b4b1-f266-49ec-9483-9995b6d97808" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 12E391E15DB24F21928A4DA7DA7A3B2D Ref B: MNZ221060610039 Ref C: 2025-06-02T21:50:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:21 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc1MTUuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11955,Microsoft.Compute/GetVMImageFromLocation30Min;72923" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c426da45-87c0-4dc8-b98d-b5296e11a46c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6824c0ff-12fa-449f-95d5-91842bcb0da7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "dca914a5-bc9e-48c6-bf7b-97d7aa5b1bf4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215255Z:dca914a5-bc9e-48c6-bf7b-97d7aa5b1bf4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F9C3414B6C64D6C92D20E5472FFB92C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:55 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc2MDYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a185d10b-a4f9-4b3f-af47-8163275f0ed5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12853,Microsoft.Compute/GetVMImageFromLocation30Min;73850" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0fe250a3-cf41-4458-8035-207c5aa6ee50" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/67e130da-b755-46f3-b688-04607547da95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "05e58f91-72e5-4a98-af35-6a38f48471df" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215022Z:05e58f91-72e5-4a98-af35-6a38f48471df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D8F92A21A478439198996CCFC19FC8CE Ref B: MNZ221060609053 Ref C: 2025-06-02T21:50:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:21 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc2MDYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11954,Microsoft.Compute/GetVMImageFromLocation30Min;72922" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f4f2a034-44c5-4dbd-8caa-5f82e2347381" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b73c8903-c499-4794-a1e9-2dd095d91f56" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7445cdc5-446d-452e-b31d-104719e91312" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215255Z:7445cdc5-446d-452e-b31d-104719e91312" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 03C858607DCF4F36B837EC7AD80E7622 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:55 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc2OTkuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "44b511d7-7462-4e37-8498-664cc21eb71e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12852,Microsoft.Compute/GetVMImageFromLocation30Min;73849" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ec79a461-e66c-42be-9664-738ebac2ce24" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/40bd8f6b-2b70-4b3e-86b7-6c233152a4b8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "67ce4c6a-43e0-48d3-b742-b3c2deabc578" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215022Z:67ce4c6a-43e0-48d3-b742-b3c2deabc578" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1DA6119B17C447118E08E9EF6D7F5335 Ref B: MNZ221060609029 Ref C: 2025-06-02T21:50:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:21 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc2OTkuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11953,Microsoft.Compute/GetVMImageFromLocation30Min;72921" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8bce7869-157f-4d00-b30d-f0025037230f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a8f2f3fc-8bfe-4d9f-9b45-a8169947f931" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "d42159f8-b02c-4ef1-a16a-3cea475d744b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215256Z:d42159f8-b02c-4ef1-a16a-3cea475d744b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D30322DEEA074804AF93DDC3A9A01C16 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:55 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc3ODUuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b3fd3495-6811-407a-9f9e-6a74e06399ed" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12851,Microsoft.Compute/GetVMImageFromLocation30Min;73848" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7ee964ef-f20b-489c-bab6-c1fed2cd410d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c57b7e90-4b91-47a0-813d-016223c0cb6c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "28390f93-3289-43ec-a97c-1c3345584f12" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215022Z:28390f93-3289-43ec-a97c-1c3345584f12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 13B2FD77E2DA42B192B7811A1862955E Ref B: MNZ221060609023 Ref C: 2025-06-02T21:50:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:22 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc3ODUuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11952,Microsoft.Compute/GetVMImageFromLocation30Min;72920" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b5bf0bf1-4f2c-472f-affd-62c5cb6c5218" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2c5beed4-9a06-485a-95fb-6c65ff33ad99" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "61f502a7-b2d7-457e-aadd-a7612facab27" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215256Z:61f502a7-b2d7-457e-aadd-a7612facab27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8EAD98BB7E504A7A90DDE45BE765A18E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:55 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc4NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "899bd301-cbea-4b3a-9e8e-9f31853bc2b7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12850,Microsoft.Compute/GetVMImageFromLocation30Min;73847" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a722b72b-1bda-46aa-92d4-0eb34759b559" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e26af923-7430-4727-a08e-31e7eb6850ef" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "14677da5-5b33-49a3-a712-9de8b42fe6a6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215022Z:14677da5-5b33-49a3-a712-9de8b42fe6a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 58C749BD01A744F2ABAF54E510A50A95 Ref B: MNZ221060610045 Ref C: 2025-06-02T21:50:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:21 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc4NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11951,Microsoft.Compute/GetVMImageFromLocation30Min;72919" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7fa9d19d-2421-4d7b-a258-286bf7e5d4bc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e7c77d52-936f-4e83-b9bc-687c04738005" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "182cb394-9b4b-4328-ab75-ec4b6a5a5bf6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215256Z:182cb394-9b4b-4328-ab75-ec4b6a5a5bf6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F656052AAE7E489BBFB8C4E8D532ED6C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:55 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc5NzMuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0c99ca22-fa95-43c1-a3e0-188b6bc50308" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12849,Microsoft.Compute/GetVMImageFromLocation30Min;73846" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f60aa236-d5b9-4d78-bf4e-872e9f79354c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d1853fab-e0a1-4049-aa9d-654bf762ee75" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "21daa78b-17d3-4b03-98ab-d1ffdbfbd7aa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215022Z:21daa78b-17d3-4b03-98ab-d1ffdbfbd7aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BD2A2E98C3E84C1980EC109C9A8FD210 Ref B: MNZ221060608025 Ref C: 2025-06-02T21:50:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:22 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjc5NzMuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11950,Microsoft.Compute/GetVMImageFromLocation30Min;72918" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5ba8a843-dd12-4f08-aeb2-88f1f10dff21" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c81ac087-d2e9-44b5-9c01-7389f88ccf62" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "6fcc4589-0dea-416b-b16d-40d8fefac367" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215256Z:6fcc4589-0dea-416b-b16d-40d8fefac367" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 755C74A3CD47426AB218BD0334141A28 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:55 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjgwNjYuMjUwNTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "22468610-d81b-4bf2-b23a-7f4845cfad30" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12848,Microsoft.Compute/GetVMImageFromLocation30Min;73845" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "896fa20e-31f9-4ee5-aa56-3d1cc2e22e27" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f38310ed-d719-4163-97ef-2a650f42fd42" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cfb66793-3d6e-4598-af5c-7a9a1fd6d0d2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215022Z:cfb66793-3d6e-4598-af5c-7a9a1fd6d0d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EA264CF4AAE44C2593A7351CEDA8CC8E Ref B: MNZ221060619009 Ref C: 2025-06-02T21:50:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:22 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-smalldisk/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE0MzkzLjgwNjYuMjUwNTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11949,Microsoft.Compute/GetVMImageFromLocation30Min;72917" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0b4089b9-5bf3-475b-9492-f5872b2b50f4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ca665051-068c-4897-92d9-0c8e4d70f16f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "62f502de-6fe4-49f4-b8d8-d5c86e075391" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215256Z:62f502de-6fe4-49f4-b8d8-d5c86e075391" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BBA4E603D82D4AEE8DC5B09BD4681B25 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:55 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "04c50aa7-193f-4b92-9722-6c72c63ea1f7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15977,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43971" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5f880ad3-50d4-4f59-b345-5312bbeaab64" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/81b3ff60-d720-4a66-b6e7-e7006ce4c604" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f7c6b32a-6fc0-43e5-9b89-8ce823ea6259" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215022Z:f7c6b32a-6fc0-43e5-9b89-8ce823ea6259" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6FFB980F9ED243E7A74E45E0F419E626 Ref B: MNZ221060618027 Ref C: 2025-06-02T21:50:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:21 GMT" + ], + "Content-Length": [ + "5443" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15891,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43870" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "66295e2c-2e22-4cd9-bc05-4ae416563e3a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fe9f0265-5cbe-4791-adf4-c8a1224ea6de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6b177350-23a4-4591-8bc7-9791e10dcfb7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215256Z:6b177350-23a4-4591-8bc7-9791e10dcfb7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4D6C1F93F20247F7B95DC7641767D072 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:55 GMT" + ], + "Content-Length": [ + "5443" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY2MTQuMjQwMTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fb13a5db-57c9-47e4-9558-a764f2c0af95" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12847,Microsoft.Compute/GetVMImageFromLocation30Min;73844" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0830c5e0-bfe1-4d68-a0ba-f51ffd61f120" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fb709894-8d9c-4b14-b173-fb9653f8c33f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "42e3941e-f62d-4d3f-becd-a227644d5ba2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215022Z:42e3941e-f62d-4d3f-becd-a227644d5ba2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 488D8427A93F40F996D71C743E84D53A Ref B: MNZ221060610011 Ref C: 2025-06-02T21:50:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:22 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY2MTQuMjQwMTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11948,Microsoft.Compute/GetVMImageFromLocation30Min;72916" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4694783f-d76e-44d2-bc52-3c6e0c8c608e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/96829f7f-57fa-4b5d-8480-61b5897b29ab" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "67c33f7d-b3ba-4f4e-9cd3-9b0b54c0c36a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215256Z:67c33f7d-b3ba-4f4e-9cd3-9b0b54c0c36a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9DA8A47B649F4BCDAC7F4EC8270599DF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:55 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY3MDkuMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dc86d88a-34f1-46d2-baa8-513e94f9f657" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12846,Microsoft.Compute/GetVMImageFromLocation30Min;73843" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "60c99b8d-15ee-43c3-b0a3-6448a994e72c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0e6477eb-dfe5-41e5-bbbb-413707324906" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b2a74bf7-b13c-4816-8216-8f07fcf35978" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215023Z:b2a74bf7-b13c-4816-8216-8f07fcf35978" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 11F5976A7D74473BBB6528AE43CBF24E Ref B: MNZ221060619033 Ref C: 2025-06-02T21:50:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:22 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY3MDkuMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11947,Microsoft.Compute/GetVMImageFromLocation30Min;72915" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d157b505-e16c-4c86-ae63-68c254cb0f48" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/836533ce-bc8e-4521-a608-8c98ccebdb3d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "1b0b803d-84f9-41a9-bea1-6e35b948bd72" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215256Z:1b0b803d-84f9-41a9-bea1-6e35b948bd72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 632E2F262B6D4CFD9533DDBD447E88F3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:55 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY3OTYuMjQwMzAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "89f197af-2882-4633-b35b-172eb3740c51" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12845,Microsoft.Compute/GetVMImageFromLocation30Min;73842" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d2577672-fe08-4cfa-8153-61de47ab21fd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/37ead6ab-bad6-4097-9b3c-40f1c1dddaf9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "25307152-0a3a-46c4-9e88-df7bd08c5aa6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215023Z:25307152-0a3a-46c4-9e88-df7bd08c5aa6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C27212A0F84A405C9D5445F88A7C8A79 Ref B: MNZ221060608031 Ref C: 2025-06-02T21:50:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:23 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY3OTYuMjQwMzAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11946,Microsoft.Compute/GetVMImageFromLocation30Min;72914" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "366825fc-b405-4e5f-8929-db1b4748c395" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/be1f88d9-8252-4d7a-a465-b0220eeceb7d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "ce50266d-253d-4256-bffa-71093817292b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215256Z:ce50266d-253d-4256-bffa-71093817292b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C105BFDE4EF04838A49CFDEBFA066F7B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:55 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY4OTcuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5c2496ed-0314-4f53-ad0b-6f7f889b3376" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12844,Microsoft.Compute/GetVMImageFromLocation30Min;73841" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b481bbbc-0f25-4323-9467-b2d118c60d18" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/96469f81-b328-4ad1-9041-c5196f992b41" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fa82756d-dac3-4466-85ce-e8dda8ecb75b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215023Z:fa82756d-dac3-4466-85ce-e8dda8ecb75b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B6FC9B972BD744E6B08ABDA8E6096592 Ref B: MNZ221060619011 Ref C: 2025-06-02T21:50:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:22 GMT" + ], + "Content-Length": [ + "1171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY4OTcuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11945,Microsoft.Compute/GetVMImageFromLocation30Min;72913" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "89b4ee6a-2db5-46a7-9734-647e778123ba" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/62b2c6e2-d6fd-470c-96f2-98df742ef249" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "fd8cf68a-79a7-4e0e-8392-b098a0c87e9c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215256Z:fd8cf68a-79a7-4e0e-8392-b098a0c87e9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FA287B7E271445E897D77D3BF1922AB4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:55 GMT" + ], + "Content-Length": [ + "1171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY5ODEuMjQwNTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5fe3dd4b-765e-42b5-b915-3f320702866c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12843,Microsoft.Compute/GetVMImageFromLocation30Min;73840" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1f03f664-175d-4c3b-9695-2b9eea427175" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/25aad039-6a3f-424c-b995-1cd022fdcb67" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "264b47da-1dee-4da3-b62c-6253d3d99624" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215023Z:264b47da-1dee-4da3-b62c-6253d3d99624" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D331B820659C41129F9EE6BB7DF7A397 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:50:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:23 GMT" + ], + "Content-Length": [ + "1171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjY5ODEuMjQwNTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11944,Microsoft.Compute/GetVMImageFromLocation30Min;72912" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ca546811-d6ce-402b-9c71-69b8135c54bf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8d236e35-ddbe-4125-bfb3-093054ddf208" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "fef73c90-6886-4c4b-b345-2d3300af1c97" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215256Z:fef73c90-6886-4c4b-b345-2d3300af1c97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1DFC7A71ED8F40A6B01116DF7280A88A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:55 GMT" + ], + "Content-Length": [ + "1171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjcwNzAuMjQwNjA4P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3651c392-dbef-4892-85dc-e146545261e6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12842,Microsoft.Compute/GetVMImageFromLocation30Min;73839" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2532097b-5911-4cb7-9825-1a52088694e3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/21a316b7-d57e-4a94-9794-e0d61cab8a83" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c1cb87e6-6e24-4431-9a67-5bfd642e6cf8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215023Z:c1cb87e6-6e24-4431-9a67-5bfd642e6cf8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ACE90FBD00354A78B96154BF92003D9E Ref B: MNZ221060609049 Ref C: 2025-06-02T21:50:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:22 GMT" + ], + "Content-Length": [ + "1171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjcwNzAuMjQwNjA4P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11943,Microsoft.Compute/GetVMImageFromLocation30Min;72911" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7afc9da4-4d52-4ed7-a76f-cabedb2e3629" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/63471612-1afe-48c4-8a18-2c91486573df" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bbac81d6-65e7-4b55-b271-c7deb64ae0c3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215256Z:bbac81d6-65e7-4b55-b271-c7deb64ae0c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0662720A188D48E892B9B9466DB4E6D0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:56 GMT" + ], + "Content-Length": [ + "1171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjcxNTkuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f06e71b8-b10e-4fda-bb9d-2ece11649e01" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12841,Microsoft.Compute/GetVMImageFromLocation30Min;73838" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2eee4fa1-6494-4976-9a55-1493baef4aba" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/565a99ff-20c0-46c8-a2b0-5c67c81021e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6110ced3-8eae-48c0-b8a4-48fa74c028c5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215023Z:6110ced3-8eae-48c0-b8a4-48fa74c028c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5DEAFF308E254FA598C51198459140ED Ref B: MNZ221060608009 Ref C: 2025-06-02T21:50:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:23 GMT" + ], + "Content-Length": [ + "1171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjcxNTkuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11942,Microsoft.Compute/GetVMImageFromLocation30Min;72910" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ce77f647-51c8-4724-982c-28fbc24131f2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/eb59f701-76ad-492f-96e0-e43297178de0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "10124c9d-7f10-4a40-a8df-07c1c86df2dc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215256Z:10124c9d-7f10-4a40-a8df-07c1c86df2dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 88215F0F389C494DA614B1D153F63B33 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:56 GMT" + ], + "Content-Length": [ + "1171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjcyNTkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ab940d13-d728-4e92-adf9-81477aacc331" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12840,Microsoft.Compute/GetVMImageFromLocation30Min;73837" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fe90eb1d-635e-43c7-a2dc-4cb4d0ebb537" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dda43764-c5e4-45e9-9ffe-9cdccb56f785" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7a574b08-65df-4656-b36c-a67aa6e1c6a3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215024Z:7a574b08-65df-4656-b36c-a67aa6e1c6a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 65AE7FF6736446DFB91E67C14ADF4C54 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:50:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:23 GMT" + ], + "Content-Length": [ + "1171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjcyNTkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11941,Microsoft.Compute/GetVMImageFromLocation30Min;72909" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e262e42d-f981-4293-bb2e-d202ff36a646" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9ee856ac-a6b0-41ec-b9a9-70f3d303770a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a306b7ea-3eac-426d-8d93-9c4a43460f7d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215256Z:a306b7ea-3eac-426d-8d93-9c4a43460f7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0C5A5AB4CA784B7C86A6C918D081E6E3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:56 GMT" + ], + "Content-Length": [ + "1171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjczMzYuMjQwODMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c20bf563-f789-4546-ad68-f86cff6431ca" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12839,Microsoft.Compute/GetVMImageFromLocation30Min;73836" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f76ba644-165a-4648-8d0c-5e1faa422d49" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e3f44748-35db-42f2-9d26-8ef0d65414a9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "966088b6-e4ba-48af-9a7e-cb4c5a39a97d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215024Z:966088b6-e4ba-48af-9a7e-cb4c5a39a97d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D250BB2E361E4463808B1754DDAF037B Ref B: MNZ221060609045 Ref C: 2025-06-02T21:50:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:23 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjczMzYuMjQwODMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11940,Microsoft.Compute/GetVMImageFromLocation30Min;72908" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "af8bee9a-af8f-4d0d-a82e-8585927c45dc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f6194588-0468-40f3-8ccd-b6dbae40673e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "2fb5a441-b748-471c-a456-a87d0652d8ca" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215257Z:2fb5a441-b748-471c-a456-a87d0652d8ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A32C8AE9F5854F619F8C2F35745E6FE6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:56 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc0MjguMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "076a23f1-c76b-4e28-aaa4-e70a3f19926b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12838,Microsoft.Compute/GetVMImageFromLocation30Min;73835" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "93ed4768-13b0-411f-91b5-e5c5eaefe047" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/10e31b5b-01e0-461b-99b0-b892cd074c93" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4b605516-f4a5-4afb-8e03-9ce1c9ba004a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215024Z:4b605516-f4a5-4afb-8e03-9ce1c9ba004a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3C33DD53C92942E0B3176F6142182275 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:50:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:23 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc0MjguMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11939,Microsoft.Compute/GetVMImageFromLocation30Min;72907" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b1ba4d70-7148-49bf-9efd-74313dafbc06" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8d758d39-98e7-4970-b5eb-642df93d54a8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "dd179344-0a3e-4898-b123-4df4caa7b881" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215257Z:dd179344-0a3e-4898-b123-4df4caa7b881" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6473459D26E642C5865487181E94ED92 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:56 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc1MTUuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e1301aba-8944-44e8-8a64-63bcb19115ad" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12837,Microsoft.Compute/GetVMImageFromLocation30Min;73834" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e7c1f70a-5be2-4613-a443-8f1ebf323918" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/becf6d48-9885-407e-9d6c-ac0e4752f9b2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e777a0b7-7210-4adc-a6e8-047fcdeb64af" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215024Z:e777a0b7-7210-4adc-a6e8-047fcdeb64af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C468D5F28C0642099E563C113B4ADC95 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:50:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:23 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc1MTUuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11938,Microsoft.Compute/GetVMImageFromLocation30Min;72906" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3e890a48-a12e-4bcf-b4fc-41b66e4612d2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4c780e6d-4ef0-49a5-be17-9c4d36d36749" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "d6365818-e1a2-4198-bf05-6f2c42089815" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215257Z:d6365818-e1a2-4198-bf05-6f2c42089815" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CB7B3243C0C34A00B02B07D0206AAE6F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:56 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc2MDYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2fdaaeaf-7763-4473-8a8d-f368e317ff91" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12836,Microsoft.Compute/GetVMImageFromLocation30Min;73833" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ca1eed19-8ff6-4df8-9160-bb7baf547e22" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/70f29b67-09c4-41e2-9d2d-e2da24243025" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "a043cf35-c1c1-49c0-af74-ddf0a6eda580" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215024Z:a043cf35-c1c1-49c0-af74-ddf0a6eda580" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7098D94B2562482BB599C03852A1BDE5 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:50:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:23 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc2MDYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11937,Microsoft.Compute/GetVMImageFromLocation30Min;72905" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7c7b4397-27bb-4de4-9249-43f1dd2b787b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d5c7bd4d-61b6-4a65-98a8-05ded27985a8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "4b841035-7f0a-495a-862a-ed73f9d2e114" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215257Z:4b841035-7f0a-495a-862a-ed73f9d2e114" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FD052BE8ED614F7286CB10ACA86AC2AD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:56 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc2OTkuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d32236dd-d2fa-490c-95e5-26d99541cdb4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12835,Microsoft.Compute/GetVMImageFromLocation30Min;73832" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "26f403f8-9f95-4b9c-98c5-092e3a1dc95a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1a267a67-a9a6-4097-8a77-2a7341ed673a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e9c228e5-09ae-4472-af0e-3bdf4fed1ed3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215024Z:e9c228e5-09ae-4472-af0e-3bdf4fed1ed3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BFFA6308236A433B8FACE6AA1399A414 Ref B: MNZ221060619049 Ref C: 2025-06-02T21:50:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:24 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc2OTkuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11936,Microsoft.Compute/GetVMImageFromLocation30Min;72904" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0678aba2-6be0-4ec9-a6bc-1a0dd7688880" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7268a830-ff65-4382-b919-d6d8f501d630" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "3c766b15-04fe-4164-bc83-4636ee197acc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215257Z:3c766b15-04fe-4164-bc83-4636ee197acc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 222C2AF800DE47C5B5479AAECE8D5B97 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:56 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc3ODUuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0fb7a312-663c-4c76-98a1-25fdf553067a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12834,Microsoft.Compute/GetVMImageFromLocation30Min;73831" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2b252afd-8a03-4572-b4e0-779bc75d90f8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2145eab4-5c67-4019-9f91-059308e2808a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4a8bb8d8-bf53-4462-90ac-b3c312b2705e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215025Z:4a8bb8d8-bf53-4462-90ac-b3c312b2705e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 27EF254BBAFA41B4BDA09D2A051496CB Ref B: MNZ221060608025 Ref C: 2025-06-02T21:50:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:24 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc3ODUuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11935,Microsoft.Compute/GetVMImageFromLocation30Min;72903" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "16f7e03a-5cea-4c78-beed-409999a59fb8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/03c032b8-293e-4925-bf36-ebb68bded721" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b87800be-54a9-4ff7-a08a-88b9ff9e1eb0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215257Z:b87800be-54a9-4ff7-a08a-88b9ff9e1eb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 10B0B672E3934FEB935B66CA55E554DB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:56 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc4NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f589e42e-4746-4336-a725-825b7e8b97db" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12833,Microsoft.Compute/GetVMImageFromLocation30Min;73830" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b7158bb7-bcce-46a1-a761-e4ad90aa07aa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c99d394d-1da7-47b6-8f93-f21d3f92fee7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "005cc017-71ce-4f3f-a056-bb3ca5a822ef" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215025Z:005cc017-71ce-4f3f-a056-bb3ca5a822ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4625FA6CB25A43BCA0C9C32C49CF0E4D Ref B: MNZ221060608019 Ref C: 2025-06-02T21:50:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:25 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc4NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11934,Microsoft.Compute/GetVMImageFromLocation30Min;72902" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d87ad7d3-98b0-4315-9f05-c6e6f16d0f14" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fa698e3a-4f0c-4bd6-8a8c-d52ea86802f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "da2fe18d-57f8-4be6-8132-65d7595fa667" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215257Z:da2fe18d-57f8-4be6-8132-65d7595fa667" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 684772D58DE4429982799CF9D3F6AFD6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:56 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc5NzMuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2bf77e84-0882-4311-abdc-fadb72f3f78b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12832,Microsoft.Compute/GetVMImageFromLocation30Min;73829" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4159bc6d-411e-4845-94fd-9c9e51ff9afb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3672ab96-7c5b-43f6-b927-378a4599f4e3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c61879cf-0ea8-4063-9557-8dd052081541" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215025Z:c61879cf-0ea8-4063-9557-8dd052081541" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 937FD103A41D484AA74CBD55F81E2FD0 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:50:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:24 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjc5NzMuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11933,Microsoft.Compute/GetVMImageFromLocation30Min;72901" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ae661a45-fea3-4991-bad7-3ab576a74122" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5baa638d-44b5-411e-9be8-2cdf907e6e17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "03105a6e-8796-4ee1-941a-2c835808c4af" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215257Z:03105a6e-8796-4ee1-941a-2c835808c4af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FFC557F8923241F5A6285254D7475CD9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:56 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjgwNjYuMjUwNTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "79e302f9-f10d-413a-97d8-768d0a1c8fc3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12831,Microsoft.Compute/GetVMImageFromLocation30Min;73828" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a06fedbe-404c-4870-af7f-5d52c9e08185" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fa7a0512-17f1-4676-857f-de6d262c660e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2b61d9bb-499c-4276-9d0f-77ba4a4a669f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215025Z:2b61d9bb-499c-4276-9d0f-77ba4a4a669f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 60A3795AC7F14C998544532950B020EB Ref B: MNZ221060609027 Ref C: 2025-06-02T21:50:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:25 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-smalldisk-g2/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE0MzkzLjgwNjYuMjUwNTExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11932,Microsoft.Compute/GetVMImageFromLocation30Min;72900" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bc2bdb7f-c6e7-4a00-9580-92a9edbf98b5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bbc96575-fd4f-4115-be70-957ad1c836de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "17ae90bc-3c81-4469-be32-79ebfbc41e1f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215257Z:17ae90bc-3c81-4469-be32-79ebfbc41e1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD2CBDA79602418EA2B28E732E4FFF3A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:56 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "aa992e34-c073-4155-a093-d14ee4de1c03" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15976,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43970" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0d81e7bc-ae29-4a96-a00a-fd2128906de7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d6051b12-7ae8-45bf-b04a-520a30cceca2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "87ff21b6-9d3b-4523-9ab6-b06e4af753c3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215025Z:87ff21b6-9d3b-4523-9ab6-b06e4af753c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0B2E38C777AE4F058B056325B1FD4B41 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:50:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:24 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15890,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43869" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "53c6d154-2db3-4a66-8671-4042bbbe27e6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7bf73555-4904-4eee-8aac-50c1cbd7719d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6328d0fc-0edf-402a-b6d5-2288d53763a1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215257Z:6328d0fc-0edf-402a-b6d5-2288d53763a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9471798FBCE448119F1A5D3ECC53EF08 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-with-containers-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItd2l0aC1jb250YWluZXJzLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "84583b43-9701-48b8-aa5c-b8a5abe35def" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15975,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43969" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bc60d9cc-cb24-4b8c-b1af-34821a108117" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4943b1f1-7034-4e94-abba-9ddac0d5d15d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9fd38bc5-495f-45de-8144-323f36ad6c3d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215025Z:9fd38bc5-495f-45de-8144-323f36ad6c3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 04B2F70B2F9A46488E65650EFD3F0052 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:50:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:25 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-with-containers-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItd2l0aC1jb250YWluZXJzLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15889,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43868" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4b4bd115-37c5-4ed6-8a5f-d58c172c3a9c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/111c131e-70f2-42e9-8fca-38017d3706a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f55d9f1e-7ca0-464e-a01c-3cfa7ffda81d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215257Z:f55d9f1e-7ca0-464e-a01c-3cfa7ffda81d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B0F3895FD8D248CEA9961D3D66B2DC52 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "15f66c5f-c459-4c10-9f99-1266f89e1ff6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15974,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43968" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "20f966be-be43-48b6-a861-b40c8bca60b8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/838ff40f-e7f8-4891-a74e-38a18528d928" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d7c1817d-344b-4da2-9a5d-50a668807759" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215025Z:d7c1817d-344b-4da2-9a5d-50a668807759" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DA5CF2F73F8346D98210EE193C6806AE Ref B: MNZ221060619011 Ref C: 2025-06-02T21:50:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:25 GMT" + ], + "Content-Length": [ + "5307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15888,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43867" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e86aa025-4a08-470d-a4d4-641981074c38" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f9f25550-4d64-49db-8d78-9f7bc2eae85d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "14dbc6e8-1bf1-4b42-960a-710f077c521c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215257Z:14dbc6e8-1bf1-4b42-960a-710f077c521c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EE4C1E962C6C475D9AE5ACB197F0A6B8 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "5307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My42NjE0LjI0MDEwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3b5abbce-1452-49c7-892e-32e17cc39a4b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12830,Microsoft.Compute/GetVMImageFromLocation30Min;73827" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c9269353-515b-4a37-ad76-7eb15feaf58e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/59576028-e8e0-4bb7-98af-a10357f33642" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5042da92-80a4-4570-84bd-479bfca9b467" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215026Z:5042da92-80a4-4570-84bd-479bfca9b467" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0E92226AE1A745EBA8828E795EFD80C0 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:50:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:25 GMT" + ], + "Content-Length": [ + "1134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My42NjE0LjI0MDEwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11931,Microsoft.Compute/GetVMImageFromLocation30Min;72899" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "71e90846-b7b9-4a55-95f2-30592e655d0c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4d5064d2-72a5-4190-9915-683de08ce4e5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "04d0d0c9-0475-4fcc-88ae-7e06c9142f09" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215257Z:04d0d0c9-0475-4fcc-88ae-7e06c9142f09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9C450B0517C2459AB13899F94CE3F273 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My42NzA5LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5015d668-0351-4405-a5f7-e8051d51a249" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12829,Microsoft.Compute/GetVMImageFromLocation30Min;73826" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0f389681-f7a1-429a-a23b-98f4c7891eca" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8c4357b3-f8cd-436a-bce4-cc8eb07979c2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "61eeec48-624d-4035-a29f-cee952e4bee2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215026Z:61eeec48-624d-4035-a29f-cee952e4bee2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B15F9F5D42A474A82F2E2C885178E1B Ref B: MNZ221060610017 Ref C: 2025-06-02T21:50:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:25 GMT" + ], + "Content-Length": [ + "1134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My42NzA5LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11930,Microsoft.Compute/GetVMImageFromLocation30Min;72898" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cb76eacc-b8a1-4e35-8f2d-398a9146d64b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cb9bddaa-28fc-410f-b1d4-b52169a1ddda" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "fc691326-8087-4bf3-b2bf-cce3483c27ae" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215257Z:fc691326-8087-4bf3-b2bf-cce3483c27ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5C40695451FF4AF984903E9A57052BDE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My42Nzk2LjI0MDMwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "390e257a-0801-4a3f-b51a-52dd4925461e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12828,Microsoft.Compute/GetVMImageFromLocation30Min;73825" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "60859724-ca29-4100-8bb9-b5bfad9d4290" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/66df5e37-9d18-4a5d-81d2-44376501cbca" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "22b36774-b5f2-4702-8e19-91cf2e087273" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215026Z:22b36774-b5f2-4702-8e19-91cf2e087273" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 883F917D7EA046118CC27E4A86E1EB08 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:50:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:25 GMT" + ], + "Content-Length": [ + "1134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My42Nzk2LjI0MDMwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11929,Microsoft.Compute/GetVMImageFromLocation30Min;72897" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "788efd83-37ef-4b91-a312-37f89e80dc4a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cb8a0c54-bed4-4df6-8ed4-ae2082b9d8fd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "23717f07-8c0e-49e3-b81d-d3e6f3fe34cb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215257Z:23717f07-8c0e-49e3-b81d-d3e6f3fe34cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9D6B626CEE304FB1AE1DD0593856DEC6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My42ODk3LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e9083122-b9d7-422f-81e3-1819ad01a8dd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12827,Microsoft.Compute/GetVMImageFromLocation30Min;73824" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7c919ba6-cbf3-4407-92ee-9200408b833e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0d2dd2ef-b8ee-4908-b4f3-0c1d28cac710" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cba8dace-590a-4420-aa4e-2f75a8f86408" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215026Z:cba8dace-590a-4420-aa4e-2f75a8f86408" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 260176827F904EE7929A520DD18DEC09 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:50:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:25 GMT" + ], + "Content-Length": [ + "1053" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My42ODk3LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11928,Microsoft.Compute/GetVMImageFromLocation30Min;72896" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "897e1ed1-a23f-459c-a905-1e5004ceb9ce" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/aabf0d5d-3ae4-43a4-9472-0aded790e56a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "e9484c9d-6cf9-4bd7-8fda-294d22cc65f9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:e9484c9d-6cf9-4bd7-8fda-294d22cc65f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 78FD45A77D15486E89F5E9C11737F3E0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1053" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My42OTgxLjI0MDUwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "73743e9f-fe19-42ff-80e6-6c3b0ee6b41c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12826,Microsoft.Compute/GetVMImageFromLocation30Min;73823" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1cdf32df-9566-44c0-90f6-497d88f671c2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/25b2781e-e815-4d1c-946f-c42e5dcf8147" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8a2038a7-7bf3-4a44-9f76-3f7b8209b2f0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215026Z:8a2038a7-7bf3-4a44-9f76-3f7b8209b2f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ED1B2967516F406D8BF285A444A48194 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:50:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:26 GMT" + ], + "Content-Length": [ + "1053" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My42OTgxLjI0MDUwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11927,Microsoft.Compute/GetVMImageFromLocation30Min;72895" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "930d598b-0772-4de3-8b4a-6ec0d0c96a1a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/69d48a70-a545-498a-8c10-0faead98d57f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1092" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16492" + ], + "x-ms-correlation-request-id": [ + "cbef97ef-8f42-41b7-b8b5-1ff27a16661b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:cbef97ef-8f42-41b7-b8b5-1ff27a16661b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A1FF9E25CBAF423CA590305FA55C6563 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1053" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43MDcwLjI0MDYwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "91212147-0923-44c8-9fce-ee5aadf4fa3f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12825,Microsoft.Compute/GetVMImageFromLocation30Min;73822" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8971412a-395e-4a93-a868-b80e655dc99b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a2ed47a4-5b09-44d5-9cd9-de9d9136c842" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "57884a06-b146-40bd-920a-664c3e546791" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215026Z:57884a06-b146-40bd-920a-664c3e546791" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 16E71365E88C4651BB987C4198AE75DA Ref B: MNZ221060608031 Ref C: 2025-06-02T21:50:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:26 GMT" + ], + "Content-Length": [ + "1053" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43MDcwLjI0MDYwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11926,Microsoft.Compute/GetVMImageFromLocation30Min;72894" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "30a8d02f-cca1-43e6-95ea-ed882c630d0f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ad9c8c5a-20d5-4643-8c17-c132a838fec0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a1990b4e-061e-4329-99be-76ecca9be8f7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:a1990b4e-061e-4329-99be-76ecca9be8f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E8D3FE4CDCF941A8848C930468521A04 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1053" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43MTU5LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e6e12c4d-fe5d-4237-9018-dc6aee532efc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12824,Microsoft.Compute/GetVMImageFromLocation30Min;73821" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a1f50369-c609-48b3-ab83-157cf34db9b2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5db0880d-dabb-4f64-8420-92515819149f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a6cfabe3-fc59-48cb-ad53-6981ff3500c0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215026Z:a6cfabe3-fc59-48cb-ad53-6981ff3500c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B97C62C44B3F49AFABC9EBD628A65C94 Ref B: MNZ221060610007 Ref C: 2025-06-02T21:50:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:26 GMT" + ], + "Content-Length": [ + "1053" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43MTU5LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11925,Microsoft.Compute/GetVMImageFromLocation30Min;72893" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ccc02548-b5f8-4b5f-be03-02a8e0877b5e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7a954266-9384-4654-926a-ece7509864a4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4927f20d-87b1-4454-9277-30425e5f4a65" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:4927f20d-87b1-4454-9277-30425e5f4a65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BF63D304B1534F52BB4FC12886473707 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1053" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43MjU5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f7e14086-d4c5-477c-a224-e750fddbc268" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12823,Microsoft.Compute/GetVMImageFromLocation30Min;73820" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1606b079-c9ca-44dd-82bf-d38f01e048dc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9ce2ccac-d96f-4f07-8b20-be4ab4ef85f2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7f0ee55c-1e1e-4e93-8dcf-9e16814b8db8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215026Z:7f0ee55c-1e1e-4e93-8dcf-9e16814b8db8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3598ECA403A94B118E792059659BFA00 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:50:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:26 GMT" + ], + "Content-Length": [ + "1053" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43MjU5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11924,Microsoft.Compute/GetVMImageFromLocation30Min;72892" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bbe702ae-0f72-4d9e-8b19-e3daecf08389" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/17eae012-2a37-4ecf-9377-7ebb8e86a675" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "77cbcee3-0d8a-4f16-9471-ef117e898fc5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:77cbcee3-0d8a-4f16-9471-ef117e898fc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6EA229736ACD4AA1ADEDDA59382AA415 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1053" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43MzM2LjI0MDgzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a8b9e70d-5196-4963-8098-5d35e4bd2807" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12822,Microsoft.Compute/GetVMImageFromLocation30Min;73819" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b8d1fa99-b193-42b0-b816-02d36e1f945b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9f08e1d1-a15e-4a61-8599-41c7cb0ca922" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8204792b-98dd-414c-b67e-a941651f8fde" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215027Z:8204792b-98dd-414c-b67e-a941651f8fde" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC1422458AF04CD8AF7415C72489E4FA Ref B: MNZ221060609035 Ref C: 2025-06-02T21:50:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:26 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43MzM2LjI0MDgzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11923,Microsoft.Compute/GetVMImageFromLocation30Min;72891" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3df4c3e2-10b7-4f73-a71a-7984a9cf63a9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e7a57b74-293c-475b-8ea9-f7ef16f60e70" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "604baa67-7922-438a-8c34-8fa5392cc404" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:604baa67-7922-438a-8c34-8fa5392cc404" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 441B49B81DC547748AFE608A64106B99 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43NDI4LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8fbbf36c-b204-4852-81b6-d0910dd4575a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12821,Microsoft.Compute/GetVMImageFromLocation30Min;73818" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "251ed7b2-6b28-4237-a7ca-110006603963" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d00cf9fa-db29-4195-b880-7bcaee5b6574" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e30de6da-a765-4a12-8ec3-4c47c5481ce3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215027Z:e30de6da-a765-4a12-8ec3-4c47c5481ce3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 57CAB987EBDF431590F02BFF41C639EC Ref B: MNZ221060618051 Ref C: 2025-06-02T21:50:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:27 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43NDI4LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11922,Microsoft.Compute/GetVMImageFromLocation30Min;72890" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "47b73f04-9b9c-4ba8-9d48-dc918afa52cf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/62ebeaf3-bee3-440f-b6fc-dacd6f9bf768" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "c6468969-d466-425d-b48c-ffe5344abdf3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:c6468969-d466-425d-b48c-ffe5344abdf3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ADBBFEDF7A044D74BD4C929E0BF2E5CC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43NTE1LjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a76fb8ee-e980-4217-bc83-bd22f1794dab" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12820,Microsoft.Compute/GetVMImageFromLocation30Min;73817" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6667a34d-3d80-4357-9ea2-06bbc4b07bf1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/437d2d28-16b4-495f-9149-fc7b1b9b3b8a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "56c1c019-4cc1-4322-a726-27895a66b597" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215027Z:56c1c019-4cc1-4322-a726-27895a66b597" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 90514929A08A4932B888747B5E712BAE Ref B: MNZ221060608035 Ref C: 2025-06-02T21:50:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:27 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43NTE1LjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11921,Microsoft.Compute/GetVMImageFromLocation30Min;72889" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "00d61951-5b90-4fba-9784-0887e493f5d3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5ecf2387-6f0e-4343-8797-382b19834512" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "52465689-38fc-4314-812f-4eb5444e4e0d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:52465689-38fc-4314-812f-4eb5444e4e0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8B3C55CAEAD248FA9EDECE53584D6CDD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43NjA2LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "101ca894-99ee-45d6-a81e-066150a58e26" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12819,Microsoft.Compute/GetVMImageFromLocation30Min;73816" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "43f32a0d-2035-4198-9ef2-3f8360316e5a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/375afbcc-1c2c-4d5e-a8b7-f9e1ac8172ce" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5bacbcc6-fdfb-4b1d-9d35-1fdc966aac4e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215027Z:5bacbcc6-fdfb-4b1d-9d35-1fdc966aac4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A3D9A7941E1C44D08644AAEC5DEE6EE5 Ref B: MNZ221060610019 Ref C: 2025-06-02T21:50:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:27 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43NjA2LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11920,Microsoft.Compute/GetVMImageFromLocation30Min;72888" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0ac86817-9eb0-4587-9802-9a107f41216f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6685eece-95b3-4d0b-a6a2-7af296d77fe4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1091" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16491" + ], + "x-ms-correlation-request-id": [ + "1813d477-0ef4-4807-b54c-a5909094d724" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:1813d477-0ef4-4807-b54c-a5909094d724" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1C7C1354DDDD4B99B37F5BA83C46F1CB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43Njk5LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6a420e50-4b83-4712-9a48-d4921a2b1950" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12818,Microsoft.Compute/GetVMImageFromLocation30Min;73815" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f28fe9a9-5fc6-464f-be04-086de0ab6f57" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b0c00df5-01ed-4658-9dc3-0728b03ce069" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2a9d629b-8c7c-42dd-952d-5048fdc30b4a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215027Z:2a9d629b-8c7c-42dd-952d-5048fdc30b4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D35A431C98C14964B60C2B784ADEE52C Ref B: MNZ221060608047 Ref C: 2025-06-02T21:50:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:27 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43Njk5LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11919,Microsoft.Compute/GetVMImageFromLocation30Min;72887" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1fc066d9-c8e0-463d-871e-d3fdf9505bd7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/487e7ebc-8852-41e3-ac07-a11f264911ef" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b30b4818-f6a1-4315-988a-8f32767e316c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:b30b4818-f6a1-4315-988a-8f32767e316c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 42BA8B93207F4EB4A4645DFC3116FBA5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43Nzg1LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "962759a8-6b31-4b22-8d70-58e6a1d4ddbf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12817,Microsoft.Compute/GetVMImageFromLocation30Min;73814" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a9e8352a-90c3-4656-a699-86ff6ae31545" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b76e19d8-c1a1-46b9-b02f-e1b2ebe6d5c3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a4ff59b9-5b03-4d72-b138-5a4c9aa61e76" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215027Z:a4ff59b9-5b03-4d72-b138-5a4c9aa61e76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 230310A04ED2464D97AC1A95074EC60D Ref B: MNZ221060619035 Ref C: 2025-06-02T21:50:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:27 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43Nzg1LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11918,Microsoft.Compute/GetVMImageFromLocation30Min;72886" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "91980d62-0b4b-451c-bfba-89ec0a4236cb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c2ddd128-0b93-4c1e-92f6-a9f359363ee6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "41babfe3-05cf-4983-81b0-0234ccabbe63" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:41babfe3-05cf-4983-81b0-0234ccabbe63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6D3CC7FAC3D44BFC82B082DB5398EEE9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43ODc2LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "283acecd-1c74-497a-aada-4019ff3cab5d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12816,Microsoft.Compute/GetVMImageFromLocation30Min;73813" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6b478e69-e34d-4444-afc4-ad8c09a2620a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f204c94b-79da-4c57-9da0-9a5fb572f216" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e7506d73-cd40-4217-914f-58b2846d7cb3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215028Z:e7506d73-cd40-4217-914f-58b2846d7cb3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F97E80930C174C26A6E4EB7F92C469FE Ref B: MNZ221060619045 Ref C: 2025-06-02T21:50:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:27 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43ODc2LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11917,Microsoft.Compute/GetVMImageFromLocation30Min;72885" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1686901e-c136-400d-8774-dcd55535824f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fba7c13e-2229-487e-be12-9db0790164f1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6cacc09e-0896-41f2-b256-d2d3fc35b0cf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:6cacc09e-0896-41f2-b256-d2d3fc35b0cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 291EFC3BC2854BEE8B7713AFD5ACDB21 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:57 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43OTczLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b7b8b2d3-f666-4d65-bb6d-cb00416e040d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12815,Microsoft.Compute/GetVMImageFromLocation30Min;73812" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dd65f2f4-be3e-4be2-a4a2-653bd5f260bc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/854d9261-38b4-4387-9a6c-b03b3cd8a3d7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "3e2648f6-c273-402e-b412-d213f36bd200" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215028Z:3e2648f6-c273-402e-b412-d213f36bd200" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A2D5B8A9B6FB4DF8B210D6EE9082B9AC Ref B: MNZ221060610007 Ref C: 2025-06-02T21:50:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:28 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My43OTczLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11916,Microsoft.Compute/GetVMImageFromLocation30Min;72884" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f7377216-d0aa-4198-a430-d06e09102437" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0480553f-c16b-4036-b608-4dbcbebc0a47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "3a7b2d22-ec88-4ce1-9236-fa28f291ff48" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:3a7b2d22-ec88-4ce1-9236-fa28f291ff48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 82E03EE8701945949D0FC59621E5B0F5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:58 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My44MDY2LjI1MDUxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "588e3433-c22e-4311-8218-fb9c6684169b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12814,Microsoft.Compute/GetVMImageFromLocation30Min;73811" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3ee27c64-a0b4-4ea0-bb32-786f1f161029" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ea766099-4ed2-45a9-b70c-01985ada6a80" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ed82aaa6-570e-435b-a24c-3e6440210eb4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215028Z:ed82aaa6-570e-435b-a24c-3e6440210eb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4DE737E323164DADA0DEB6697BA75195 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:50:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:27 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-zhcn/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNDM5My44MDY2LjI1MDUxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11915,Microsoft.Compute/GetVMImageFromLocation30Min;72883" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0928555a-032f-4ab9-982f-7f6e44514962" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b720f870-0084-47c9-abe7-328cc9a78fef" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "db1358ab-942c-42f0-bf71-83e3092f17f5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215258Z:db1358ab-942c-42f0-bf71-83e3092f17f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B1AD2F8751354455B192D30FB904FC3A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:58 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2910f829-8cd7-4e8d-89cd-341e6c68c902" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15973,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43967" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "347ed435-3d7c-4bdc-a1bc-a168e989db3c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9aad502f-3a8f-4823-8997-9b8a2d1affb6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7078dfb6-ad3d-4f1f-8bfc-c18b342003c9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215028Z:7078dfb6-ad3d-4f1f-8bfc-c18b342003c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 55B1552D53AC48D08C4510335718ABC7 Ref B: MNZ221060619045 Ref C: 2025-06-02T21:50:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:28 GMT" + ], + "Content-Length": [ + "5358" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15887,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43866" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2f7bb36a-018a-4e9c-821d-e7be002872a6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/620d85b4-a4c6-432b-92fe-c560f5197d4e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a8bdb303-4164-4cc0-9071-293a9a43c052" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215259Z:a8bdb303-4164-4cc0-9071-293a9a43c052" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5809544786964B11B688B7F6A76B4B5A Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:58 GMT" + ], + "Content-Length": [ + "5358" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My42NjE0LjI0MDEwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "16df0138-32f5-49f6-970d-854cf3815f85" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12813,Microsoft.Compute/GetVMImageFromLocation30Min;73810" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0d009c37-ce39-4140-9ce6-529e069a83ee" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8ea968c9-f67e-4452-b8a1-75a76e5cce02" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6c0e6634-1779-480e-bbbd-df9db5a7b296" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215028Z:6c0e6634-1779-480e-bbbd-df9db5a7b296" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 74BFAFC985E04653B2AE0D91E47B6A11 Ref B: MNZ221060609035 Ref C: 2025-06-02T21:50:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:28 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My42NjE0LjI0MDEwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11914,Microsoft.Compute/GetVMImageFromLocation30Min;72882" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cc8ec6e1-d600-4f2c-b702-f7e65c13113c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c6a98952-9cee-48f3-b1aa-759ae894926c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "021d7bed-abac-4a65-acd1-f7ea0655bdc3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215259Z:021d7bed-abac-4a65-acd1-f7ea0655bdc3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 598D8F78488D4314A75BCEA93D3C9A53 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:58 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My42NzA5LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ed22bcdd-66a4-4ed8-ae6f-921a8d4ba6ab" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12812,Microsoft.Compute/GetVMImageFromLocation30Min;73809" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "508c5a2f-658d-409c-a4bc-66de08f15de4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7f4cb620-046d-4612-9c55-df629ebce5a6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4cf41fdf-0c51-4f89-965a-74a89f62fb99" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215028Z:4cf41fdf-0c51-4f89-965a-74a89f62fb99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7993880C1B8F415CBC51384A953981DC Ref B: MNZ221060608049 Ref C: 2025-06-02T21:50:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:28 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My42NzA5LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11913,Microsoft.Compute/GetVMImageFromLocation30Min;72881" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "128f2aba-4822-4227-a4d4-ebe50ed2963a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/68f48f51-2043-47c6-b026-9e65316c9442" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "b6d1608c-6005-4513-9060-55f149e6c7ca" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215259Z:b6d1608c-6005-4513-9060-55f149e6c7ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 406FFA8F249549F6B505D39424F0B134 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:58 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My42Nzk2LjI0MDMwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8bb01377-8c9e-4b97-98b8-8096cf43e055" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12811,Microsoft.Compute/GetVMImageFromLocation30Min;73808" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "00f7261f-dcae-493f-aff3-e5b0c8bf9d68" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ae6aad64-1986-4f41-ae08-5157702a75f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "268caf9c-b705-4369-8da6-e28068a67509" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215028Z:268caf9c-b705-4369-8da6-e28068a67509" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F2165B60BF274557B8AC7D4FEC5EFD96 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:50:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:28 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My42Nzk2LjI0MDMwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11912,Microsoft.Compute/GetVMImageFromLocation30Min;72880" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ef265a2e-91d4-435e-bc0a-8c67ece657a1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e7e8f58c-5f2f-4437-85fc-c7b95f25960c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ae391b0b-2c2b-40d3-8e24-c5d7a480e5bb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215259Z:ae391b0b-2c2b-40d3-8e24-c5d7a480e5bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F62722BB3A0407D92C822586C4D7AD5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:58 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My42ODk3LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e4b21fdc-7b26-4a36-bbc3-c1fc24ae6657" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12810,Microsoft.Compute/GetVMImageFromLocation30Min;73807" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4978ad89-9229-4a7e-beff-ee15ddcd83a6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/df0c783c-46f6-4aeb-ba9e-db8dae118393" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f437c88c-2d3f-42bc-b30e-ccd6b91a7f76" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215029Z:f437c88c-2d3f-42bc-b30e-ccd6b91a7f76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 09B46A9DA2834BE7B99EF409F8192AC3 Ref B: MNZ221060609053 Ref C: 2025-06-02T21:50:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:28 GMT" + ], + "Content-Length": [ + "1167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My42ODk3LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11911,Microsoft.Compute/GetVMImageFromLocation30Min;72879" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "77be7cf1-c37a-4cb6-b2ee-1a279d71cf39" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ac705682-43b6-4db2-9dfe-3bf5599b54cc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5510a1c8-7140-4d92-855a-61260c0fce41" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215259Z:5510a1c8-7140-4d92-855a-61260c0fce41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A753C8F29CAE4309BDBB227F745C8996 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:58 GMT" + ], + "Content-Length": [ + "1167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My42OTgxLjI0MDUwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0d606884-6405-46f4-bcf8-850a701e964d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12809,Microsoft.Compute/GetVMImageFromLocation30Min;73806" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2c92022c-f5ee-4397-88c0-26dd90f26f4d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e32e9ad8-377d-441e-9d58-a2997e259af2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f3d48817-d114-45bd-8e16-c03432230f2f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215029Z:f3d48817-d114-45bd-8e16-c03432230f2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 893E250A69714E878BE1A7B1A59E263F Ref B: MNZ221060610039 Ref C: 2025-06-02T21:50:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:28 GMT" + ], + "Content-Length": [ + "1167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My42OTgxLjI0MDUwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11910,Microsoft.Compute/GetVMImageFromLocation30Min;72878" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "dab10bd4-f557-4213-8b1f-d5574e292a1b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/15ef9699-a1fa-4432-b982-147ec0efc9ca" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9bc3e3e4-61cd-448f-b688-1d1b49aadc4e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215259Z:9bc3e3e4-61cd-448f-b688-1d1b49aadc4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C1C8910A18E244A0B8031D114C4E16D4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:58 GMT" + ], + "Content-Length": [ + "1167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43MDcwLjI0MDYwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "155b1f44-0261-480d-a0ef-4b6066d383a2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12808,Microsoft.Compute/GetVMImageFromLocation30Min;73805" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7c6bbccb-f363-4f24-b852-08d124018a16" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b98ab345-08cf-455a-aa6b-ad78b4c52f71" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bd8d4d91-94e5-45d0-b3b7-f6894b33dbc0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215029Z:bd8d4d91-94e5-45d0-b3b7-f6894b33dbc0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B819EFF73474511BB26BDFA471FAD42 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:50:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:28 GMT" + ], + "Content-Length": [ + "1167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43MDcwLjI0MDYwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11909,Microsoft.Compute/GetVMImageFromLocation30Min;72877" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "830a536a-3274-4e40-bb45-573fbc87e210" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7177decc-73d0-48ec-9ff7-709322aeb6fc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "8c766211-d024-48a9-a292-bc4edc9e10bb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215259Z:8c766211-d024-48a9-a292-bc4edc9e10bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9D13B41B866044309692352E079870FF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:58 GMT" + ], + "Content-Length": [ + "1167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43MTU5LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "17c306f4-5be1-4f47-bcfc-962f1c88b6dc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12807,Microsoft.Compute/GetVMImageFromLocation30Min;73804" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c0616d3d-2f76-4397-9ca3-7bdfaa42f9ea" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/828ca899-f58f-4baa-bdcc-9349f36ea6be" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3fdb8f29-b8ff-4a46-9df3-0c7d1559fefd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215029Z:3fdb8f29-b8ff-4a46-9df3-0c7d1559fefd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1CFC415CA4134ECFB2BE0960B6A8296E Ref B: MNZ221060610011 Ref C: 2025-06-02T21:50:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:28 GMT" + ], + "Content-Length": [ + "1167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43MTU5LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11908,Microsoft.Compute/GetVMImageFromLocation30Min;72876" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d49ea09d-1563-4f7e-bb12-1544df543a66" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/27bac807-7a9d-4f84-9e9e-1722b979b2f4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4c0234dc-4d32-4d8f-8284-aa4154c376d2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215259Z:4c0234dc-4d32-4d8f-8284-aa4154c376d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 82DAD15A8E924B36BA3473126D849C67 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:58 GMT" + ], + "Content-Length": [ + "1167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43MjU5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3c265c99-7b13-4900-8dc9-b07ecd31f21c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12806,Microsoft.Compute/GetVMImageFromLocation30Min;73803" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dc3831a0-9531-47bf-b1f2-ca4ba9f8e065" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f831ef18-28aa-4c68-b5be-a6efc7b6a92a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "77029773-efc8-4ff6-afd9-17af157ea587" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215029Z:77029773-efc8-4ff6-afd9-17af157ea587" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9FD81527D3494F67AC33A808CC9C18F4 Ref B: MNZ221060618009 Ref C: 2025-06-02T21:50:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:29 GMT" + ], + "Content-Length": [ + "1167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43MjU5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11907,Microsoft.Compute/GetVMImageFromLocation30Min;72875" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5e77c810-027e-4539-b779-f34b9b5e71cd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0a1bc8a6-86af-4cd7-ac2c-1cabdf031b11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a0dee487-3cf0-4bb0-ae3f-bc58b44626b9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215259Z:a0dee487-3cf0-4bb0-ae3f-bc58b44626b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 33C8EE536B3C43AEB72EB0E3A40E7FB0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43MzM2LjI0MDgzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d2240de8-f446-40fd-a2dc-0e556c1c7239" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12805,Microsoft.Compute/GetVMImageFromLocation30Min;73802" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1d6286b6-292e-4fe5-9f58-69d8a297c9ae" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/56e44748-2887-491c-a20e-48072631d3de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c8a4bfb7-9f55-493e-a131-21d35bd159ce" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215029Z:c8a4bfb7-9f55-493e-a131-21d35bd159ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0E6EFF5AB0104232B19F9B731F97D3B4 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:50:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:28 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43MzM2LjI0MDgzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11906,Microsoft.Compute/GetVMImageFromLocation30Min;72874" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3a57c036-2179-4950-918e-142c7c520142" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/331ef8a4-54bc-4751-b27c-16060c1535cc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "25e74c4f-5c07-4340-8a2f-7f874dc83f2e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215259Z:25e74c4f-5c07-4340-8a2f-7f874dc83f2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B4A35D64DC8344BC83E2A57BE2C9B049 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43NDI4LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1f70490b-afab-4c9b-b313-6d96d25d9211" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12804,Microsoft.Compute/GetVMImageFromLocation30Min;73801" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f2f99cd-e427-44f1-999c-ba3ae7aa4f7a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a3ff0748-b6e2-4fca-b543-ff47867efcb9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "69b92678-dd32-480c-b4b5-7d44c40929e5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215029Z:69b92678-dd32-480c-b4b5-7d44c40929e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0AE753EA1C0C48429B9633871C568114 Ref B: MNZ221060610007 Ref C: 2025-06-02T21:50:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:29 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43NDI4LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11905,Microsoft.Compute/GetVMImageFromLocation30Min;72873" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bf6cbd17-c2d5-4417-9ec6-c21e801ecaa4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a716409c-86fd-4e6f-a630-7ac7c224580d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "504543f0-6b2c-48ac-b389-e34be3196227" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215259Z:504543f0-6b2c-48ac-b389-e34be3196227" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8361DF7360774CB69273FEDFCE023357 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43NTE1LjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "58bf152a-9d0f-43d6-8eaf-557b03925df0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12803,Microsoft.Compute/GetVMImageFromLocation30Min;73800" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "79e991a1-d49b-4acd-97f6-6cca2f787622" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a378346a-4fd5-462f-8531-3561c53e6d97" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2d7895ca-5a32-408f-b237-ed3a52e210aa" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215029Z:2d7895ca-5a32-408f-b237-ed3a52e210aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 14B553664D7F4A20A9A19A0207A65AD4 Ref B: MNZ221060609035 Ref C: 2025-06-02T21:50:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:29 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43NTE1LjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11904,Microsoft.Compute/GetVMImageFromLocation30Min;72872" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "52dd2698-8602-462a-bb9c-f36f5f40713e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e37d4e4f-93ff-4a52-a9bb-8cf4fb8791ea" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "63ea1baa-1f39-44bd-8254-34c33f96df29" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215259Z:63ea1baa-1f39-44bd-8254-34c33f96df29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D5FFB0956B554EECB4FAC2D85AB51A76 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43NjA2LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f16cbd94-28c4-4798-b60f-e60df4576bed" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12802,Microsoft.Compute/GetVMImageFromLocation30Min;73799" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ff5a184b-9d71-4684-9d13-6c934ae7cba9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9dab503e-9557-4a6c-b063-e0cb56951876" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0be01883-ae3b-466f-add5-cbd5cc721414" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215030Z:0be01883-ae3b-466f-add5-cbd5cc721414" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 51BC6C9FDDB0498F8A0ADB35DEE4E1EF Ref B: MNZ221060610019 Ref C: 2025-06-02T21:50:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:29 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43NjA2LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12071,Microsoft.Compute/GetVMImageFromLocation30Min;72871" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7e6f1938-b751-4b27-8e9f-7dadfff9ee10" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5c26516d-8830-4b66-9621-c93e899b248e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "24405587-a41d-4f54-8453-c497b81f0462" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:24405587-a41d-4f54-8453-c497b81f0462" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 390E2A47E63243368D91BD934E99CE6E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43Njk5LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0ef7b5c2-a87b-4a2b-8280-50a265f75eb0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12801,Microsoft.Compute/GetVMImageFromLocation30Min;73798" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "28d4b898-7141-4218-9e8c-74dac1583401" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c0db0798-b485-4beb-9e8c-d551ef4fab24" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "79bddef7-f8fd-44ce-94c1-1fd441f2476b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215030Z:79bddef7-f8fd-44ce-94c1-1fd441f2476b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A96355024690426DBB3B495113A56A15 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:50:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:29 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43Njk5LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12070,Microsoft.Compute/GetVMImageFromLocation30Min;72870" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bd9c9643-9666-437d-874f-a3e0a9092020" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/336ee14b-389d-4d6b-a62e-1c4a121f8c1d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "66d5163f-9142-494f-bb79-24a1bca3ca8f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:66d5163f-9142-494f-bb79-24a1bca3ca8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8953E29C05654B6ABF71BAFC7BE9BBEF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43Nzg1LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9d77afc7-14c0-4e23-ab9c-cb02f4161c9e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12800,Microsoft.Compute/GetVMImageFromLocation30Min;73797" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d93d0914-4c1d-4926-b1d4-9cbe907f7a1e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d581b0fb-b955-43d2-89d2-288caeb6e575" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e6d41343-d741-4558-a002-e9d1f343f10f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215030Z:e6d41343-d741-4558-a002-e9d1f343f10f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5FB8920861014BF2AEA9BCD8BDD1DC93 Ref B: MNZ221060608039 Ref C: 2025-06-02T21:50:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:30 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43Nzg1LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12069,Microsoft.Compute/GetVMImageFromLocation30Min;72869" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b1fac282-a4bd-4fd4-a76d-5fc89ca77e08" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3771a8c8-0165-47ea-8ddd-57c8e60b4aed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "eaf85481-c829-49b8-a65e-a695839f48ae" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:eaf85481-c829-49b8-a65e-a695839f48ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 737503C7445B4D658F6D18FC86B665E2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43ODc2LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6b1a0278-8b30-4e7b-bf5a-ee5eb5c210c1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12799,Microsoft.Compute/GetVMImageFromLocation30Min;73796" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9b566e9c-3fb0-439c-b19d-d15b99bd2d54" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/66c1c188-6417-4471-bd11-617a7769a7c6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "906d0e06-4030-4a6e-9809-082ef0ddab2a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215030Z:906d0e06-4030-4a6e-9809-082ef0ddab2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3F2CA9A8EB624C6A941417A918A72B1C Ref B: MNZ221060618009 Ref C: 2025-06-02T21:50:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:30 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43ODc2LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12068,Microsoft.Compute/GetVMImageFromLocation30Min;72868" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "03505988-2365-479e-8dbc-8b0655a1139e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6420f36f-6384-460d-9050-11836ec1c533" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f99b3cef-de23-442f-b1ed-a1534a9587bf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:f99b3cef-de23-442f-b1ed-a1534a9587bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D01888905B4A4703BD2864BF1799A6FC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43OTczLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "920c7002-0c9f-465c-8e9d-96096a1f80f6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12798,Microsoft.Compute/GetVMImageFromLocation30Min;73795" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "abc2c6ed-6b1c-4087-9345-a80be99476c4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4616bf98-976f-491a-9d27-f510861fbe93" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1df46015-d562-4041-8df8-c82af16350ba" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215030Z:1df46015-d562-4041-8df8-c82af16350ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 51DBE93DD4B84EFB9507C6580E0EE642 Ref B: MNZ221060608039 Ref C: 2025-06-02T21:50:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:30 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My43OTczLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12067,Microsoft.Compute/GetVMImageFromLocation30Min;72867" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d7b7b531-e2e9-4358-b326-30266a69b9bb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a2a2b4b2-0f94-4226-8010-ff0c6253a953" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "970c5630-668a-41d2-9c90-082a0999f2e8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:970c5630-668a-41d2-9c90-082a0999f2e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 92B06FD0979147849A112210AFC98FA0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My44MDY2LjI1MDUxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "31d668f6-2039-45fd-b5ad-6225bbe7275a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12797,Microsoft.Compute/GetVMImageFromLocation30Min;73794" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1d5c80b0-5e6b-4b33-8347-80f9bd5cb6c8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/17fb7634-ef31-4beb-97ad-ac8b6e070c66" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "68d4f690-da90-4cc7-affa-b77df5870f3e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215030Z:68d4f690-da90-4cc7-affa-b77df5870f3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8245B0A0F2654F87BA5029FB892E574C Ref B: MNZ221060609019 Ref C: 2025-06-02T21:50:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:30 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-datacenter-zhcn-g2/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNDM5My44MDY2LjI1MDUxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12066,Microsoft.Compute/GetVMImageFromLocation30Min;72866" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "595d6beb-5c2b-4c67-ab7b-113ef90f111f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/adbefcaa-33b7-4938-b237-4d5efc586ad5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "16f96184-140c-4571-bbb6-019e79de827b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:16f96184-140c-4571-bbb6-019e79de827b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0A91C2C3B9794CF18CE9AB64801161AF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "df643bf0-badd-45aa-b4c7-0135fb250bc8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15972,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43966" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9996aa97-9caf-4fd8-89e2-a59b176db531" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1b42bdd7-f937-4e50-b383-eca462460647" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ef061f72-5de7-453c-9711-f087ec696cd1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215030Z:ef061f72-5de7-453c-9711-f087ec696cd1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DAB5A6C45EDF4A31B6F0C3BD3A2B8C6F Ref B: MNZ221060610039 Ref C: 2025-06-02T21:50:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:30 GMT" + ], + "Content-Length": [ + "5529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15898,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43865" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3da866cb-7612-4502-8e69-dcd44e9849d6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/31655b2a-9206-4285-8d35-dcbd25a570c9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8c326995-8e70-4a41-94d2-9303e6cd7a57" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215300Z:8c326995-8e70-4a41-94d2-9303e6cd7a57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C540B56B489C4FBC8D0566B1C755D2E4 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "5529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNTMyOS4yMzEyMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "534a0591-18bb-4ed2-94e8-24b2c5500e6e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12796,Microsoft.Compute/GetVMImageFromLocation30Min;73793" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cebc0cce-eab1-4b69-922d-13d5c2a5af95" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8dde0017-aff5-4700-8a77-d94b4262b7e0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c8700d4b-569e-4283-b100-1ba2e1098369" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215030Z:c8700d4b-569e-4283-b100-1ba2e1098369" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E61CC374A1C8464BAA4DAEE97B5A5088 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:50:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:30 GMT" + ], + "Content-Length": [ + "1127" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNTMyOS4yMzEyMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12065,Microsoft.Compute/GetVMImageFromLocation30Min;72865" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5d494d62-5385-411c-b571-18f77fba45bd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bf690437-c60a-45b3-9fe7-f5edb586e682" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ff1a328a-f993-4945-9cb5-89e245e27135" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:ff1a328a-f993-4945-9cb5-89e245e27135" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 15D0C882007C4E5487EA3AAF1E1368CA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1127" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNTQ1OC4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "52f6fc9c-a219-470c-bfff-86c23b2cbe21" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12795,Microsoft.Compute/GetVMImageFromLocation30Min;73792" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c2ecb79a-c527-4539-94ff-c0d18713299b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1799582d-dc1b-4f53-b943-5d8cc382bac3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "06fa9f94-7179-45c8-bda4-29134e933b82" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215031Z:06fa9f94-7179-45c8-bda4-29134e933b82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 87366D6D2EBC4C77B0B56042B61B49B9 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:50:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:30 GMT" + ], + "Content-Length": [ + "1127" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNTQ1OC4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12064,Microsoft.Compute/GetVMImageFromLocation30Min;72864" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c20c2547-c4e9-438c-b716-330645cb3042" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/efc3084a-4ec0-47e0-a707-7d101a345085" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "d1a81912-c1d3-42a3-9de6-8d5c88cbfb5d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:d1a81912-c1d3-42a3-9de6-8d5c88cbfb5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 25B85C61A34049E49D8B4F7ADC175F60 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1127" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNTU3Ni4yNDAzMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5eb4c771-95b5-4831-a508-c069ec5733d9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12794,Microsoft.Compute/GetVMImageFromLocation30Min;73791" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b4c24628-2013-4f40-9929-33dc7686df9a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4ad854dc-d0d1-4e47-b34a-a3c4d72790be" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6e91ad44-f5d1-4337-998c-9eaac686cce7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215031Z:6e91ad44-f5d1-4337-998c-9eaac686cce7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0C475216A7C842FE964A773E34D1C971 Ref B: MNZ221060618027 Ref C: 2025-06-02T21:50:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:30 GMT" + ], + "Content-Length": [ + "1127" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNTU3Ni4yNDAzMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12063,Microsoft.Compute/GetVMImageFromLocation30Min;72863" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "20bb58b1-89a9-47d9-84cd-e26f6cc0dd84" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1d2cbff5-224a-45ad-bcdd-3fe5f0dab13e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "436f4731-0ff0-4314-b0db-6066cc1a78a0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:436f4731-0ff0-4314-b0db-6066cc1a78a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E67863F2214243448F7ACC87FBE9245E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1127" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNTY5Ni4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bddcc4e1-3ea0-497a-bd56-c0f08a73fe11" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12793,Microsoft.Compute/GetVMImageFromLocation30Min;73790" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "edcf6aed-23cc-4e20-9edb-195e4cbaff28" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f1c9495a-7b38-412c-9d79-afd3a1898739" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2cd3fd72-f3f4-4ab6-95ba-c8dd9415883d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215031Z:2cd3fd72-f3f4-4ab6-95ba-c8dd9415883d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C32B1B9D4E2247A4B0E61D2A5A41750C Ref B: MNZ221060619039 Ref C: 2025-06-02T21:50:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:30 GMT" + ], + "Content-Length": [ + "1127" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNTY5Ni4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12062,Microsoft.Compute/GetVMImageFromLocation30Min;72862" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "89afa244-e201-4847-9556-add5faec6f2e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9b737f62-2ae2-4dc1-a282-3122822fd92f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "389672a3-55aa-476a-83b2-26864b03dec6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:389672a3-55aa-476a-83b2-26864b03dec6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4EE987DDFE6D472D891DA647B8901407 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1127" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNTgyMC4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "638275ca-cb00-4677-9ad9-1e37eafed223" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12792,Microsoft.Compute/GetVMImageFromLocation30Min;73789" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "17750243-1e96-40e5-bbe5-4610eb8275a0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ec60c954-f160-41db-b534-28d8913105a9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b4732354-a01d-42aa-b25d-84ea8bf5c97c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215031Z:b4732354-a01d-42aa-b25d-84ea8bf5c97c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2BB48AC6DB8489EB48295314178C788 Ref B: MNZ221060618035 Ref C: 2025-06-02T21:50:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:31 GMT" + ], + "Content-Length": [ + "1046" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNTgyMC4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12061,Microsoft.Compute/GetVMImageFromLocation30Min;72861" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "25c9c67f-16e3-4fc1-8b8c-342d77e2f988" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9cb9cbd1-0c4d-4ecb-aea5-40dbcbe0c56c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "0f95ff63-81db-41c2-b574-55809f733209" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:0f95ff63-81db-41c2-b574-55809f733209" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5C8522B74F454655BFCD72E27576B623 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:59 GMT" + ], + "Content-Length": [ + "1046" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNTkzNi4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c8053289-6e63-4b5e-95ae-7ead51bfb2b2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12791,Microsoft.Compute/GetVMImageFromLocation30Min;73788" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "14c4316b-6bd4-485d-aa7d-766703b57e10" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c21dd539-7b5a-4959-8b8f-d9d1e82853fe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6b7343f6-fe22-4944-ba7a-e42a7c63b067" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215031Z:6b7343f6-fe22-4944-ba7a-e42a7c63b067" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C1DDC11AA38B452C94DB01445A84FEEE Ref B: MNZ221060619049 Ref C: 2025-06-02T21:50:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:30 GMT" + ], + "Content-Length": [ + "1046" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNTkzNi4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12060,Microsoft.Compute/GetVMImageFromLocation30Min;72860" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "da6854ae-e4a5-4bb7-bba2-98af556913ee" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1512de45-314b-484f-a4d0-972d3097ee4c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "595b7ac3-5d7a-4373-987d-9ca0b0b6d34d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:595b7ac3-5d7a-4373-987d-9ca0b0b6d34d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 38E9A384576A4303BC0026047D1B98DA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:00 GMT" + ], + "Content-Length": [ + "1046" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjA1NC4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "16a8e7f8-1fab-4f3c-9f84-a2b9dc170eec" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12790,Microsoft.Compute/GetVMImageFromLocation30Min;73787" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "225c09a7-ecab-4fb5-b1b9-e6ae43e847ad" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e023c854-6b7d-4372-9a71-3a261d071604" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "f6325e6d-c667-48b5-a1bb-c99a475ab013" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215031Z:f6325e6d-c667-48b5-a1bb-c99a475ab013" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8561392161734835A41448150AAC86FB Ref B: MNZ221060619021 Ref C: 2025-06-02T21:50:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:31 GMT" + ], + "Content-Length": [ + "1046" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjA1NC4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12059,Microsoft.Compute/GetVMImageFromLocation30Min;72859" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "53295088-e5d3-4214-9bc3-01c2da00a905" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9721f868-5f0a-4453-8a80-c666a9c42542" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f948b4b3-8493-4533-94e3-24af4768bfa9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:f948b4b3-8493-4533-94e3-24af4768bfa9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D658A4E592EF4910B4FB5E8C440875E1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:00 GMT" + ], + "Content-Length": [ + "1046" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjE4OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a454a430-57e9-4a05-9db8-91bff6fc0f8a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12789,Microsoft.Compute/GetVMImageFromLocation30Min;73786" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a0f8c74f-6899-47bf-b344-753b19167117" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1b14551b-7da7-46f8-9ba4-ac1d22e90a7a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a59e9d7d-0fa5-4f96-9d11-95d1a0a9f087" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215031Z:a59e9d7d-0fa5-4f96-9d11-95d1a0a9f087" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F79B46A4EF1D457CA1DAE613CBB0F870 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:50:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:31 GMT" + ], + "Content-Length": [ + "1046" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjE4OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12058,Microsoft.Compute/GetVMImageFromLocation30Min;72858" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "46d957fb-9821-4d05-8fa2-1aa1bab7059b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d9f89c22-a60b-45c2-88f2-2f275d6ae42d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "d7619838-db75-49bd-b117-4f74ccf1ec15" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:d7619838-db75-49bd-b117-4f74ccf1ec15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D847450A58534A7BB537C4646725A9E7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:00 GMT" + ], + "Content-Length": [ + "1046" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjI5My4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "425c7209-a66f-4a02-8bf9-102c0020074b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12788,Microsoft.Compute/GetVMImageFromLocation30Min;73785" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "474b6b0b-a832-463e-9fbe-3495d974a181" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c36d683d-beba-49c9-a7cf-f7af16d9c579" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "526e798c-25f9-4d6a-9c40-7e654ef13ee6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215032Z:526e798c-25f9-4d6a-9c40-7e654ef13ee6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 98FEBBF646744DAAB861C8747066153D Ref B: MNZ221060619053 Ref C: 2025-06-02T21:50:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:31 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjI5My4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12057,Microsoft.Compute/GetVMImageFromLocation30Min;72857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "156f167c-d9f7-4df5-ab29-98a7263defd7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1ef7000b-a274-429a-888e-45d8502a7b88" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "f8060458-8a19-4e4f-814c-6a6153bd4abd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215300Z:f8060458-8a19-4e4f-814c-6a6153bd4abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 031407487F97418A95297018F474C183 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:00 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjQxNC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "98286a9a-7a4e-4334-8eaa-afa793965d26" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12787,Microsoft.Compute/GetVMImageFromLocation30Min;73784" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4e37ced2-3f03-4134-94dd-baaeead9c6e6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/efd0c2c3-90de-4775-962e-8f61c5f421c4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "e0488207-c77c-46eb-99f7-2324845fa11b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215032Z:e0488207-c77c-46eb-99f7-2324845fa11b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EC09DB881F66434382054437219CE420 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:50:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:31 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjQxNC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12056,Microsoft.Compute/GetVMImageFromLocation30Min;72856" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "51695470-863c-454d-9d81-a4e8c112ddb8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/60eb6d5c-9d86-4e59-ae4b-3dbb5809f903" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "5fdaa8c1-2854-499e-85ea-795f401aac76" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215301Z:5fdaa8c1-2854-499e-85ea-795f401aac76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3F1FBD14B1BA42FDB8720EC31BE666F5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:00 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjUzMi4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7cc1b021-dd44-4130-8378-aea2c937bd4b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12786,Microsoft.Compute/GetVMImageFromLocation30Min;73783" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e9c4e7c4-c2b7-44a3-81c6-2897451078b9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/21466a00-27d4-4fd8-ad98-a2c803fc09aa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f0475d57-655f-4e4d-8dfd-03583491bb88" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215032Z:f0475d57-655f-4e4d-8dfd-03583491bb88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2246351F6B2E4F748D800E0AAE14A9EB Ref B: MNZ221060619023 Ref C: 2025-06-02T21:50:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:31 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjUzMi4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12055,Microsoft.Compute/GetVMImageFromLocation30Min;72855" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9cb4fd15-6524-4c29-b984-a4d7bbd3b695" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b2bd6da1-7ea3-4de0-bc90-d5275be79eb6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "f86dfece-842e-48ea-b18f-c9379d620bcc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215301Z:f86dfece-842e-48ea-b18f-c9379d620bcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5E7077798F274BFB828A5BB8D8F34D9B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:00 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjY1OS4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cc0d1954-0180-4903-823a-fe2baadebccd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12785,Microsoft.Compute/GetVMImageFromLocation30Min;73782" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f291f3b1-8add-4ceb-a655-5a4ee92de9ca" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5e82f095-fb4c-484e-aa19-591493a42ad6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "40127ecb-6201-4419-9f04-36ec2b8da039" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215032Z:40127ecb-6201-4419-9f04-36ec2b8da039" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EE89AAF52C7C49F0B70CC95A6C0D38D5 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:50:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:32 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjY1OS4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12054,Microsoft.Compute/GetVMImageFromLocation30Min;72854" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0d1ab8c6-32ab-4366-bceb-97d6f4e3eb42" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/afd6c7c9-d448-4894-a57f-a7c003d5b2e0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "94697e5d-8c05-45aa-94af-0ad3d0eaf9c2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215301Z:94697e5d-8c05-45aa-94af-0ad3d0eaf9c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D9FD58B1F2564247A2846E2A9B6D48E8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:00 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4178458b-3ce4-4113-babb-44c1ece0f7fd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12784,Microsoft.Compute/GetVMImageFromLocation30Min;73781" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "73590fb6-bec3-42b4-8bc5-fc50af2f42fe" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5864ba48-6efb-4cda-8b75-d2e8ba2d5606" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b72ef436-cc6f-4da3-a125-5ba3e6a36c9d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215032Z:b72ef436-cc6f-4da3-a125-5ba3e6a36c9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C7488A3C9FA24A64817D8E24BBB72DB8 Ref B: MNZ221060618037 Ref C: 2025-06-02T21:50:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:32 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12053,Microsoft.Compute/GetVMImageFromLocation30Min;72853" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "73e815d8-56b8-447a-97b5-877c75b10100" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/040de25c-4e7e-4122-8fc7-9f01fc729996" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8acb29f9-9fd6-4207-9b5c-6ce008a5a41b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215301Z:8acb29f9-9fd6-4207-9b5c-6ce008a5a41b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EB96E85061B9444A88B94733C5300238 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:00 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9b33abd6-9fb4-4618-9489-be3728170a7a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12783,Microsoft.Compute/GetVMImageFromLocation30Min;73780" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "193ca375-ae8d-49be-aed8-e2381b02fe56" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e98dbd0c-8485-4232-84c8-692d75049180" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "716bd5c0-2e08-4901-bbe8-4bb4e3a43650" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215032Z:716bd5c0-2e08-4901-bbe8-4bb4e3a43650" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 16812760517643F9BC9E2E9631BC4C38 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:50:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:32 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12052,Microsoft.Compute/GetVMImageFromLocation30Min;72852" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "adf81de5-07cc-4d39-9bdb-59295642ee3c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5724a9a5-2da1-4ff8-9fbc-85d896e11d97" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b6ff81ca-ccae-4e8f-a15e-cc6dbd836dee" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215301Z:b6ff81ca-ccae-4e8f-a15e-cc6dbd836dee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CB3F2B462504480BBD238FB63B5EBC11 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:00 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2f940bf4-1233-489f-8bf3-58db30839aff" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12782,Microsoft.Compute/GetVMImageFromLocation30Min;73779" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "944f0cfe-2d05-4888-ada6-e04fe9b80928" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b446750b-b785-403f-9813-5ca0c403b3ff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fc3e5f3b-5579-449b-b12a-fd68b237d801" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215033Z:fc3e5f3b-5579-449b-b12a-fd68b237d801" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 28FAE707280D461DA4AAC96053ED09E0 Ref B: MNZ221060619037 Ref C: 2025-06-02T21:50:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:32 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12051,Microsoft.Compute/GetVMImageFromLocation30Min;72851" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ee933e3c-6e00-4bd4-8ff3-f8622d95aae6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a8445ae2-2dcd-4f83-88a8-2f3f97ed2b8f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "232a4b3d-696e-4a4d-b43a-86ac9f712e34" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215301Z:232a4b3d-696e-4a4d-b43a-86ac9f712e34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 371E75477ABA4E6392732C3EAE86ACAD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:00 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6e775994-dbf6-416c-acbf-d05f72e92b96" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12781,Microsoft.Compute/GetVMImageFromLocation30Min;73778" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "489b90fc-c7cc-4c55-a2e1-386a9d448b86" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a410a57d-0687-42d1-8d2f-568ef5b5ce29" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a771c011-9fa9-46a8-be66-984301aa0e08" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215033Z:a771c011-9fa9-46a8-be66-984301aa0e08" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C9872D27255D460589213A6ADC48BFA1 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:50:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:32 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12050,Microsoft.Compute/GetVMImageFromLocation30Min;72850" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5db08f2d-9c53-402a-837b-e09d04ad7599" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f4d8730b-8e90-49cb-9ddf-a03aed693290" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6e8818b8-3d06-47bb-a8c7-ae2dbf9d441d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215301Z:6e8818b8-3d06-47bb-a8c7-ae2dbf9d441d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E2178297FF1D40E283672532B58D532E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:00 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "416a2ee4-2a0b-4ae3-9ef3-a8d58ef2b272" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12780,Microsoft.Compute/GetVMImageFromLocation30Min;73777" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a3c19eb0-ab0b-4730-abea-4c9d80d513fc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bb3b39cb-f4d3-4b43-aa33-268c46ed95e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "02fd91db-f03f-4846-802f-9a338d781728" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215033Z:02fd91db-f03f-4846-802f-9a338d781728" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB2D5CAFB3404AB2A769DC4816380A2B Ref B: MNZ221060608031 Ref C: 2025-06-02T21:50:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:33 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12049,Microsoft.Compute/GetVMImageFromLocation30Min;72849" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3ed56d86-f0fa-4839-b61d-c6bb7b5235dc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1d89f67d-15b5-4255-9424-74e9c6454ae1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a0e9b321-7a86-4b67-acda-11a5fd33fe87" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215301Z:a0e9b321-7a86-4b67-acda-11a5fd33fe87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 81BF824BA6AA4027B205EFD0EC5A8BC0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:00 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7701667c-ce05-47af-92fe-3ce024693dd0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12779,Microsoft.Compute/GetVMImageFromLocation30Min;73776" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "81f703c7-c3af-468e-89b0-c45ebe1ec582" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/62320b55-7d08-4555-8375-7b1f9f099489" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "da3211e9-a6a3-43fe-aa71-f3daee30e723" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215033Z:da3211e9-a6a3-43fe-aa71-f3daee30e723" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BC3B2598476B457EA2BDD0B23CD36CA3 Ref B: MNZ221060608037 Ref C: 2025-06-02T21:50:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:32 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXIvdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12048,Microsoft.Compute/GetVMImageFromLocation30Min;72848" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fbdeea8f-442c-4107-abd3-54b27fd23c76" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ce01d829-ac35-4857-9093-85d84c0020d6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "7e24e0b5-1328-4ba1-98c9-e6ed7197eace" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215301Z:7e24e0b5-1328-4ba1-98c9-e6ed7197eace" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 81E81D2CF6A84E719AF46DC4162B3A2D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:00 GMT" + ], + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1e98e4b0-868b-4207-8e3d-f2bd0616a3e8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15971,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43965" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "634b9f09-f89a-4997-b731-5cee9f7a8c83" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2a2bc0b6-25f6-4609-a182-12b3ef86a185" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1d11f7d6-9c0d-4253-b650-d616837dad35" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215033Z:1d11f7d6-9c0d-4253-b650-d616837dad35" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 03F9E31BA1AC4015B163932F87148527 Ref B: MNZ221060619037 Ref C: 2025-06-02T21:50:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:33 GMT" + ], + "Content-Length": [ + "5619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15897,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43864" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4ffb3888-0d1b-4273-b979-8fe184d10f73" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b597aa8b-4812-403d-b0bc-1f5ce38b54a4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b718c3e1-3d79-4330-9808-ae3cb0f6a55e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215301Z:b718c3e1-3d79-4330-9808-ae3cb0f6a55e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4E755858F8004E939C49B88DBD36449B Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "5619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My41MzI5LjIzMTIzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bbbb0e2e-3e11-4e35-961d-a0dea69676b8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12778,Microsoft.Compute/GetVMImageFromLocation30Min;73775" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f7f8f4e0-d2ec-489d-b2f9-9bd94d0caa74" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e8a61cf8-5045-4e73-8f20-230da71acc32" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6061ae1a-c207-42b2-8339-a2e501c0ce99" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215033Z:6061ae1a-c207-42b2-8339-a2e501c0ce99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A6BBD906143B43F2A4D32BAE964DB483 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:50:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:33 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My41MzI5LjIzMTIzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12047,Microsoft.Compute/GetVMImageFromLocation30Min;72847" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "75f28a66-c1bc-42b1-8c5a-98f57fd04a2f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/395f2d2e-6d02-4d14-8532-c2f5d16e3291" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "17edee28-7efe-4179-9d88-76d29f9dead2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215301Z:17edee28-7efe-4179-9d88-76d29f9dead2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 30AEEC71BE29449EBAA0F163D613FF26 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My41NDU4LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a7383562-7ea5-4d21-9ae4-7e495fa4e1c6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12777,Microsoft.Compute/GetVMImageFromLocation30Min;73774" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0eb4fa4f-e1ad-4617-9107-1105208c60c2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b4f8b292-7a89-4823-859d-b3bac05a9b7d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "513ebf70-5afb-43e6-9a54-b244d366e242" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215034Z:513ebf70-5afb-43e6-9a54-b244d366e242" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 67BFC07F3C9D4420803BE76B1EAE71DA Ref B: MNZ221060618051 Ref C: 2025-06-02T21:50:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:33 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My41NDU4LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12046,Microsoft.Compute/GetVMImageFromLocation30Min;72846" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5de0b7eb-82d0-46f3-a59b-f6799b89826f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d1526b5f-08d1-4c40-8265-25c770276011" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ae6b82b5-e617-4ed4-b228-31c6481fcde6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215301Z:ae6b82b5-e617-4ed4-b228-31c6481fcde6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F1BDA48AA17C4F9FB2B32D2A2B42F69B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My41NTc2LjI0MDMwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "31849a5b-c8d8-4f36-83b8-fd4d9f28ea70" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12776,Microsoft.Compute/GetVMImageFromLocation30Min;73773" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3d754b32-8dee-402b-b547-4bcbc8728df6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d58137cd-69ae-4a4d-8184-143778a85755" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4c713229-c4e7-483b-ae46-749475aa1073" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215034Z:4c713229-c4e7-483b-ae46-749475aa1073" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7F9B5D592C804F3F8B5648BB38596851 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:50:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:33 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My41NTc2LjI0MDMwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12045,Microsoft.Compute/GetVMImageFromLocation30Min;72845" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1948eabe-a6af-42e9-a94e-2aafca0c56ff" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5e9e85de-ec64-4f52-bdc2-c4ca1a95500d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "6e2b397b-53bd-45e4-b23c-d54203f4a48d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215301Z:6e2b397b-53bd-45e4-b23c-d54203f4a48d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E225784B052F4F06A5E9357648B76B68 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My41Njk2LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cacaad22-7c62-4777-89c7-7415b4fb8df5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12775,Microsoft.Compute/GetVMImageFromLocation30Min;73772" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1a53ea1f-6d33-48ab-b078-6e1d1ea1f212" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bdfa48c6-5a37-4e0b-a526-730f30bbd756" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cbc2b984-fcde-4138-87ed-ad7d56d6dc94" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215034Z:cbc2b984-fcde-4138-87ed-ad7d56d6dc94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D50EBE82E8CD402784621E2BEFF4BDCE Ref B: MNZ221060609009 Ref C: 2025-06-02T21:50:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:33 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My41Njk2LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12044,Microsoft.Compute/GetVMImageFromLocation30Min;72844" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f0640caa-5149-4f4b-b124-e4fffe0c6faf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2fd6bb52-573c-4f8a-ac0a-a388c8ecd4fd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "1ebacc84-034c-42ed-8a1d-92eb51bed44c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215302Z:1ebacc84-034c-42ed-8a1d-92eb51bed44c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B522EE0DCECF49469BFBD9C48DE96E0D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My41ODIwLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f8b89ba5-c2a1-4862-b007-54d8b92c265c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12774,Microsoft.Compute/GetVMImageFromLocation30Min;73771" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c72a4aa-16a7-4a83-a693-3f59ddec5aea" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/68be5ee0-58a9-4ad9-9f96-b08c0c9dc1a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "edbdd3ee-dc03-4247-9cc8-d3fe6dc98a89" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215034Z:edbdd3ee-dc03-4247-9cc8-d3fe6dc98a89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 12D7B8B72A174B45831156E5C6D113FA Ref B: MNZ221060609035 Ref C: 2025-06-02T21:50:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:34 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My41ODIwLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12043,Microsoft.Compute/GetVMImageFromLocation30Min;72843" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "598e7a1e-f429-46da-a875-c66ad6efaf85" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0cd3f164-27f2-4c4f-a7bd-0cf1f0190ba2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6890e285-60d8-4c00-a091-dca5127e6b31" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215302Z:6890e285-60d8-4c00-a091-dca5127e6b31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F3660D9D825F42F7B55F53A1E917D209 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My41OTM2LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cfa1566e-54cf-43b4-a20b-480307beb405" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12773,Microsoft.Compute/GetVMImageFromLocation30Min;73770" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a4957d88-3e31-4941-935d-372026ed7fbc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/527ce889-a336-4807-82a0-1df3778fa368" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "528366f4-9df0-4e66-837e-2cc674c6c930" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215035Z:528366f4-9df0-4e66-837e-2cc674c6c930" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DDBA8A8B4FE24A24B83784882469143E Ref B: MNZ221060609049 Ref C: 2025-06-02T21:50:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:34 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My41OTM2LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12042,Microsoft.Compute/GetVMImageFromLocation30Min;72842" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "89b27b98-30b4-43da-a6e4-4296a209152f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a2c78d26-6182-4086-8c2b-64046a1ebc0a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "22b32e7b-deae-46ce-b79a-f077d6df64dc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215302Z:22b32e7b-deae-46ce-b79a-f077d6df64dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C1B1873EDE674DFC84B12B30642AEB6F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42MDU0LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "40046c01-0074-4fff-aba2-1ab5bc7a54e1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12772,Microsoft.Compute/GetVMImageFromLocation30Min;73769" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "47cff442-b0c2-4880-b2b9-28392e6b08e9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/026df996-e8d2-403f-914c-fe5e33c39e05" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bb61f36c-2af3-4302-b3da-b6ae57c240be" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215035Z:bb61f36c-2af3-4302-b3da-b6ae57c240be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D6EC61D4843C43699F6B634C9DC10EC7 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:50:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:35 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42MDU0LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12041,Microsoft.Compute/GetVMImageFromLocation30Min;72841" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6ebe243b-717a-41eb-8486-c4bbcc987f2a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/116cdfe6-2c59-4d41-b9ec-61677c3eac23" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "09350b8b-4d7d-4320-808c-273559a59f88" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215302Z:09350b8b-4d7d-4320-808c-273559a59f88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6BB3939FE87D4C6CAA34C5E9564314E6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42MTg5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f85c2ff2-1822-49c4-8794-1564af2378cc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12771,Microsoft.Compute/GetVMImageFromLocation30Min;73768" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "db2cd08a-6ff7-47de-a33c-6dcd09733e66" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ad020976-196b-4a91-87f0-1bd7f6d85c5f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2574b0ce-ef5d-439f-ae08-0a12257f7fcf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215035Z:2574b0ce-ef5d-439f-ae08-0a12257f7fcf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F50A3D79FB684DED83844E8D62788DDD Ref B: MNZ221060618053 Ref C: 2025-06-02T21:50:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:35 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42MTg5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12040,Microsoft.Compute/GetVMImageFromLocation30Min;72840" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "73f1578a-b631-4e16-a6bf-4fa4bd040663" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f9891575-1895-4e5b-b202-5eeb09c9a876" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "aa68b4e4-de39-47be-8f8e-99b51a45ac12" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215302Z:aa68b4e4-de39-47be-8f8e-99b51a45ac12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C228B21A4C00492E9093755A4B34F4C3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42MjkzLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f777769d-311f-4ab5-8c5f-3aae82822df9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12770,Microsoft.Compute/GetVMImageFromLocation30Min;73767" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8d6c3c18-8712-4042-a806-fe9bea2e5b55" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c084ff2e-2729-4d45-9b45-7f16aca84eeb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6011b4e3-5373-41bc-916a-1950abd8bc79" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215035Z:6011b4e3-5373-41bc-916a-1950abd8bc79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8FC4EAD2854447AE87338A52F36E54BF Ref B: MNZ221060609037 Ref C: 2025-06-02T21:50:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:35 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42MjkzLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12039,Microsoft.Compute/GetVMImageFromLocation30Min;72839" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4840e2e6-03e0-429c-8e16-e678c00b00a2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/79102ee2-24fb-4482-bd86-d8a96a3d7e36" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "59b06a14-abe5-44d0-861a-f4150b46488a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215302Z:59b06a14-abe5-44d0-861a-f4150b46488a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3068C35A019948E79DE66A79CC3208B5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42NDE0LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2d47af24-275b-454f-94a5-f1f4e29ccadb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12769,Microsoft.Compute/GetVMImageFromLocation30Min;73766" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "84fe2447-dd91-4517-ae1e-815ebad0cc54" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a38fde2a-547b-4445-bf3b-bddc8967d422" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1773b648-4a40-4328-be9d-26c2b7d7ed1c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215036Z:1773b648-4a40-4328-be9d-26c2b7d7ed1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2F99276D709406F8FD7DAA22508C8DC Ref B: MNZ221060609053 Ref C: 2025-06-02T21:50:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:35 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42NDE0LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12038,Microsoft.Compute/GetVMImageFromLocation30Min;72838" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8a37d131-874c-4c69-a9a1-1709b1fad632" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b5fb68bb-a439-4153-b01c-a99e21428d7b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "228b7cb4-20e4-411d-a2a5-72d4acf2a6c0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215302Z:228b7cb4-20e4-411d-a2a5-72d4acf2a6c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2BD21B5A8E4E41D8BEF3B136235CD225 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42NTMyLjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6f532c53-a7a1-499d-9762-3990141ad916" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12768,Microsoft.Compute/GetVMImageFromLocation30Min;73765" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e9d98b53-4d9f-4073-a6eb-fd15e0a640c8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/09ea975b-447d-4bc4-a50b-dfd2ef7b6834" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a23fe6f0-7d0f-41d7-a385-3052ca712deb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215036Z:a23fe6f0-7d0f-41d7-a385-3052ca712deb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C622C066D4AA481F8C8A99B7BC61667F Ref B: MNZ221060609029 Ref C: 2025-06-02T21:50:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:35 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42NTMyLjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12037,Microsoft.Compute/GetVMImageFromLocation30Min;72837" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "99855b15-2495-44e7-9185-096bd396a7b8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fd11b907-87f4-4a0a-9340-09f5297eb968" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "1308e911-6fcb-4004-a963-f833247603f5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215302Z:1308e911-6fcb-4004-a963-f833247603f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A68DD573ED9E4431A15A07097F214A5F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42NjU5LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9c62046b-289b-4812-b12d-391dd5eda536" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12767,Microsoft.Compute/GetVMImageFromLocation30Min;73764" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6e315de5-418c-4e26-9de7-813565ce317c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e9ddb5b2-01aa-48a4-a982-7b65f779bfba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d9b23a8a-7ffb-4732-9a48-fe9205711834" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215036Z:d9b23a8a-7ffb-4732-9a48-fe9205711834" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 659514250E374D9B88C1EEF1E59DF3AC Ref B: MNZ221060619033 Ref C: 2025-06-02T21:50:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:35 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42NjU5LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12036,Microsoft.Compute/GetVMImageFromLocation30Min;72836" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0b46a8e3-7fc3-485a-add1-65e0eec28723" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c1b67dea-0f28-48f0-bd59-2cf0a4abc20c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "63d834a9-3a38-4358-856b-b76087dbced3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215302Z:63d834a9-3a38-4358-856b-b76087dbced3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A57EC71BEB434BFFB678F3E7FFE1CD80 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42Nzc1LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eb04271e-f1aa-48a0-8238-7d6bf6410ed8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12766,Microsoft.Compute/GetVMImageFromLocation30Min;73763" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "393c67f0-21fb-4dc1-a53f-09f77f008594" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6548141c-7c06-43da-8869-3285947dcb5e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "07953e3f-6459-4248-ad76-a9f4cd016428" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215036Z:07953e3f-6459-4248-ad76-a9f4cd016428" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 78E19016D1DA4F9CA3289EB5E979D6E2 Ref B: MNZ221060619023 Ref C: 2025-06-02T21:50:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:35 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42Nzc1LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12035,Microsoft.Compute/GetVMImageFromLocation30Min;72835" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "22fa6073-74bb-4656-8bd1-7e538d28e461" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1347f160-38f3-471c-9034-657a98868f41" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "892c7670-f293-407a-b2a9-5c898c8972e6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215302Z:892c7670-f293-407a-b2a9-5c898c8972e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 403C44546654470EB2E83461EC0B46CC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:01 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42ODkzLjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ea6eb704-aef7-4461-90cb-32537a6941d7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12765,Microsoft.Compute/GetVMImageFromLocation30Min;73762" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "470cc571-5947-49ba-b8b5-4be88c49f8c0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2e63b987-f3e0-4b2f-a0af-d112962ac4b1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5d28ab77-37a5-4340-8451-29345350e862" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215036Z:5d28ab77-37a5-4340-8451-29345350e862" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FF6056BE226D416C8746C673ED10FC32 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:50:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:36 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My42ODkzLjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12034,Microsoft.Compute/GetVMImageFromLocation30Min;72834" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4b319db0-c5a1-428e-a8d3-af0bafd6408d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/49886535-0066-4c6b-9492-6ff436096c59" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "d49e362f-6378-49b0-a153-59495f1526b6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215302Z:d49e362f-6378-49b0-a153-59495f1526b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8195077685494360B047EEB1BBA369B6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:02 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My43MDA5LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7387c8cb-74c4-4a52-bb20-21ae6a104369" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12764,Microsoft.Compute/GetVMImageFromLocation30Min;73761" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4629284c-18f5-4a4d-8485-16dc1edbb999" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/24dcbf10-5cb1-4025-a7e3-5e9da94b98d6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b7dba2cc-341d-46ee-974a-0fb5f49d4573" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215036Z:b7dba2cc-341d-46ee-974a-0fb5f49d4573" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 458A26ABF5B24710A372EA88313CF67B Ref B: MNZ221060608033 Ref C: 2025-06-02T21:50:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:35 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My43MDA5LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12033,Microsoft.Compute/GetVMImageFromLocation30Min;72833" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f535ce71-3030-49fe-aba6-a24bdb8dd4d5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4924abc0-0597-40d3-b2fc-dd25192854a6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ac6ad7f4-367d-4eab-87e8-f4155dd0ef6e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215302Z:ac6ad7f4-367d-4eab-87e8-f4155dd0ef6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 902599FE1CE04FFBA3310590D664A2F8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:02 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My43MjQwLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1072e7bc-4ca7-41d2-90c7-42cc2ab2bf92" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12763,Microsoft.Compute/GetVMImageFromLocation30Min;73760" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f6275696-1a65-4373-ac5c-2c815a1073fc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cf4f7833-9f22-453d-ab1d-69a5f57aab11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3af9f64a-c9a6-4ae4-9162-9d0ed6fca9e3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215036Z:3af9f64a-c9a6-4ae4-9162-9d0ed6fca9e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D3DAD8E94F37419897E290C30C2EEC0D Ref B: MNZ221060608031 Ref C: 2025-06-02T21:50:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:36 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My43MjQwLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12032,Microsoft.Compute/GetVMImageFromLocation30Min;72832" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "48aa8ae5-3e16-42ef-9b0e-468208a39652" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5714ae87-e743-4248-878f-6dea01cc5cb5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "cb9d64a3-41a9-4258-b30f-5ade29045d21" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215303Z:cb9d64a3-41a9-4258-b30f-5ade29045d21" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C8EC6198D19C47EFAE34E11657478198 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:02 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My43MzE0LjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "686a9854-af8f-4a2d-9f41-6b03d2268063" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12762,Microsoft.Compute/GetVMImageFromLocation30Min;73759" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "130d6361-592e-4716-941c-7197fbc5bf12" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9662a7e6-f312-4ce8-ab11-7ce2dd366ca3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f2e6cc6a-bd26-41a9-8e50-9954b8d55687" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215036Z:f2e6cc6a-bd26-41a9-8e50-9954b8d55687" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F1EF7ED2A5064AD1A5346B501A293902 Ref B: MNZ221060608051 Ref C: 2025-06-02T21:50:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:36 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My43MzE0LjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12031,Microsoft.Compute/GetVMImageFromLocation30Min;72831" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b43e6895-54ef-47f1-a12a-fe6892e8df6c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/93af3ec9-b4b1-4769-ace0-f10e1b20d932" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "90c6b3b4-d430-481e-bc51-e7328260ad10" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215303Z:90c6b3b4-d430-481e-bc51-e7328260ad10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 62DABEB7AC86467FB225E5E2464C8C4E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:02 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My43MzIyLjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fa31b22e-0302-4f1c-9c6d-e7e9f1066a8b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12761,Microsoft.Compute/GetVMImageFromLocation30Min;73758" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e07ac31a-ff2d-44e8-b700-e40a6e6e0c74" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d590dc5c-6fa5-4a20-840a-77c490e8178c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "56191f56-f84f-4b11-81d1-1a8382f0a24d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215036Z:56191f56-f84f-4b11-81d1-1a8382f0a24d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D2E7940E15C046BEB7CF150D154F7354 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:50:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:36 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS92ZXJzaW9ucy8xNzc2My43MzIyLjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12030,Microsoft.Compute/GetVMImageFromLocation30Min;72830" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "002fa211-62f0-44a7-b429-b82bb55469a9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2618da18-8ab3-41a2-9e41-d68ae1b8175e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "a0ab0f1f-9ad7-490b-a838-4273e60078e1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215303Z:a0ab0f1f-9ad7-490b-a838-4273e60078e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 90388636B8B24B6BA17FA177F51D8875 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:02 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f844c024-5615-4ac2-8476-41285005f57e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15970,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43964" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0bf674ae-f6ea-4327-b55a-44a91a756b11" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8352b9f2-9347-4725-9ce8-4e66350ede94" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1143440d-884f-41ba-9914-c2d06f3472d7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215037Z:1143440d-884f-41ba-9914-c2d06f3472d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D5681102F425431BAF4E6C1CB7CA2E49 Ref B: MNZ221060618039 Ref C: 2025-06-02T21:50:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:36 GMT" + ], + "Content-Length": [ + "5673" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15896,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43863" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e9e8378b-d105-496d-adb1-02b338b31d7f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/47448901-729c-4c49-ba5e-ced6bc85bae5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dd84776b-aa2b-4111-aecb-3461c6bbd0f7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215303Z:dd84776b-aa2b-4111-aecb-3461c6bbd0f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BEF9643A02C8499AA2592AA7CED86FF7 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:02 GMT" + ], + "Content-Length": [ + "5673" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My41MzI5LjIzMTIzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3938ec63-66ed-47b1-a500-84512cc13fb7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12760,Microsoft.Compute/GetVMImageFromLocation30Min;73757" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6bec37f8-6278-4d9a-8ac8-e395d58de249" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9749f72c-5a01-4919-af98-cca46469c7b6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "51380b33-bee9-453e-97f1-93506da75baa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215037Z:51380b33-bee9-453e-97f1-93506da75baa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0597A735867A4A838BED0AB6C1FE4DF9 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:50:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:36 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My41MzI5LjIzMTIzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12029,Microsoft.Compute/GetVMImageFromLocation30Min;72829" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "919f1718-7c54-43a9-974d-29c6ed8e307e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/07a4e2ba-6b5b-4e13-ac71-48a8ddd6a6bc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5ce139e9-2f6b-4be9-8ea7-08a804b6bd44" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215303Z:5ce139e9-2f6b-4be9-8ea7-08a804b6bd44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2562131ECFA8496AACBB57F6D4D80693 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:02 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My41NDU4LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ab22164b-fa8c-4cae-8f91-7f616acf648d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12759,Microsoft.Compute/GetVMImageFromLocation30Min;73756" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2c58ccbc-b9f7-4b4f-8d3b-74f4245d6a34" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/68223d22-3e2e-4a66-9a9e-e27aef06a6b3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c53d7348-4141-4404-be53-45ea8b6df306" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215037Z:c53d7348-4141-4404-be53-45ea8b6df306" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4407053BE82F428B9C564FD21B978C33 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:50:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:36 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My41NDU4LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12028,Microsoft.Compute/GetVMImageFromLocation30Min;72828" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bb4f500d-cb2f-4449-9bc0-ca81fa6b5023" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6254a43d-08d4-4c5d-b233-06cff3397512" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "19b7eab9-6b56-42d3-9d40-e35ec2a3d64c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215303Z:19b7eab9-6b56-42d3-9d40-e35ec2a3d64c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D1644A43A7004B32B9EC0CBFD5AC4DE8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:02 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My41NTc2LjI0MDMwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d933b898-e474-4546-bde7-9a14065958eb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12758,Microsoft.Compute/GetVMImageFromLocation30Min;73755" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fbd6e6a9-1703-4ad4-b0e3-ae0c8fc08faf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3c897a35-1c74-4921-8fc9-ae486d890f2e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e775262d-00fd-4fc2-9dda-6b70ca05664c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215037Z:e775262d-00fd-4fc2-9dda-6b70ca05664c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B00B13DF27054D84975CD1460EAE5CD1 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:50:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:37 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My41NTc2LjI0MDMwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12027,Microsoft.Compute/GetVMImageFromLocation30Min;72827" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "005ba419-9c65-47f3-8b72-31aa21196ce7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/36de28fc-d602-4d90-ab96-4371cda3020b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2385d7dc-c1f4-4e43-87f4-28a42012a1f9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215303Z:2385d7dc-c1f4-4e43-87f4-28a42012a1f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A517BCB0D1124A5FA46F0C88C5CC4D37 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:02 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My41Njk2LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8ee21a04-6535-4dc5-98d1-ae88f60dd616" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12757,Microsoft.Compute/GetVMImageFromLocation30Min;73754" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bb891328-cae9-4f52-8894-666de3ab291d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ae3693cb-46bc-4fd8-baf2-c6ac219cf2ca" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d59307b9-09d2-429b-8ae1-b7e47881b1de" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215038Z:d59307b9-09d2-429b-8ae1-b7e47881b1de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 558141C347AA42F8B60A9CB03DA92262 Ref B: MNZ221060610047 Ref C: 2025-06-02T21:50:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:37 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My41Njk2LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12026,Microsoft.Compute/GetVMImageFromLocation30Min;72826" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "650d58c4-033f-4c72-a3df-6ca775453850" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/309b27c9-e34a-41a6-8d1c-7bf4e531d121" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "5e73a50e-16d5-4ad9-82a1-c8f2bacd29c3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215303Z:5e73a50e-16d5-4ad9-82a1-c8f2bacd29c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D2EC27847D6741978145BFC81A15D929 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:02 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My41ODIwLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3b9b48ad-8dfc-4e2b-9634-204b6e60120d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12756,Microsoft.Compute/GetVMImageFromLocation30Min;73753" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "24870137-4781-45c9-91c2-d8b866e9c719" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ddfac42b-993f-4f51-8927-f9b4881af54d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2b261499-d4aa-4049-9546-910d5bfb9c2d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215038Z:2b261499-d4aa-4049-9546-910d5bfb9c2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F810017D1A648A891BD93B853FBCE6E Ref B: MNZ221060619023 Ref C: 2025-06-02T21:50:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:37 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My41ODIwLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12025,Microsoft.Compute/GetVMImageFromLocation30Min;72825" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "589a6148-eb3e-4e3c-aa5a-b8377e5eee15" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1bfbbb11-cdbe-44d3-baf5-6e572d05de75" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "cc5419dc-31a8-4bd5-b5fa-c0864d746e0b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215303Z:cc5419dc-31a8-4bd5-b5fa-c0864d746e0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 385CE3B4D3C341E7A19045FD1CC3067F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:02 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My41OTM2LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3ec8cec6-f6dd-4bd5-a411-440ec8a3caba" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12755,Microsoft.Compute/GetVMImageFromLocation30Min;73752" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b19f658f-1b33-4d43-a72c-0507ef0086c9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/97dac4fe-c119-4a16-bd31-6873a652e4a0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f949e04b-a31b-4550-99b9-696e45ebdf0d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215038Z:f949e04b-a31b-4550-99b9-696e45ebdf0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B5DCD305C6A2404CA485D6241FFED66F Ref B: MNZ221060610029 Ref C: 2025-06-02T21:50:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:38 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My41OTM2LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12024,Microsoft.Compute/GetVMImageFromLocation30Min;72824" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8e25a92c-7206-45f0-926a-7066afb07a5d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/765b103c-519a-4bae-a3e3-a2b98f9c2fe5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f114e86c-88a8-4be1-9ddb-e6761850376c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215303Z:f114e86c-88a8-4be1-9ddb-e6761850376c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2FB5F23A1874019B3850B3DD3217AD7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:03 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42MDU0LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "712fb3da-2d0e-4f72-9ef7-381be8dc1bf4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12754,Microsoft.Compute/GetVMImageFromLocation30Min;73751" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c2910792-a835-49e1-b66e-e0163934996c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3782fe27-f709-45b6-a723-9b69604db268" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2c667b8f-f02b-4cac-a41a-fad2f3c942f2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215038Z:2c667b8f-f02b-4cac-a41a-fad2f3c942f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0AA669531C1648B7B01CD4E3873E0F2D Ref B: MNZ221060608021 Ref C: 2025-06-02T21:50:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:37 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42MDU0LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12023,Microsoft.Compute/GetVMImageFromLocation30Min;72823" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f5b92713-c58f-4fc1-8096-2ae08dab13bb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/80e7cb3a-59f7-4525-a018-6d318981d763" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "6013c466-46ae-46ef-9945-7bd62029695e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:6013c466-46ae-46ef-9945-7bd62029695e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2C9656D636FB4F64B9686123179CED9C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:03 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42MTg5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5b9893fd-9f09-4c72-a0e2-2b38fce311eb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12753,Microsoft.Compute/GetVMImageFromLocation30Min;73750" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ca21cfa1-a0ad-4946-957d-c651bf97290c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/253b8575-8ace-47a7-9991-cc60436480f5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7a36c5b1-d10e-4c7b-ad14-b35d40056237" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215038Z:7a36c5b1-d10e-4c7b-ad14-b35d40056237" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 268F216488BF40CCAEBEF969FCACFE90 Ref B: MNZ221060619031 Ref C: 2025-06-02T21:50:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:37 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42MTg5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12022,Microsoft.Compute/GetVMImageFromLocation30Min;72822" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c93f66b9-a33b-43f2-8445-71983ea9003f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5d15563f-5f56-44bd-bdd1-8cdb7509de3d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3bcdae46-35be-453b-9ae2-fad43517fa88" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:3bcdae46-35be-453b-9ae2-fad43517fa88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EBD71F9CC99343758BCA2323F80A5BD3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:03 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42MjkzLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "10a1aaaa-34a0-415c-8a3d-9717780f4c94" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12752,Microsoft.Compute/GetVMImageFromLocation30Min;73749" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8f3cb104-b464-493c-876e-1a94c7e89560" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d2cc6ddf-0d1b-48de-ab9d-38ec67927bde" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "925b7e91-e665-46b6-a283-abbe3ba7cb84" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215038Z:925b7e91-e665-46b6-a283-abbe3ba7cb84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7801DC4FBED343E8B8F7A810A6402EF9 Ref B: MNZ221060608009 Ref C: 2025-06-02T21:50:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:38 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42MjkzLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12021,Microsoft.Compute/GetVMImageFromLocation30Min;72821" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f94267bc-c74f-45c9-a18a-529f45bd0be3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d228d996-da5d-4bd0-8cc8-53a9ae4f7175" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "d1361355-2d0a-4e8f-9f93-92bf0ccd3ee7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:d1361355-2d0a-4e8f-9f93-92bf0ccd3ee7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BFB3E2050B174F278665D54AAC3ACC59 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:03 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42NDE0LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8546929a-5c67-4d7b-af96-ef2dc34fc6c8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12751,Microsoft.Compute/GetVMImageFromLocation30Min;73748" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c112a18d-d3d5-442a-9931-da84f6d63bc8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b32eb3b0-b77a-4b48-9e69-5fbd1f859397" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c052a222-88f3-47a5-9203-3bc917d8ee90" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215038Z:c052a222-88f3-47a5-9203-3bc917d8ee90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C8695D9A41C049BE994CAB71AB13DB4D Ref B: MNZ221060608051 Ref C: 2025-06-02T21:50:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:38 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42NDE0LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12020,Microsoft.Compute/GetVMImageFromLocation30Min;72820" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "99b14312-01f4-4610-ba55-638c1e3cabdf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9756fa36-835c-41cf-98bd-b96af37f699e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ea9220e3-1402-4ce6-a236-18cb8a975c81" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:ea9220e3-1402-4ce6-a236-18cb8a975c81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E70101A561F04B57BA6CE0FD0A69DE69 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:03 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42NTMyLjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1c3aeefb-9543-4b9e-9b16-2b06ba46fa8e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12750,Microsoft.Compute/GetVMImageFromLocation30Min;73747" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9b5c7bb8-b892-454b-9abd-8bf853f9b8de" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/18288127-66cb-4009-a1bd-bfb7565cd744" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "eb5e74e7-d873-4497-b960-25cf8e804ffb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215038Z:eb5e74e7-d873-4497-b960-25cf8e804ffb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DE449B53749741AAB160474D20F38DDD Ref B: MNZ221060608035 Ref C: 2025-06-02T21:50:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:38 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42NTMyLjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12019,Microsoft.Compute/GetVMImageFromLocation30Min;72819" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2a0bb791-097d-4772-82c7-2795b68ffbb2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/14a49dce-d45a-4a72-aa59-4323120c240e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "c942af38-0548-4cf5-a57a-9a76b7ca4439" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:c942af38-0548-4cf5-a57a-9a76b7ca4439" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E1FA9046F9BA42B98D663A04AF2F504E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:03 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42NjU5LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "36885678-a454-4c87-840f-378e05f2723d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12749,Microsoft.Compute/GetVMImageFromLocation30Min;73746" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1d1ef2b9-627b-4332-9172-eae85b83377f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9e3f0ff3-7e3b-40c9-95dc-9248143e8bf4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1b96f91c-9937-4749-935d-1fda6ca13a6a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215039Z:1b96f91c-9937-4749-935d-1fda6ca13a6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BD836ACE72464CFEB8F1580A2A97899C Ref B: MNZ221060608037 Ref C: 2025-06-02T21:50:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:38 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42NjU5LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12018,Microsoft.Compute/GetVMImageFromLocation30Min;72818" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "30c0d015-5347-4d36-90c2-35ad03bd34a9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0ccb8f64-3af7-411b-b7a2-7420989e5fee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "08bf6583-c947-4cd3-9475-1e4963e95667" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:08bf6583-c947-4cd3-9475-1e4963e95667" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 93B4F6E2289B43E89BD98FBEB191FD47 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:03 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42Nzc1LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "494fda3d-e926-4511-970a-38fcea1769ab" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12748,Microsoft.Compute/GetVMImageFromLocation30Min;73745" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d051abe7-0393-4607-b3a9-7049109357cc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7a94e554-20d2-4567-ab97-ba71941b6a36" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ab8b6b36-a417-486c-b46d-dcf7cca0475a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215039Z:ab8b6b36-a417-486c-b46d-dcf7cca0475a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7F32EA7A58FF48B9B13B3DA70A4D8E92 Ref B: MNZ221060610033 Ref C: 2025-06-02T21:50:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:38 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42Nzc1LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12017,Microsoft.Compute/GetVMImageFromLocation30Min;72817" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3ddce8a4-de5e-4cc8-9f72-2d526694a5b4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6fa1b335-cb9a-497f-9e4b-49217f99142b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fd88d4d0-731d-4c15-8725-beb0ae94bda1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:fd88d4d0-731d-4c15-8725-beb0ae94bda1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 59B0CDFE7408429D8DD2433DF352C14D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:03 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42ODkzLjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4d13c945-c71c-44ec-8534-4c1e76fc8e6b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12747,Microsoft.Compute/GetVMImageFromLocation30Min;73744" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9a0c3feb-341d-445c-8f1a-443398e61477" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/292ef22c-125d-4c8e-9494-cf0ccf028d59" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2dcfb57d-7c90-4d36-8274-974977bd2f23" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215040Z:2dcfb57d-7c90-4d36-8274-974977bd2f23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D014201F2B1B4570BD6D9B1521C32795 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:50:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:39 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My42ODkzLjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12016,Microsoft.Compute/GetVMImageFromLocation30Min;72816" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e3a57a45-b79c-4b74-a8bc-3320a7aecfc4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a05f6b46-c597-4166-93e5-a7ed9865ab4f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "b5d9fdff-c4ec-4c0a-8caf-ded508ee2d1c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:b5d9fdff-c4ec-4c0a-8caf-ded508ee2d1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5EC5202434554043BCBD16F78DF808BF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:03 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My43MDA5LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "44ae7baa-d9b1-4935-b5ca-ce901de41075" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12746,Microsoft.Compute/GetVMImageFromLocation30Min;73743" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "59df25e1-6423-49ca-bba0-7fd8348a5b91" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8d2c3ea7-d4a8-48c6-bdec-aac6272bc93e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e1cc07c7-50f2-43fb-b892-9ff0f700f83a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215040Z:e1cc07c7-50f2-43fb-b892-9ff0f700f83a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D4D9A47900D042ADA3648E0781B8F5BC Ref B: MNZ221060608047 Ref C: 2025-06-02T21:50:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:40 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My43MDA5LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12015,Microsoft.Compute/GetVMImageFromLocation30Min;72815" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2e87082f-62bb-4ab9-9f07-fd6c228a8f57" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/24d0732a-77ba-4b1e-be3c-5c4a434c05d5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "2cc19ca3-7c2c-4d5a-a62e-212511cd94a3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:2cc19ca3-7c2c-4d5a-a62e-212511cd94a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 94218C0D26FD495FA348332FB5D67C0A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:03 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My43MjQwLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "80db47fc-7079-4396-af67-891d82d8850e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12745,Microsoft.Compute/GetVMImageFromLocation30Min;73742" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6b0971c2-be0e-4eee-ab67-b4b8e3eb5f27" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e95156b4-2990-414a-8450-9a24d90749ed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "be1a6307-1adc-4ced-8380-e73b8de343f6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215040Z:be1a6307-1adc-4ced-8380-e73b8de343f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3E424925B9844B299C5E9BDC1FAF731F Ref B: MNZ221060619011 Ref C: 2025-06-02T21:50:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:40 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My43MjQwLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12014,Microsoft.Compute/GetVMImageFromLocation30Min;72814" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8406738c-47f8-4cf5-a866-20470df43411" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/223cb2fa-d12a-4cf9-8731-e4e79ded2159" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "62d0184a-9e6c-4554-9d18-20769a6f7b95" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:62d0184a-9e6c-4554-9d18-20769a6f7b95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C3AA104208EF4F0D854328E0230F7D28 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:03 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My43MzE0LjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9e68a0e0-c095-4ada-88f1-37517a84a2c1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12744,Microsoft.Compute/GetVMImageFromLocation30Min;73741" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "531175e8-55a1-4e8b-9682-3e97a46d0006" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5f6ac29a-d223-400d-9d9e-f90faf92dcab" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ff3f1b4e-9e53-448b-ad27-959d8a6523a4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215040Z:ff3f1b4e-9e53-448b-ad27-959d8a6523a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3EF49DFC879E4E7D84BA1CFAD323B097 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:50:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:40 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My43MzE0LjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12013,Microsoft.Compute/GetVMImageFromLocation30Min;72813" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b228ca73-4538-47cd-9480-f2567bcc3537" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e5cf6032-7e21-4999-9111-d58f5af35c32" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dfec77bd-8f02-41ca-8c0f-0e542dfb0689" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:dfec77bd-8f02-41ca-8c0f-0e542dfb0689" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 46148EB1285F424D8AC1899E08F8BD2A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:03 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My43MzIyLjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d54faed2-82ae-40d4-9773-30a5cb3c2ee5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12743,Microsoft.Compute/GetVMImageFromLocation30Min;73740" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "30749028-45b3-4924-ad34-c3b6854a567e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/61ff8ed1-87a3-4d46-87e7-5964885225f7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "32edbfd4-aedc-4a7f-9210-bf3208a03e46" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215041Z:32edbfd4-aedc-4a7f-9210-bf3208a03e46" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F848A2F173CA46509CAA79E28FDC2926 Ref B: MNZ221060619049 Ref C: 2025-06-02T21:50:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:40 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-g2/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8xNzc2My43MzIyLjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12012,Microsoft.Compute/GetVMImageFromLocation30Min;72812" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ab3d7a42-4edc-4cb6-a2d6-778013e9e946" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6abe2de1-a0fd-4eed-8b74-e7875a45347b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d73c370b-d28a-4032-bb37-928eea31c17a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:d73c370b-d28a-4032-bb37-928eea31c17a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6EB0EE34132247D7A2618208E3008A16 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:03 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2109246f-e22b-4172-a914-23895ffdf098" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15969,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43963" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "327d4cee-ffbc-404d-a29e-b0e101de4ee2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/da906e35-9a8e-487c-a32a-bcb481b5dcca" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9ccbdbf2-3fd8-4e64-a572-4f72c597a676" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215041Z:9ccbdbf2-3fd8-4e64-a572-4f72c597a676" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ABBB07E3528A4937BB3A2D310D912EE2 Ref B: MNZ221060618009 Ref C: 2025-06-02T21:50:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:40 GMT" + ], + "Content-Length": [ + "5799" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15895,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43862" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3a9be915-4bf1-469e-aa42-aa8ac27df7c8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9be59065-9df1-4a33-884f-323e02cbf9a3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "daedaa6e-878c-42dd-af37-a5c897b6d3b6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215304Z:daedaa6e-878c-42dd-af37-a5c897b6d3b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E30BEFA31ACF4716AD01AA953563DE65 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:04 GMT" + ], + "Content-Length": [ + "5799" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNTMyOS4yMzEyMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7e71a6d5-ea0b-4a74-a487-665e7b5999f1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12742,Microsoft.Compute/GetVMImageFromLocation30Min;73739" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9a0ef005-bd40-406b-9c6d-d30ee7a05989" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/86dd40c5-b492-4c41-9d73-c93d68f544aa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a4bdec0e-1efc-4785-a5f3-d9bc13bc4990" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215041Z:a4bdec0e-1efc-4785-a5f3-d9bc13bc4990" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B35FA04BEAD74C4B829C0ABCF01681A7 Ref B: MNZ221060610053 Ref C: 2025-06-02T21:50:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:40 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNTMyOS4yMzEyMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12011,Microsoft.Compute/GetVMImageFromLocation30Min;72811" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "76d92a59-77db-4a39-955b-91d1a2a9e35b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b60578e7-2de4-4323-b37d-c00147b8d105" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7c3e0043-21e6-48cc-a36e-aedab9882697" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:7c3e0043-21e6-48cc-a36e-aedab9882697" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1AD32EC3F4F64D18A18582172960C848 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:04 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNTQ1OC4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "44643643-b6d8-4ef7-9309-985ac27f4bab" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12741,Microsoft.Compute/GetVMImageFromLocation30Min;73738" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2c5ac69b-df12-4c34-bc06-253d5788c453" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1ca6dc68-3d04-430c-b6b0-9697268de6ae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7d0bbfe2-08cf-4edf-a20e-ffab21202adb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215041Z:7d0bbfe2-08cf-4edf-a20e-ffab21202adb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C8F884AF687C4923A2A846F1F42B8CF4 Ref B: MNZ221060610027 Ref C: 2025-06-02T21:50:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:40 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNTQ1OC4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12010,Microsoft.Compute/GetVMImageFromLocation30Min;72810" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "56ad5199-dd33-4662-a7bc-d86bb9f0c552" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7c5e9193-9622-4a9f-ad80-f8dfe2d09e4b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8b939325-3864-4978-8ad2-6088a5e5c1b2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:8b939325-3864-4978-8ad2-6088a5e5c1b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2698F7B1F1134AF9B74FFC3DA64662D0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:04 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNTU3Ni4yNDAzMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3fd50a07-bf7a-45d2-bfc9-bcb49619d645" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12740,Microsoft.Compute/GetVMImageFromLocation30Min;73737" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "537e6c7d-7404-48fa-bba6-a655e9a59a64" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3602e242-4915-4705-8f49-1a4e470eeffb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cf5bcef5-98e3-4e94-8a30-578de4f81135" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215041Z:cf5bcef5-98e3-4e94-8a30-578de4f81135" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2CF7F08796FA4EE7828B1ACCEA35E5EF Ref B: MNZ221060619033 Ref C: 2025-06-02T21:50:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:40 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNTU3Ni4yNDAzMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12009,Microsoft.Compute/GetVMImageFromLocation30Min;72809" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6131b55c-0054-40ad-945a-8ba9f28a17c9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d083b422-6524-45bc-b39d-6149cf959053" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "5fc36d83-46f7-49d0-90fb-37184bb995b1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215304Z:5fc36d83-46f7-49d0-90fb-37184bb995b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F79837DBC592408FA2EA741DB6123A53 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:04 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNTY5Ni4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "afa15b59-b6c1-4e61-a52b-013e743caed2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12739,Microsoft.Compute/GetVMImageFromLocation30Min;73736" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0ebc7ea2-a7c5-427b-b7fe-44d437752c51" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4dc65951-5e27-438f-ae99-c2a8f871586b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fd6bd7da-cccd-4378-92af-9f28dd6c1e0a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215041Z:fd6bd7da-cccd-4378-92af-9f28dd6c1e0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9BF8EA6CD0214C5B9427E7376E7BB713 Ref B: MNZ221060619029 Ref C: 2025-06-02T21:50:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:41 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNTY5Ni4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12008,Microsoft.Compute/GetVMImageFromLocation30Min;72808" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e99e8cb2-1d13-4be2-99ea-82c0266d6501" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2f55e555-74ba-493e-9281-831e910577a5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "48fc02ed-7d30-4dab-9752-25d7841e5829" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:48fc02ed-7d30-4dab-9752-25d7841e5829" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9E8BADD3622B4D93A79FAB4E684F6487 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:04 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNTgyMC4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "79df53e7-dafc-4fa2-abb0-8880ba97ce9e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12738,Microsoft.Compute/GetVMImageFromLocation30Min;73735" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "85650ac1-15b6-47c6-951c-f9f0c09d21c4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d5ecece1-ee19-49f2-a788-a41903125f41" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6da085f2-8b13-45e9-aac1-f84b8be11440" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215045Z:6da085f2-8b13-45e9-aac1-f84b8be11440" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2E536ECA22A748D285E4AE429CACB62E Ref B: MNZ221060610037 Ref C: 2025-06-02T21:50:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:44 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNTgyMC4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12007,Microsoft.Compute/GetVMImageFromLocation30Min;72807" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f3b36a21-6146-4356-ae47-d0cd40453ddf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/474024e5-e135-4fdf-b999-10e8c5f52739" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "3611878e-8067-4ba3-958c-91c2860e35c4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:3611878e-8067-4ba3-958c-91c2860e35c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A35A69A578BA46B7811341F1758FE842 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:04 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNTkzNi4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ef5fcbc0-19ce-4ecb-a3a7-9d0b1caf7b2e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12737,Microsoft.Compute/GetVMImageFromLocation30Min;73734" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2a769e34-1ccc-4ac5-92f7-e7eb8550c39b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bca0292a-b900-43aa-b2b3-e5e263b75eb7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3718abca-d872-4d8a-9e06-3b228430fe2f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215045Z:3718abca-d872-4d8a-9e06-3b228430fe2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC839E0373F6461EAFD6143514B96427 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:50:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:44 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNTkzNi4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12006,Microsoft.Compute/GetVMImageFromLocation30Min;72806" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a3e9d732-5b6a-414c-9548-3fe8e891bc0e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f66c4f3c-73f9-418c-b661-93ef3c115eb6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d326cb09-6ddc-4bac-93a1-a92cb31cdd15" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:d326cb09-6ddc-4bac-93a1-a92cb31cdd15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5967ABB1FA5043E4AF272D8BB9DAD173 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:04 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjA1NC4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "475ab5c2-a6b7-4c6e-9d10-31a5fb08ee04" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12736,Microsoft.Compute/GetVMImageFromLocation30Min;73733" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "74e919e4-2bcb-44c1-8b31-1d5c6737fa93" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d16abda4-391e-436e-9dd7-007c8105350f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "06442cb6-25d8-4fdd-be88-8f2ae937de8c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215045Z:06442cb6-25d8-4fdd-be88-8f2ae937de8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0B7EDE2331B440A5AFC19227113ED213 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:50:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:44 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjA1NC4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12005,Microsoft.Compute/GetVMImageFromLocation30Min;72805" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "671101d0-d271-46f5-b208-f64c85d1adba" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/961d1ada-f8fa-4a44-b560-311ee3091a84" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "249f8e5d-5f5a-4894-a4b5-667ea5142c31" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:249f8e5d-5f5a-4894-a4b5-667ea5142c31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3AE9EB902FCC48F89C93139E34B22462 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:04 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjE4OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9fe78a2d-20de-4352-b5ae-b48f026d4d8a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12735,Microsoft.Compute/GetVMImageFromLocation30Min;73732" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ea03f8ec-db0a-484a-b5c4-14f8dc0faa87" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5f99671f-16ca-4bc6-a3df-75a58979f68c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a7f4c628-c04f-4104-9a45-fe8043c3a551" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215045Z:a7f4c628-c04f-4104-9a45-fe8043c3a551" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 95B7767DEEC1480FAFFF23E8AB77066B Ref B: MNZ221060609047 Ref C: 2025-06-02T21:50:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:45 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjE4OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12004,Microsoft.Compute/GetVMImageFromLocation30Min;72804" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c8d50b63-7202-4eeb-96a7-eb83c0026808" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6d81320d-6953-46a3-81dd-f455dd6db9c2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "601285f2-0253-46ce-8d21-b06db0cb6cec" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:601285f2-0253-46ce-8d21-b06db0cb6cec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BE88C2F6D13942E391BDA888061B77C1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:04 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjI5My4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2bd1e32a-ad10-4c9d-b903-216815510f79" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12734,Microsoft.Compute/GetVMImageFromLocation30Min;73731" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "933f9502-0057-4a96-97eb-a5555bba6657" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8e680a32-f027-4fbd-9928-86a99929d971" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "13e73cdf-198f-47ab-b892-ac15ea8b61db" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215045Z:13e73cdf-198f-47ab-b892-ac15ea8b61db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5FBDF2F9FEF048EB85D533B998153448 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:50:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:45 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjI5My4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12003,Microsoft.Compute/GetVMImageFromLocation30Min;72803" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8b3f8c86-fe3f-4d7b-939a-9fb4eef77564" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2b041a0a-bd1f-4887-a565-9b9224eeda15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "46258ef4-2eff-45f7-a448-62106fb03891" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:46258ef4-2eff-45f7-a448-62106fb03891" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D493975CF44442ADB73B5EBA94B697CF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:04 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjQxNC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7be0d8b1-228a-4dba-aa75-5fe0636f7096" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12733,Microsoft.Compute/GetVMImageFromLocation30Min;73730" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "85aac541-2bf4-4b34-b7ee-722c98d3ce09" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/855a569f-969c-43c6-947c-c9405730dd54" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "66cb932e-08e4-45b4-9e90-367933de225e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215045Z:66cb932e-08e4-45b4-9e90-367933de225e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ABD5C60003CB426DACC3DA888395DB89 Ref B: MNZ221060608049 Ref C: 2025-06-02T21:50:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:44 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjQxNC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12002,Microsoft.Compute/GetVMImageFromLocation30Min;72802" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e9a224ae-3526-4e87-8d27-4c126b9441f3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/059c5dfc-ffc5-4528-8cf3-b2d15e78f28e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "63d553a1-c61e-4b5c-a839-ab827699a4c9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:63d553a1-c61e-4b5c-a839-ab827699a4c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F426DB9A7A184FD5A4098841C1EC1216 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:04 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjUzMi4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b8c2f26b-b7d3-4981-af0a-11aa48b864e2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12732,Microsoft.Compute/GetVMImageFromLocation30Min;73729" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2e920028-0021-467f-9577-3ab00a2f04ed" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1f17e129-9299-424e-ad5a-1bfb1748023f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d2d8e068-a62e-4b77-b835-2a4893fffb79" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215045Z:d2d8e068-a62e-4b77-b835-2a4893fffb79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 04CE955B47A145CC935A1E466FEADE10 Ref B: MNZ221060610009 Ref C: 2025-06-02T21:50:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:45 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjUzMi4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12001,Microsoft.Compute/GetVMImageFromLocation30Min;72801" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2c3affe5-9be7-4fb9-91d1-012de4de1773" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4c8a9283-a5e3-453a-988c-1afd54a705cf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "ec089c45-bfc2-41d0-8781-d4a790db3c6f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:ec089c45-bfc2-41d0-8781-d4a790db3c6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6264AD66A63A4010AB8FBC5FA7ECF77F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:04 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjY1OS4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0c9d93c2-41e2-4428-b7d5-f81b4125ed95" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12731,Microsoft.Compute/GetVMImageFromLocation30Min;73728" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5b3d8395-7cea-41c0-bf44-5e03c98c7645" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a40c7b81-ad48-4501-87d8-c7c5f5242892" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d71317b0-6fd7-429c-bf87-1c1cd1962284" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215046Z:d71317b0-6fd7-429c-bf87-1c1cd1962284" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 90A45E698DA3444798ABE5367BAB8786 Ref B: MNZ221060609023 Ref C: 2025-06-02T21:50:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:45 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjY1OS4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12000,Microsoft.Compute/GetVMImageFromLocation30Min;72800" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "78276db8-d851-4e00-b7e5-0c104b8085a4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cb52775b-da35-49c7-aa8d-748ae8f34a4d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "a053c88a-2c33-4cb0-954a-0aacd76380ef" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:a053c88a-2c33-4cb0-954a-0aacd76380ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 98492B617EAC41B9AC9A5FB6B9319336 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:04 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ca64466d-cb80-4012-8897-2247cb765bb2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12730,Microsoft.Compute/GetVMImageFromLocation30Min;73727" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "05ab1e70-51c5-4703-8666-f29c3085d036" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ebe556e5-ff9e-4574-9fa6-3c537efe15c7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e1ca83f0-1f2e-4e57-9398-a14f46acc72c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215046Z:e1ca83f0-1f2e-4e57-9398-a14f46acc72c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D538E1ABB27D44A299CB330D9159D8E3 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:50:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:45 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11999,Microsoft.Compute/GetVMImageFromLocation30Min;72799" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3a7c8b77-2868-4825-9504-94a0651731c5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4228886a-8bd9-40d1-b3c3-cc758f0d454c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "2046f12e-baca-4c18-baa3-df8a05159cc5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:2046f12e-baca-4c18-baa3-df8a05159cc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D2A8DCE2DCFC4390AF66943E8C341662 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "00afe60f-2c6f-4d73-83f9-bdd1a36f6d32" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12729,Microsoft.Compute/GetVMImageFromLocation30Min;73726" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f5f48703-c115-4f70-b0ea-d07e4fa216e8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a7eaee6b-482f-468d-8adf-85fcec372fe9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "de2bb057-f6df-4015-970c-e0cfbab9dff4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215046Z:de2bb057-f6df-4015-970c-e0cfbab9dff4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1F3AA1BDA0984EF69A7960BFBE1EDE30 Ref B: MNZ221060619025 Ref C: 2025-06-02T21:50:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:45 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11998,Microsoft.Compute/GetVMImageFromLocation30Min;72798" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ff0148c1-e9e6-4ffe-9cad-74d1f5dae176" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7a0621bb-c8b9-4a6c-89b6-293c80db7aa1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "0a0f1b2e-9058-4b68-b730-b4409fe837dc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:0a0f1b2e-9058-4b68-b730-b4409fe837dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F04D4C6835954D3C83C6428C7B1A666B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "47c1589e-6bf0-4eb3-b475-1ea1c41c26f0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12728,Microsoft.Compute/GetVMImageFromLocation30Min;73725" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6ecb316e-320c-4868-bef9-31a3a2395c0e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/18ea4888-7340-493c-bab9-c652788fd1da" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b203d633-75a3-438a-a98a-acdffe7c93ef" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215046Z:b203d633-75a3-438a-a98a-acdffe7c93ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BD275D14110A4342BE567FB75FA22AC3 Ref B: MNZ221060609047 Ref C: 2025-06-02T21:50:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:46 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11997,Microsoft.Compute/GetVMImageFromLocation30Min;72797" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "246e8b12-5541-43d1-bad5-2e1885409669" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a8e43183-17ca-43a9-b8bb-43fb41c236fe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "245392c6-b820-4236-893c-2ac26f17ddc9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:245392c6-b820-4236-893c-2ac26f17ddc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F9605CBD8186450A9E9BE82CFD0AB8DA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "552d6c81-923b-4efa-a9f0-c0f13cbce0f0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12727,Microsoft.Compute/GetVMImageFromLocation30Min;73724" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "32a59ff0-27de-490e-844a-66fc00783f90" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e8c19fa7-3650-4138-9cab-a1991c048c42" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5b8e1d68-80f1-4951-bfa5-3f723ae99aca" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215046Z:5b8e1d68-80f1-4951-bfa5-3f723ae99aca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9B9453FAF01343969B6A1B48A976F625 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:50:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:45 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11996,Microsoft.Compute/GetVMImageFromLocation30Min;72796" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b1658a7b-01ee-4604-9fd3-ca309c4f30db" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/014410c2-2a02-4245-ad89-e7c3aebd816c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "65b8a67e-bd0e-4f61-8cab-cf23f848763a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:65b8a67e-bd0e-4f61-8cab-cf23f848763a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F385846E1E584AA78C0B96585D767C23 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "37969f8d-4355-44db-a1ac-29bfd50f843f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12726,Microsoft.Compute/GetVMImageFromLocation30Min;73723" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f2d70a36-7e1f-4a85-a89b-0f1e9b7325f0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1516ca17-8f7b-45ed-9291-ef4a439f954b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "970cf707-f275-4aca-b294-013cf3222232" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215046Z:970cf707-f275-4aca-b294-013cf3222232" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A4B0D81D7954486EA3296FC55F9B1F1B Ref B: MNZ221060618027 Ref C: 2025-06-02T21:50:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:45 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11995,Microsoft.Compute/GetVMImageFromLocation30Min;72795" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5ea58b46-a5a8-4d97-bf1c-ec1919ab30f3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/765c2eba-0de4-4c15-b8fa-bfffd1374728" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "df1840ca-9afd-410e-99ba-0351c5fcc81f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215305Z:df1840ca-9afd-410e-99ba-0351c5fcc81f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 16B465FC51264C198FDF1C0A60748E92 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0ef6550a-477e-4ae4-8c19-b3d0663ad0b4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12725,Microsoft.Compute/GetVMImageFromLocation30Min;73722" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "313cf393-3f7f-4d5a-abf0-764ba1b38cec" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0e2056b8-4f15-4caf-b61e-847dca7f8c38" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "42ae2ee4-5a2d-4919-b937-05063c719af5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215046Z:42ae2ee4-5a2d-4919-b937-05063c719af5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 77808530C71947B3A5455215B5328449 Ref B: MNZ221060608033 Ref C: 2025-06-02T21:50:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:46 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-smalldisk/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11994,Microsoft.Compute/GetVMImageFromLocation30Min;72794" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d78d1785-b25a-4809-8300-9fc7b37a2b1a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f10b3f1f-9d56-4c3a-8308-5c85725b30d7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1ba5c830-ab92-41c9-b0e4-f4e8db53225f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215306Z:1ba5c830-ab92-41c9-b0e4-f4e8db53225f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A78395E2BA5D41E39CC5E442589786FE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "acd316be-3788-45cb-9c48-29f14c0f225d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15968,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43962" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "942293f2-6ec1-4066-ac7a-4f0a105ad71f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/079794c9-a448-4d69-a5f2-6307d8de5425" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7e54d1f8-c929-423a-abe0-c33d912e0ca2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215046Z:7e54d1f8-c929-423a-abe0-c33d912e0ca2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2BB30CC0441442A893E35408D300219B Ref B: MNZ221060610017 Ref C: 2025-06-02T21:50:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:45 GMT" + ], + "Content-Length": [ + "5853" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15894,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43861" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "199054b8-7330-4ce3-aec1-5c757869f445" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5de727db-5008-4e5c-9244-34f822836b59" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "20ed68f4-006f-485f-849b-dcab1dbcabf0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215306Z:20ed68f4-006f-485f-849b-dcab1dbcabf0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1138894B5D954C6F97449FDC9CC9EFB5 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "5853" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNTMyOS4yMzEyMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a6cd17ec-4b0f-4ee0-817e-db98387cec56" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12724,Microsoft.Compute/GetVMImageFromLocation30Min;73721" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "714a49d2-25ae-4a27-b678-75cb771ffcac" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a2265b6b-c16b-412e-bb41-feeea3670096" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "80589835-aa0e-43ff-9107-5a2a55e06f81" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215047Z:80589835-aa0e-43ff-9107-5a2a55e06f81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 510B2A723723481590E6CCA77AD55340 Ref B: MNZ221060618031 Ref C: 2025-06-02T21:50:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:46 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNTMyOS4yMzEyMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11993,Microsoft.Compute/GetVMImageFromLocation30Min;72793" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4300d193-622d-4a2b-93d5-9c35a187823e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5fc97623-642b-4346-958d-956dff780c8a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "cc7b567a-738e-4963-b4a6-b141d39d03bf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215306Z:cc7b567a-738e-4963-b4a6-b141d39d03bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 54965051FB844A9790246BC38458BC60 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNTQ1OC4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f99c2fd9-5caf-48f3-a830-9fcb50dd4789" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12723,Microsoft.Compute/GetVMImageFromLocation30Min;73720" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e08789c7-d15a-4004-af47-5e0a0b29d916" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ab42fb89-c6ad-4389-8bc7-8fb18aca766c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ec16706c-c427-43b4-80f1-d1d48dc372bc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215047Z:ec16706c-c427-43b4-80f1-d1d48dc372bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D9D83441662C41A2B737C4C4B1307600 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:50:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:46 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNTQ1OC4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11992,Microsoft.Compute/GetVMImageFromLocation30Min;72792" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6c14b116-34ee-44df-b8df-359b72d99ef1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7749b350-f547-45e4-9c29-e1a841e33097" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f230fbf1-1992-41f5-b10e-ff32351b4c3a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215306Z:f230fbf1-1992-41f5-b10e-ff32351b4c3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BC488235E2AE4A7685C4D469FA87FA46 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNTU3Ni4yNDAzMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3d2044c4-30d6-4c35-8034-47e237395802" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12722,Microsoft.Compute/GetVMImageFromLocation30Min;73719" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87b5966f-bb2f-4d97-b181-d12948b60bb2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a8b8ed29-780d-46f4-90e1-88e005e85ede" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "be97409a-64e7-4699-8c9b-58902b066602" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215047Z:be97409a-64e7-4699-8c9b-58902b066602" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41440164541C4B02A63BED2AA8C16566 Ref B: MNZ221060609011 Ref C: 2025-06-02T21:50:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:46 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNTU3Ni4yNDAzMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11991,Microsoft.Compute/GetVMImageFromLocation30Min;72791" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "46fc2d33-31f3-42e9-850f-645b28bf346f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d577b457-5ea8-4fb4-a47a-cb8959a82d9f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "86e742c5-5258-4139-9858-853096a40944" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215306Z:86e742c5-5258-4139-9858-853096a40944" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 657965CA3342454192B41311ADBEE77A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNTY5Ni4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b6488041-aff6-4e10-bcfe-079a22e1020e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12721,Microsoft.Compute/GetVMImageFromLocation30Min;73718" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "56391a46-5734-425a-b6e6-f9bb58a17c23" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cb4a5d4d-5172-4378-a466-6fa94c6c42a0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "ac027ef0-2c2a-41c0-b919-7e7db29fe206" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215047Z:ac027ef0-2c2a-41c0-b919-7e7db29fe206" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 415D4ED6B67A496FA3DB7C588F910015 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:50:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:46 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNTY5Ni4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11990,Microsoft.Compute/GetVMImageFromLocation30Min;72790" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "687f1caf-128b-43c1-af12-f6ac607f1c87" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cd69fa70-2fff-492a-a782-779aca9afa87" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "c8bb1cbe-f4cb-4f99-8251-970ca0b1e008" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215306Z:c8bb1cbe-f4cb-4f99-8251-970ca0b1e008" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 77BC0771E7B943AB936CD9E73F178E20 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNTgyMC4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1e68b19a-d813-41d0-aa7d-2c5deb927288" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12720,Microsoft.Compute/GetVMImageFromLocation30Min;73717" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7dbfba2e-72f0-4085-8435-fc2f1deb68a6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5aa80f13-ae62-4e03-84f9-892e14edf286" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e0cb8ac2-1058-4780-9498-9b8c862a3039" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215047Z:e0cb8ac2-1058-4780-9498-9b8c862a3039" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B00CC05850F14B7D8C89A40072964BCD Ref B: MNZ221060608037 Ref C: 2025-06-02T21:50:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:47 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNTgyMC4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11989,Microsoft.Compute/GetVMImageFromLocation30Min;72789" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "456b832e-b5e1-47ab-8f96-541b752e21ab" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b14912fb-cfe1-4ee9-aacc-92dde1aeaeba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "92c2e427-bf67-459c-b353-662d928cfbc6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215306Z:92c2e427-bf67-459c-b353-662d928cfbc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7D41BFEDFE984E0AB0ED021782BA9473 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNTkzNi4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0da72544-c29d-4f7c-89bd-4ad2203559db" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12719,Microsoft.Compute/GetVMImageFromLocation30Min;73716" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f6e7808f-1429-4aa6-9f30-9912c2c4bc4d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d1569e27-ffef-4424-93be-ab1f629ec803" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e3ed93a7-4ddd-4ea0-9e9c-f505f746d8a0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215047Z:e3ed93a7-4ddd-4ea0-9e9c-f505f746d8a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 007483A6BF664B74A22EB5B65F912D2A Ref B: MNZ221060610039 Ref C: 2025-06-02T21:50:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:47 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNTkzNi4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11988,Microsoft.Compute/GetVMImageFromLocation30Min;72788" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "654b0387-0773-4a5a-8918-e18a5de5b60a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5808895f-b602-4f5e-8e29-1e8b05e6ad02" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d84634c4-f5bb-4522-8a0b-c7ca104a0f56" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215306Z:d84634c4-f5bb-4522-8a0b-c7ca104a0f56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B56264E23CA9444892C943BC37D5FB78 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjA1NC4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "75233dd8-b4ac-4bb9-a020-91c75abff57b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12718,Microsoft.Compute/GetVMImageFromLocation30Min;73715" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "43edf90e-2da6-486b-b9cf-4c05f5bd47be" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/97f945b6-cdf5-4b9e-ac78-4b2f4f008faf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "77c20353-5ccf-4794-8d20-243e86a2a300" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215047Z:77c20353-5ccf-4794-8d20-243e86a2a300" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7CD7A533F92E449D98A9058F3D80905C Ref B: MNZ221060618023 Ref C: 2025-06-02T21:50:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:46 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjA1NC4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11987,Microsoft.Compute/GetVMImageFromLocation30Min;72787" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2fada610-8234-4553-b293-1789afc44136" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a6759391-4903-4513-8b77-dc0283e3bfb4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "ab26a6db-9d63-49be-9b48-3dfe692e168e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215306Z:ab26a6db-9d63-49be-9b48-3dfe692e168e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 57CB3D122C48463FB1159411CB582EBC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:05 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjE4OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c3f95f27-2703-458e-8c74-57221dc9cdcd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12717,Microsoft.Compute/GetVMImageFromLocation30Min;73714" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f4622f1-38ed-4eff-9fef-865d96d3a595" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/97944ccc-b456-475a-9aee-8fe125ac23f8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "86eed860-1323-4ef4-876a-a0c4e4c172c0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215047Z:86eed860-1323-4ef4-876a-a0c4e4c172c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 659E5DC88B414E2EBEEEF23EEB9D106E Ref B: MNZ221060608033 Ref C: 2025-06-02T21:50:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:47 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjE4OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11986,Microsoft.Compute/GetVMImageFromLocation30Min;72786" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "aa49698c-5150-4664-b5c0-dae33c2d2cad" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a068b8b7-58c5-4a79-a799-43144aea917e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "a8ff68bd-2e26-4252-a0da-7e8762d9aa2a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215306Z:a8ff68bd-2e26-4252-a0da-7e8762d9aa2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C31CFD54F3B24ABBBAED1240EFBCD4D2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:06 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjI5My4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e80622d9-6e04-4310-aef2-985f10797a55" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12716,Microsoft.Compute/GetVMImageFromLocation30Min;73713" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "16b0a736-8905-4543-bf6c-e4e83b04c4f8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0b7fe4ba-1816-4bfa-af22-df0393cd4aec" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1858434b-839f-45c4-8cbd-0dc80ab068cb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215048Z:1858434b-839f-45c4-8cbd-0dc80ab068cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3A0143C7281D43D4A9A40927CA86D03B Ref B: MNZ221060619047 Ref C: 2025-06-02T21:50:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:47 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjI5My4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11985,Microsoft.Compute/GetVMImageFromLocation30Min;72785" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "de117146-5536-4586-ac5b-b39fd27c5ac4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/82c96e97-3cc3-47dd-a736-5d3a61310ff4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "84de5263-5f1b-4005-8a48-f36ea42b1ec8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215306Z:84de5263-5f1b-4005-8a48-f36ea42b1ec8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ABF65754FA30448EB437735A136C955B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:06 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjQxNC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "70a08712-6e37-44ed-ada8-ebadf5b1a463" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12715,Microsoft.Compute/GetVMImageFromLocation30Min;73712" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dc718d62-78c4-4759-b51c-7d2e23ace85d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c0df2dbb-c912-49f1-ab13-0b126cad5d63" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3f97476c-bf52-41f2-959e-aaa11a20c75e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215048Z:3f97476c-bf52-41f2-959e-aaa11a20c75e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3F1DA943D70B4CC28A3B7D9B3D664A82 Ref B: MNZ221060608033 Ref C: 2025-06-02T21:50:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:47 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjQxNC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11984,Microsoft.Compute/GetVMImageFromLocation30Min;72784" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ce53bea0-2090-4891-90b6-cf66e93f4964" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8a240bae-45a9-47bf-ac8b-4dd43e157d13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "d0815ab8-54d0-48e5-af9a-cd9fdeb9bbcd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215306Z:d0815ab8-54d0-48e5-af9a-cd9fdeb9bbcd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E3E4E379AFE04B039014B9B3EA48D8C5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:06 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjUzMi4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2cc4a000-94d7-42c3-9083-bc173842c95f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12714,Microsoft.Compute/GetVMImageFromLocation30Min;73711" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0039705e-779c-4c56-856e-b5f51d984c09" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f231bef5-f4a5-4183-b35d-6fb61763468d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8b5c5edc-9b20-4ebc-892e-7029c5778ab8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215048Z:8b5c5edc-9b20-4ebc-892e-7029c5778ab8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B3C67E4E3C634889AAEC569C69AEFC79 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:50:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:47 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjUzMi4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11983,Microsoft.Compute/GetVMImageFromLocation30Min;72783" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "62277f12-a646-4efb-b5c7-e6dc1cc32802" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0e46810b-c451-4f4c-bc16-08660e0d9870" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "898780a3-1346-4684-b73d-e3a6ba0a1b58" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215307Z:898780a3-1346-4684-b73d-e3a6ba0a1b58" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8FBBBE0D7B8642C88D0F92D9F630DD6A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:06 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjY1OS4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7352b380-9be7-4775-af25-020f675c1f45" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12713,Microsoft.Compute/GetVMImageFromLocation30Min;73710" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "26e12406-0eab-47b6-b3f0-5c72f19cb727" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f8cb21a0-700f-435a-a3b8-6f1babde618b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "ded055b9-5fca-4361-90e4-d74dcf008cf6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215048Z:ded055b9-5fca-4361-90e4-d74dcf008cf6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 11131FD80D4343D89B83E33E38293AFE Ref B: MNZ221060610025 Ref C: 2025-06-02T21:50:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:47 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjY1OS4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11982,Microsoft.Compute/GetVMImageFromLocation30Min;72782" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "634aec77-ab00-4911-acef-53c137e7a3a8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fdd3886c-e8b0-4870-8fd2-4dae30ca0c25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f50963d6-a772-424a-8c50-f30450a3cf08" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215307Z:f50963d6-a772-424a-8c50-f30450a3cf08" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DC2F784C180741E08BC05C38272997F0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:06 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "605b1c39-9190-4fd0-8623-24dc2325f303" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12712,Microsoft.Compute/GetVMImageFromLocation30Min;73709" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7a3d5fc1-00e1-4916-ba58-5ad2052c5887" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d4762049-9759-492f-871d-11e4db338258" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a30a9d7e-5170-4bbd-b2e3-e776ce57f178" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215049Z:a30a9d7e-5170-4bbd-b2e3-e776ce57f178" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F780FEF4D94346638B4C785AA144224A Ref B: MNZ221060610031 Ref C: 2025-06-02T21:50:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:49 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11981,Microsoft.Compute/GetVMImageFromLocation30Min;72781" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "74bf78d1-7b3b-4b8c-83ec-164ef4a7c0a7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/23ecb3e5-0d09-4eb4-96a2-d288d2249ada" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "cef77b3c-4e9b-4962-a738-3cd1b57c6b7a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215307Z:cef77b3c-4e9b-4962-a738-3cd1b57c6b7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A8C0CB4BDDF64908B86E1F8D2C5904C4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:06 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0d7e8b11-7653-4539-89ef-bfd461f2ea11" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12711,Microsoft.Compute/GetVMImageFromLocation30Min;73708" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "15888153-e9fd-409d-b0c5-cd416f681d4b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/69a91c0d-e1c1-4f75-ae5d-b44e4ec3d326" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0bf278a8-cf1a-4d2c-97cc-704ef93dbb2a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215049Z:0bf278a8-cf1a-4d2c-97cc-704ef93dbb2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8D26AFB7F88049708B79E51C68EBE831 Ref B: MNZ221060608033 Ref C: 2025-06-02T21:50:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:49 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11980,Microsoft.Compute/GetVMImageFromLocation30Min;72780" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "dadebb8f-8612-4912-86bb-856ac0829a08" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a10e8158-57f9-4c97-89ff-5d15d0b65724" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "bbbbe34b-a980-4620-b26e-e462ca7cc37b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215307Z:bbbbe34b-a980-4620-b26e-e462ca7cc37b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E4A2299AB38248B6B2DF1C7A886776AD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:06 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9461a439-9514-44a6-be8e-f28e06a93a56" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12710,Microsoft.Compute/GetVMImageFromLocation30Min;73707" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9eec1b5d-601b-4926-97f8-146be8391ec9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/43e89e01-922b-4fc8-93ef-c3e93cdaacdf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "12f6d255-19e9-4514-80f9-05fb39fa0ec2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215049Z:12f6d255-19e9-4514-80f9-05fb39fa0ec2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 33CEFA66C7B745BDA2F9F3709F166860 Ref B: MNZ221060610045 Ref C: 2025-06-02T21:50:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:48 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11979,Microsoft.Compute/GetVMImageFromLocation30Min;72779" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e8c13479-7efa-40fa-9e0c-7435f881de5a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fa4bb9f7-f26e-44ce-94ff-c15f82a82f96" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2fe27ec6-9462-471d-89a0-bbaa874d5e30" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215307Z:2fe27ec6-9462-471d-89a0-bbaa874d5e30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9DA14F5E4FA840FCB2C3A634799D264F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:06 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8dd1fd62-4082-4bbc-8c35-d98c8550fc3e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12709,Microsoft.Compute/GetVMImageFromLocation30Min;73706" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "afefc2d0-4e7f-47d7-a5d6-c5e16ccdd300" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1c5269b1-dac3-430b-b93a-2e5b8bd9f773" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cf283fff-2032-4650-8604-3017420d06ef" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215050Z:cf283fff-2032-4650-8604-3017420d06ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 054060458B994DDE9D0643BDFDA1404E Ref B: MNZ221060618047 Ref C: 2025-06-02T21:50:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:50 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11978,Microsoft.Compute/GetVMImageFromLocation30Min;72778" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "95f72489-ca14-44b0-a66e-37b1fde2c31d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6db6d552-a6ed-46d0-9856-4f3fe9e7b9c5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8292a779-14c1-459c-9ada-de7d6c589ff5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215307Z:8292a779-14c1-459c-9ada-de7d6c589ff5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5E601D13A9A241A8B096CE41CF950987 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:06 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "81dc4d79-8287-4414-adee-f18a7d4bd176" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12708,Microsoft.Compute/GetVMImageFromLocation30Min;73705" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4326bc1f-fed5-4c37-b785-76d76bb47540" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9b67d8e4-68a0-442a-afa2-922bc4c01a89" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8e9fab8e-521b-46bb-8144-e231b5971265" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215050Z:8e9fab8e-521b-46bb-8144-e231b5971265" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D37A29FC5A134D178A588353F9DAF10B Ref B: MNZ221060608007 Ref C: 2025-06-02T21:50:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:49 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11977,Microsoft.Compute/GetVMImageFromLocation30Min;72777" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fd68c3dc-f1fe-4b69-a4ac-269ff0e9d922" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0da2592e-1130-452c-b3ef-d9c65ef07363" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9b539f46-a5e7-4115-8dc5-c4b819659e06" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215307Z:9b539f46-a5e7-4115-8dc5-c4b819659e06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0DDF04A657D44264BD6841787AC99581 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:06 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f4b0e479-74b5-4992-98f9-139b275033fc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12707,Microsoft.Compute/GetVMImageFromLocation30Min;73704" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "111ed449-a56b-4d0e-b867-7e2190145803" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/56a87424-c439-44c7-858a-706aa5f4b81a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "bbadfbaa-c246-42d7-a214-5bcb36e803b5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215050Z:bbadfbaa-c246-42d7-a214-5bcb36e803b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3158623E8FEF4BD69630EC744A4930AE Ref B: MNZ221060609011 Ref C: 2025-06-02T21:50:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:49 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-smalldisk-g2/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11976,Microsoft.Compute/GetVMImageFromLocation30Min;72776" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3e8105c6-ef16-40d5-bdab-98bc10206dc9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/53321bc3-e521-4ec3-8025-6a92c6f0ab1f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b8a3242d-24d2-46fd-9be0-5a8e35294462" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215307Z:b8a3242d-24d2-46fd-9be0-5a8e35294462" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5035A28A7C4441FB945444D9E0423582 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:06 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-with-Containers/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS13aXRoLUNvbnRhaW5lcnMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "89df4de1-5698-4599-a35f-766c88af08e2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15967,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43961" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a6f0f2d2-3fcc-43bd-9c44-6c3080399d28" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/85b83279-c468-4910-91ae-6b01c74e4dd2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fe4f8eaf-aeea-46fb-8978-a93575ddc031" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215050Z:fe4f8eaf-aeea-46fb-8978-a93575ddc031" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 645A887AFBC04FE4BCE5095D25371702 Ref B: MNZ221060610039 Ref C: 2025-06-02T21:50:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:50 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-with-Containers/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS13aXRoLUNvbnRhaW5lcnMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15893,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43860" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bc10b8c6-9aec-43c7-8112-e2000e2ed5db" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/36e18fe6-0c9c-452d-b991-b599a7007aa3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "06dc3f82-b4a3-4f19-871e-4012c286d2d6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215307Z:06dc3f82-b4a3-4f19-871e-4012c286d2d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 600DBEDF237E4A0A87A63680CEDEC827 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:06 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-with-containers-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS13aXRoLWNvbnRhaW5lcnMtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0dc96779-cc9e-4163-a717-b296faa0e096" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15966,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43960" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "97ac37a1-6e83-41e5-b13f-a27997a8fb8b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/41c56dcd-7acd-464e-844a-230c53e22e9b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0e06a996-ce9c-4231-be70-b03466a6466f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215050Z:0e06a996-ce9c-4231-be70-b03466a6466f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2D0201216264962B528C1898646B3F5 Ref B: MNZ221060610007 Ref C: 2025-06-02T21:50:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:50 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-with-containers-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS13aXRoLWNvbnRhaW5lcnMtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15892,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43859" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "dcb5c022-fb5e-47a9-b3db-45937f32125e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/04b7417c-4db5-4efe-ac10-26c8584acdda" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2c86733c-b6d3-4a5c-844a-fa766285ed3f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215307Z:2c86733c-b6d3-4a5c-844a-fa766285ed3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EF843AF21BC04A5F8F4E1F2BA9B313F7 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-with-Containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS13aXRoLUNvbnRhaW5lcnMtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6fc35db7-5462-4447-a6f1-16a36c15f605" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15965,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43959" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d118d305-b672-4e6a-8a5a-9993e45e14dc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/005e3887-a1f7-4fef-b858-688499257ed6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b781d3ae-44b1-4e1f-85f6-7845e9780778" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215050Z:b781d3ae-44b1-4e1f-85f6-7845e9780778" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1A4FEA901D3243818F8F4C4AA3192C54 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:50:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:49 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-Core-with-Containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItQ29yZS13aXRoLUNvbnRhaW5lcnMtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15891,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43858" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "785e4cf2-3a4e-4012-8de8-baf539474657" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/646f9fd1-98d6-4ccd-89f9-4b7f60cf57cb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e1dec92c-9756-4425-99cc-df7e6c448117" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215307Z:e1dec92c-9756-4425-99cc-df7e6c448117" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 79E494D143E24AF89D1567F22676BD42 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-with-containers-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS13aXRoLWNvbnRhaW5lcnMtc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a3a39e73-222c-4466-988b-39c4f5ea837e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15964,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43958" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4d931164-bda1-4b36-87a5-cdef246a8707" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/59e1557f-8e72-40b9-a99b-1214ea47055a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d9e119d3-e4e7-4b5c-816c-84907d246261" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215050Z:d9e119d3-e4e7-4b5c-816c-84907d246261" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8CC7D50D7F4B4CE585AAA70DCC1AAC46 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:50:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:50 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-core-with-containers-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItY29yZS13aXRoLWNvbnRhaW5lcnMtc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15890,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2112abe3-d628-4287-b11b-202a2e183743" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/94ac1ca5-b097-44fa-ab3f-04a0c87cd110" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4a1ce776-9493-492a-8391-70219d152b87" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215307Z:4a1ce776-9493-492a-8391-70219d152b87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F48A2EFB2CD48D2B5C52015D757ACDE Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f4738b99-ef7e-423d-96e7-5f0e65c4e5e6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15963,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43957" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3cd368b0-e61a-46f1-a07b-5be2de1fbd30" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/249790a7-b9e1-49a1-a343-1dd26a05b046" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5ceb72b6-a5d6-4d3d-807a-4318d3505294" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215051Z:5ceb72b6-a5d6-4d3d-807a-4318d3505294" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1CEC55CDE7F54B0CBB97D515912F91D4 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:50:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:50 GMT" + ], + "Content-Length": [ + "5709" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15889,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43856" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3252576a-3911-4d07-9f97-6c0468d2327f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2cde7062-32da-4c47-9cd0-eefdb15cceb5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5729e08b-cdfc-420a-88b8-206a01d09767" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215307Z:5729e08b-cdfc-420a-88b8-206a01d09767" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F6E81558DB6745D2B3D924B81578381F Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "5709" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjUzMjkuMjMxMjMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7a2a0e22-30e3-4f2e-b5a4-a3f7f8abf4c1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12706,Microsoft.Compute/GetVMImageFromLocation30Min;73703" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ad6f6e7a-7916-470f-b94c-d0495bf3df5b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7c049791-5f16-46a4-ac57-a4038818fd7c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "04fb5154-a7fe-4d76-b9f3-922a55107e7b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215051Z:04fb5154-a7fe-4d76-b9f3-922a55107e7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1559BC8F2E2B439487BCFB163DBF5467 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:50:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:50 GMT" + ], + "Content-Length": [ + "1272" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjUzMjkuMjMxMjMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11975,Microsoft.Compute/GetVMImageFromLocation30Min;72775" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9de12956-398a-4c9f-b20c-6c13eec3a8bd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fc79f51a-dbee-4b1a-8bd1-c8666fd91554" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "d994ab74-7e7f-4654-8060-e60f01b5550d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215307Z:d994ab74-7e7f-4654-8060-e60f01b5550d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5C6E01FDD3E14909B0EFF819AC711E69 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1272" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjU0NTguMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "28dcd806-683f-4c0d-8562-d25a4ed214b2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12705,Microsoft.Compute/GetVMImageFromLocation30Min;73702" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "16058187-61bc-4fec-9ad4-ec565b6c035b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e66d1bd6-1c3c-419d-a244-5c67a5a3f31c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "6579b544-5a96-4770-a8f4-ca39f8c7c2f6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215051Z:6579b544-5a96-4770-a8f4-ca39f8c7c2f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C2375F5EF3EA4D80B29AECE54DB96B0A Ref B: MNZ221060619021 Ref C: 2025-06-02T21:50:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:50 GMT" + ], + "Content-Length": [ + "1272" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjU0NTguMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11974,Microsoft.Compute/GetVMImageFromLocation30Min;72774" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9a5a55bd-ecf8-4be7-ad7c-6665ee42dfa7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4e62abd9-0851-4bd6-8175-9bd56eec40a0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "db2026cb-241c-4abc-9044-a53fcfe669c3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215307Z:db2026cb-241c-4abc-9044-a53fcfe669c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 015FDB08A55C4221B38183B69C21F245 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1272" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjU1NzYuMjQwMzA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5ea73cbc-2cd4-43d8-997d-46ed5a5eba0b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12704,Microsoft.Compute/GetVMImageFromLocation30Min;73701" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1cd27573-45ad-45ae-b6a5-f4f4b867067e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4ceebeb7-3ba0-418b-9a4e-302de302e964" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "af567226-c31f-4ea9-9ed4-cc863d032c33" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215051Z:af567226-c31f-4ea9-9ed4-cc863d032c33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E2B265F9099B4A8D8EBEC4E5FBDBE4A2 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:50:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:50 GMT" + ], + "Content-Length": [ + "1272" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjU1NzYuMjQwMzA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11973,Microsoft.Compute/GetVMImageFromLocation30Min;72773" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d7dc6b73-45d4-4672-bbaf-eab662f6291c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4976c110-3d7f-4fcf-b4d8-0572fb28f5c2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "b436df36-8eea-4e0e-8541-ff38c21911b3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215307Z:b436df36-8eea-4e0e-8541-ff38c21911b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A7AEBECE33854372A2E66E1749A947E7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1272" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjU2OTYuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "52d7bfdd-264e-49ff-bd49-6d333e7d9598" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12703,Microsoft.Compute/GetVMImageFromLocation30Min;73700" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "454b08ce-90ac-45e1-85a9-b04c56117045" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3f49ec15-d3d0-4e3d-a643-7a956d31563c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f2ed920b-0f67-46b2-9a72-9e278655a8a4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215051Z:f2ed920b-0f67-46b2-9a72-9e278655a8a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E1658799491D4C10B5641090600257B8 Ref B: MNZ221060608039 Ref C: 2025-06-02T21:50:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:51 GMT" + ], + "Content-Length": [ + "1272" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjU2OTYuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11972,Microsoft.Compute/GetVMImageFromLocation30Min;72772" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0c1e50e8-b60f-4eff-ace1-23300fc7959e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fabdab58-fa69-47bd-a557-3580c949f0b6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "44a9891c-e8cd-472f-8d9f-af6476e3e3e8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215307Z:44a9891c-e8cd-472f-8d9f-af6476e3e3e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C7BA47E6226F4B52981EF7B6BE91ED86 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1272" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjU4MjAuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "59c12068-f549-4fcb-8b5d-84392e09a894" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12702,Microsoft.Compute/GetVMImageFromLocation30Min;73699" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "509f23f9-d2b4-48a9-8e96-3616e73c5fe3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4d04657e-920b-4d5d-b600-534dd399ed38" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c4ceeddf-abb0-4f4b-bd09-4ce6cb623181" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215051Z:c4ceeddf-abb0-4f4b-bd09-4ce6cb623181" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CDF2F04727B74B93A5E57A10A2AAA269 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:50:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:51 GMT" + ], + "Content-Length": [ + "1191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjU4MjAuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11971,Microsoft.Compute/GetVMImageFromLocation30Min;72771" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0d6dc95e-8e0a-4b72-bed8-08bcbf3b7691" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ae46582b-4ca6-42ac-b0a6-066d913a3444" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "9c06f602-14f8-4cfa-a46a-80ed44073f0a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215308Z:9c06f602-14f8-4cfa-a46a-80ed44073f0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 218E5B0A264E4DC386BEE4004F2947FA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjU5MzYuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "40befaa1-ba8f-4d45-ab12-6240034a5dd5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12701,Microsoft.Compute/GetVMImageFromLocation30Min;73698" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a56fefe1-d00f-4077-8fe1-12e91046b885" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0e0df902-ce1d-43cd-9a12-a9117e4996f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c7f5a566-20ac-4e4d-a987-4e9207ea70c9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215051Z:c7f5a566-20ac-4e4d-a987-4e9207ea70c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 75F96B4CDA6549F88BAA5A291AEAE43A Ref B: MNZ221060619027 Ref C: 2025-06-02T21:50:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:51 GMT" + ], + "Content-Length": [ + "1191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjU5MzYuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11970,Microsoft.Compute/GetVMImageFromLocation30Min;72770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9b24568d-bb04-4ca0-beb1-87d3f041626b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3e746372-8555-4612-a80e-92b8fdd2ed5b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "c5044032-2fe2-40c0-906b-96cef8e22e5e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215308Z:c5044032-2fe2-40c0-906b-96cef8e22e5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8AFA5BB2BF31436C825386B6A6FE0D7E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjYwNTQuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c44e18c2-68ae-4741-81ce-246250336f16" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12700,Microsoft.Compute/GetVMImageFromLocation30Min;73697" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3df1937e-bb04-4865-8d1c-11884ed050cd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/245518b2-9e90-4b2c-b449-dcb967dee7f3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "db9ceb3d-550a-4090-b545-40233b94f60b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215051Z:db9ceb3d-550a-4090-b545-40233b94f60b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 82992BABA85D4B1390502F4983DD54E0 Ref B: MNZ221060608033 Ref C: 2025-06-02T21:50:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:51 GMT" + ], + "Content-Length": [ + "1191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjYwNTQuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11969,Microsoft.Compute/GetVMImageFromLocation30Min;72769" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1a815daf-690c-4515-82f0-4656d57468a2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d940627a-41ba-4cd3-bae0-32ffc82267f8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d5b907cd-b0ac-4174-9d54-9af6b31d611a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215308Z:d5b907cd-b0ac-4174-9d54-9af6b31d611a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D018C5338A064AA485DFAEF543DB22A1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjYxODkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5143182b-54ba-4fa8-a6af-307139ea6f8f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12699,Microsoft.Compute/GetVMImageFromLocation30Min;73696" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "03b7fefe-7610-4bf2-9f6b-31d559bcafcd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/267bcf59-fe37-4aca-bed1-5298fb0a023e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3f2316c7-85e2-4dac-859c-af2d034b23fb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215052Z:3f2316c7-85e2-4dac-859c-af2d034b23fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D1DEA03EECBA4ADD89F6C722D1711D35 Ref B: MNZ221060609035 Ref C: 2025-06-02T21:50:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:51 GMT" + ], + "Content-Length": [ + "1191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjYxODkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11968,Microsoft.Compute/GetVMImageFromLocation30Min;72768" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "936f2cc3-e806-4492-8fe6-164f9798f229" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c80be775-7e31-49f8-9c7e-ea7acb1e4f84" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "5d601a12-d164-4646-86af-e3b42dea9a14" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215308Z:5d601a12-d164-4646-86af-e3b42dea9a14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3CA305FAC4B54646922C1FA4B7144464 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjYyOTMuMjQwOTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5cbe677b-bd2f-496a-a71f-4a4571dc7b0b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12698,Microsoft.Compute/GetVMImageFromLocation30Min;73695" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9e20f68f-d555-4afa-a5bd-5b0917dcb3f9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5cfb2ae2-e877-4b16-81d6-703bc53a725e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "890f309c-cfe7-490d-b1ca-f497a15f8eda" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215052Z:890f309c-cfe7-490d-b1ca-f497a15f8eda" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 14D84BEE8CCC40489CE6D6E68C05A936 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:50:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:51 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjYyOTMuMjQwOTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11967,Microsoft.Compute/GetVMImageFromLocation30Min;72767" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8862cd0e-e85c-4a8c-9235-a8483453fcc8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/69f74eda-d657-4364-8cf0-7e626ecdcaab" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "7f15e352-7726-47fb-96e4-8aa452dc120d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215308Z:7f15e352-7726-47fb-96e4-8aa452dc120d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4FE9C8AF5CF54D37B25D80621C030A5A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjY0MTQuMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "18ad25e5-4eea-4d5a-99cd-e9a351ff96d1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12697,Microsoft.Compute/GetVMImageFromLocation30Min;73694" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "423d02ae-b472-4808-a42b-3d429274b473" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/25f12466-2658-4f00-bd63-19778522782d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b8bba566-6789-4a72-81b1-866bdb2ddbbf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215052Z:b8bba566-6789-4a72-81b1-866bdb2ddbbf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 966F7C846C804D098BB6DEF93CEBF54C Ref B: MNZ221060608017 Ref C: 2025-06-02T21:50:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:51 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjY0MTQuMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11966,Microsoft.Compute/GetVMImageFromLocation30Min;72766" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5f43e18f-1e26-437c-bd1e-7f35471b6818" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5a2b0637-8e8e-4d27-bce4-406f4e5e9419" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1b00b0b3-97dc-4931-be4f-27f461b11a95" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215308Z:1b00b0b3-97dc-4931-be4f-27f461b11a95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9FB5B8068EB0406297385BCD9FC3FC1C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjY1MzIuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "02cad83b-9629-45b5-a16d-3e5c2ea01910" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12696,Microsoft.Compute/GetVMImageFromLocation30Min;73693" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "551186f7-860a-4713-a5bd-23b2d7c10e4e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fff11213-8e90-4d9d-a5d2-c0115f918360" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "53e07c81-afa7-42d6-93ab-4a4b202daeb9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215052Z:53e07c81-afa7-42d6-93ab-4a4b202daeb9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BA66C429CA0E4F8AA86695791CB6D63E Ref B: MNZ221060609023 Ref C: 2025-06-02T21:50:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:52 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjY1MzIuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11965,Microsoft.Compute/GetVMImageFromLocation30Min;72765" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e61e6cb1-3d59-43e5-974d-11b2fb24f907" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4ebd927b-7449-4308-8190-01bc12907e62" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "65ee9d42-07de-47e7-96cd-5f3a4d18e88a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215308Z:65ee9d42-07de-47e7-96cd-5f3a4d18e88a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CDBD23C411904971805D83ECC4A9C74A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjY2NTkuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "da63833c-40b1-4e82-a4dc-ce721a7130e6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12695,Microsoft.Compute/GetVMImageFromLocation30Min;73692" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a43a330d-f322-489b-b114-1c724ec52caf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b9803e54-c6e3-43c7-bcc5-fc80dd5b5f89" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fdc96968-c0ca-433e-a771-4977330815f5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215052Z:fdc96968-c0ca-433e-a771-4977330815f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 626B305C2F064361AA5DBFB82682D866 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:50:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:51 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjY2NTkuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11964,Microsoft.Compute/GetVMImageFromLocation30Min;72764" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ae16409d-7d60-46cb-9d8c-b2ad30237cc9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7614d67d-b534-4e8a-a442-4acde158866f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "562d80d5-e4ac-4dd6-8fa7-6a9668fd781b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215308Z:562d80d5-e4ac-4dd6-8fa7-6a9668fd781b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0C400B789542461B9028EBD1A5C0968F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjY3NzUuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2fcbce03-ebe6-49be-b138-42914c74c1e2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12694,Microsoft.Compute/GetVMImageFromLocation30Min;73691" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "40f100f7-c819-4b49-a692-8960917f6395" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fbde8f52-0161-4a66-b71d-ed05948ccbf2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "044bb255-03e2-4667-b49b-5319efc5905b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215052Z:044bb255-03e2-4667-b49b-5319efc5905b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9B89DF8BFBAE47B49C202016958FD178 Ref B: MNZ221060609023 Ref C: 2025-06-02T21:50:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:52 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjY3NzUuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11963,Microsoft.Compute/GetVMImageFromLocation30Min;72763" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "14852da3-28ac-46bd-8004-2d718c153c31" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a7df3991-07f0-4f8f-a1e3-b33a456c6b20" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "c79c4cc9-35cb-499d-ba2a-9e506adaa5a2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215308Z:c79c4cc9-35cb-499d-ba2a-9e506adaa5a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 72222D28BEB24D86A2F7EE87DA5CFC69 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjY4OTMuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ed0b00cb-8c41-42fb-9ab9-faf258eb8315" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12693,Microsoft.Compute/GetVMImageFromLocation30Min;73690" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a3e1af29-7335-4d05-92d8-d143ceedd427" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0aec31da-98d1-476b-bccd-14b3760c00d3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f7139662-afa8-4c48-89d3-c23d0f3ddd02" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215052Z:f7139662-afa8-4c48-89d3-c23d0f3ddd02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E61E077FD0B84388B3F8708C158870A7 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:50:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:52 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjY4OTMuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11962,Microsoft.Compute/GetVMImageFromLocation30Min;72762" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "05d5f1cc-6686-4ae5-b590-8cc7c3c8563e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ba65e635-8efc-4210-bfe9-3a82c776250c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "1c7321ef-6556-4117-b290-7484d07aa4d0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215308Z:1c7321ef-6556-4117-b290-7484d07aa4d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 00F1526DFF5A44DFB3CD4F20ED74EBA1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:07 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjcwMDkuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "49daf3fb-8320-45b0-9f56-86755cd8559c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12692,Microsoft.Compute/GetVMImageFromLocation30Min;73689" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d7dbd0d4-8bdd-4df9-bb43-5192f506234c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/85b9274e-54f9-4211-ab6f-cd63a7b073c3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e0003d0c-63a1-4add-888b-7ac5bd7310f0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215052Z:e0003d0c-63a1-4add-888b-7ac5bd7310f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C4774BA2FAD44836AF3A638A827E4A3B Ref B: MNZ221060608049 Ref C: 2025-06-02T21:50:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:52 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjcwMDkuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11961,Microsoft.Compute/GetVMImageFromLocation30Min;72761" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1896e49f-f8d0-4903-a237-5d245db94f0d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/31405e35-a599-4015-a0d3-dacad0572322" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "baf8cbc1-6db3-4b28-b5a2-e102b39d52c3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215308Z:baf8cbc1-6db3-4b28-b5a2-e102b39d52c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5F50A5540D6D4CE186F00A291A558C5C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:08 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjcyNDAuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "31d35341-ea04-4bc5-84a6-5709ef68ea75" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12691,Microsoft.Compute/GetVMImageFromLocation30Min;73688" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d6d29aac-2827-458b-acf3-25962818bd7b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e1a56590-9375-4f4a-abef-5887205b913c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "57ac6bf0-5789-462c-bc32-b06e348094e0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215053Z:57ac6bf0-5789-462c-bc32-b06e348094e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6B62B4E63FBE4B9A81FCACA89139CA35 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:50:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:52 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjcyNDAuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11960,Microsoft.Compute/GetVMImageFromLocation30Min;72760" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0a62f8a1-7f64-4a8b-bb88-786689fb559c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/31071caf-85d1-4b73-8af4-e69cf0527e8f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "ae53cd7f-9bb8-4c66-b307-cfd1d9b92f82" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215308Z:ae53cd7f-9bb8-4c66-b307-cfd1d9b92f82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1A0CC8596C59498EAB4C2C111368A43C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:08 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjczMTQuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2a13ac76-7e7a-4bd2-bf04-cb7fc0129ded" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12690,Microsoft.Compute/GetVMImageFromLocation30Min;73687" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7eeb559e-f062-48de-8826-e6f5f31e52d9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1fb911e7-511e-46f1-b478-aee23f798d76" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9f994532-f330-4d1e-ae31-43011ba2712d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215053Z:9f994532-f330-4d1e-ae31-43011ba2712d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2A0B465AE807471797DCDA9710CD7386 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:50:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:52 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjczMTQuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11959,Microsoft.Compute/GetVMImageFromLocation30Min;72759" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "05a2d483-ab9f-4089-b9d3-4ac2699b24f7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d8d1f3c6-19f3-477b-9c3f-1d085f4f41b1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "c6bd0fbf-8b58-41e3-9cba-06ef74eaddd7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215309Z:c6bd0fbf-8b58-41e3-9cba-06ef74eaddd7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7264C4F2C74A446EB889FA4657772EB6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:08 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjczMjIuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b9919b0e-0023-4dd2-b45b-dfacdcc3c83c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12689,Microsoft.Compute/GetVMImageFromLocation30Min;73686" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fb7649b6-2757-4a0f-acfe-05f4ff547790" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4f1f2dfe-ac0b-40c7-a1cf-edf689564611" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "43eb41a6-ef3b-46f0-a583-8aa6743efce7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215053Z:43eb41a6-ef3b-46f0-a583-8aa6743efce7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D2936F995DA444A79B8BC05E0B0532D9 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:50:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:53 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gensecond/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2Vuc2Vjb25kL3ZlcnNpb25zLzE3NzYzLjczMjIuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11958,Microsoft.Compute/GetVMImageFromLocation30Min;72758" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f90d6316-e056-4e51-9017-f6558161242e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/afe729fd-b6a5-40fc-b9b1-1c1f15033063" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "961706da-f2af-429c-8c8b-1467c70bec7e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215309Z:961706da-f2af-429c-8c8b-1467c70bec7e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC537C8082A948F2A38539844BF5E28D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:08 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4af08389-e25a-4524-93c2-2a3c9eef92f1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15962,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43956" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e62eaf4c-2e85-4fca-aa22-af2dd2b551c5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3571fa28-8605-4338-bdd7-4926c7f56c15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "123f9371-8039-437c-8019-73fd767eb4a5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215053Z:123f9371-8039-437c-8019-73fd767eb4a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C672D1DFA5774174B8458E0FE3AB0742 Ref B: MNZ221060619037 Ref C: 2025-06-02T21:50:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:53 GMT" + ], + "Content-Length": [ + "5583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15888,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43855" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d4870aaf-305a-41d4-a75b-2bcdef78d7ea" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ab9300da-9abb-4ea1-ba37-cfc7385fe8b6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "82b30002-1455-4322-a8dd-c83851ddbd97" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215309Z:82b30002-1455-4322-a8dd-c83851ddbd97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 667D7A4EB77D441FA60246E542198F4D Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:08 GMT" + ], + "Content-Length": [ + "5583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNTMyOS4yMzEyMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "975a7808-8015-42b7-86fc-d237a6d6005e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12688,Microsoft.Compute/GetVMImageFromLocation30Min;73685" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "78126169-dd5e-406e-8c1e-cc649b548292" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a80ada77-54c2-4a8c-9538-231b618e5ee2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "c2806dc9-f51b-4406-bda4-39555832d7d5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215053Z:c2806dc9-f51b-4406-bda4-39555832d7d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F89BFB364AA84813A6D6F7F771BB9805 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:50:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:52 GMT" + ], + "Content-Length": [ + "1131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNTMyOS4yMzEyMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11957,Microsoft.Compute/GetVMImageFromLocation30Min;72757" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c5dc2415-fa03-4c44-82cc-a6cb49e46122" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/16e91285-47f3-4e79-9601-b65a421165af" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "67cd4f37-1c79-4689-a2c5-806ca4f53434" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215309Z:67cd4f37-1c79-4689-a2c5-806ca4f53434" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0856964E9A124110A99A4E60C711BF01 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:08 GMT" + ], + "Content-Length": [ + "1131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNTQ1OC4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fb28392a-ffb8-4c76-815c-3fabd69efc73" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12687,Microsoft.Compute/GetVMImageFromLocation30Min;73684" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8e4a5c51-5b8f-4120-95c3-d5767a234b4c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5189c594-fbfc-48e4-817c-94400083fb69" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ebb1490a-b5af-4371-a3c2-8a9e018c2280" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215053Z:ebb1490a-b5af-4371-a3c2-8a9e018c2280" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B45445AC74F4C5BAD8674D7A6DE1BFD Ref B: MNZ221060609025 Ref C: 2025-06-02T21:50:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:52 GMT" + ], + "Content-Length": [ + "1131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNTQ1OC4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11956,Microsoft.Compute/GetVMImageFromLocation30Min;72756" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6fcebdcf-b2ff-4abd-a80b-c9d92633b0e9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/040d7199-e168-48a1-a393-9324db0cbd12" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "b408df56-bb55-4623-b59c-eefb29f3df8b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215309Z:b408df56-bb55-4623-b59c-eefb29f3df8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DC4F1F72E4B6470086FE6E2EA68F84CB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:08 GMT" + ], + "Content-Length": [ + "1131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNTU3Ni4yNDAzMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e1e4dd54-3cfe-48c8-aefe-4f7ac2fb6e7e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12686,Microsoft.Compute/GetVMImageFromLocation30Min;73683" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4b47d4cd-a2f0-4ae3-bd24-c80fb4eb87ee" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7f4b5fdf-3a38-4c41-ac6e-7bc2bea4a1e8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5b7d4990-d090-4b07-b9e7-13d29d7f7f89" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215053Z:5b7d4990-d090-4b07-b9e7-13d29d7f7f89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F00796EEE54C414998B855F643DAAAC0 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:50:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:52 GMT" + ], + "Content-Length": [ + "1131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNTU3Ni4yNDAzMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11955,Microsoft.Compute/GetVMImageFromLocation30Min;72755" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ec1eef21-6a4c-4307-9394-1dfc291c78e7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/38afa697-da9f-4909-af0d-d3f0ae1d4358" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "f61aaeac-d873-4e97-bb9a-30a0f1aaa62b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215309Z:f61aaeac-d873-4e97-bb9a-30a0f1aaa62b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C2BF16491E7747EDA637BD2D3A56CD2F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:08 GMT" + ], + "Content-Length": [ + "1131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNTY5Ni4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7acc65cd-fecb-4bc5-bc27-1c106a723ff8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12685,Microsoft.Compute/GetVMImageFromLocation30Min;73682" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6502eaef-4afb-44aa-b049-1ba12f1ccdf6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e15102a6-6013-4132-947c-518b41e69055" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7fe66315-b75b-49f6-a6c1-0a9df3e8d201" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215053Z:7fe66315-b75b-49f6-a6c1-0a9df3e8d201" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 633D3C8693A745E6AF3F8ED122B97DB0 Ref B: MNZ221060610051 Ref C: 2025-06-02T21:50:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:53 GMT" + ], + "Content-Length": [ + "1131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNTY5Ni4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11954,Microsoft.Compute/GetVMImageFromLocation30Min;72754" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a7059644-fff1-46ca-9348-f9e15f62c3fc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/474ab11f-c089-4c56-a096-086a9e52526c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "83e04bb6-ea88-4893-a31a-39848764d17b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215309Z:83e04bb6-ea88-4893-a31a-39848764d17b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EA7A21DCE6874AF9B9A95122CF6E557F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:08 GMT" + ], + "Content-Length": [ + "1131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNTgyMC4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "44c0e9f4-bfe3-4493-805a-a2e9673bc3b3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12684,Microsoft.Compute/GetVMImageFromLocation30Min;73681" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ab468d56-9b14-442d-8d59-df17623ca8a5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a2439e46-2227-4923-addc-caf76370fc1e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5799664c-4a72-42f7-881a-15e85b29b4ea" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215054Z:5799664c-4a72-42f7-881a-15e85b29b4ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9A214D06843149ED958837A464D506AA Ref B: MNZ221060609049 Ref C: 2025-06-02T21:50:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:53 GMT" + ], + "Content-Length": [ + "1050" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNTgyMC4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11953,Microsoft.Compute/GetVMImageFromLocation30Min;72753" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b5fee786-9d97-46df-b63c-05d7b72ff8db" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2a3ece2e-0639-4d69-8392-49401beb8b96" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f71796da-c479-4120-87aa-b5bb041ec728" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215309Z:f71796da-c479-4120-87aa-b5bb041ec728" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 654406638584474784198D3A1ADAC8AC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:09 GMT" + ], + "Content-Length": [ + "1050" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNTkzNi4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "88644f44-65a7-46b1-909e-b956550ef19c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12683,Microsoft.Compute/GetVMImageFromLocation30Min;73680" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d03a4ed5-0d20-4293-9306-9e63c6a29bd2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/96500836-4602-4bb9-abae-6facf333f6cf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "16ab57bb-684a-4a1c-b2ff-7f0fdd92a045" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215054Z:16ab57bb-684a-4a1c-b2ff-7f0fdd92a045" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 997929C7FE1C46D1ADCA05341B65C0B4 Ref B: MNZ221060610027 Ref C: 2025-06-02T21:50:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:53 GMT" + ], + "Content-Length": [ + "1050" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNTkzNi4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11952,Microsoft.Compute/GetVMImageFromLocation30Min;72752" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "75e39c0d-2842-4992-93e0-cd3f629dd701" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dfa5982d-4fb3-4f32-a224-5fcf369b2859" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "f8c25c2d-66e7-417a-8b6e-8544b22ed2f5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215309Z:f8c25c2d-66e7-417a-8b6e-8544b22ed2f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C862C9550AEC4B378C075D38224F9106 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:09 GMT" + ], + "Content-Length": [ + "1050" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjA1NC4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0f78e1f9-5a20-424d-a76d-471ddaa88082" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12682,Microsoft.Compute/GetVMImageFromLocation30Min;73679" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "53c51423-6faa-44f0-8015-b99ebc13dd8f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d2ccf321-f9a8-4992-adff-1615005724d5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b0234358-2c09-465b-95e4-346eb3ac1ac2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215054Z:b0234358-2c09-465b-95e4-346eb3ac1ac2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 35C691A222924E0490DF06B93D02E381 Ref B: MNZ221060619023 Ref C: 2025-06-02T21:50:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:53 GMT" + ], + "Content-Length": [ + "1050" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjA1NC4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11951,Microsoft.Compute/GetVMImageFromLocation30Min;72751" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6372df6b-c077-4a98-9e08-1489d71e6b43" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6124e789-8b47-411b-846f-08e081221f6e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "039957ad-c1ca-4acb-be54-ef2a11a3c3da" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215310Z:039957ad-c1ca-4acb-be54-ef2a11a3c3da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1FC94E1F542D4021AA9111E6CB10100D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:09 GMT" + ], + "Content-Length": [ + "1050" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjE4OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9d15fd5d-8f49-4365-a2d4-0d4cad941f54" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12681,Microsoft.Compute/GetVMImageFromLocation30Min;73678" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "85448489-ab8c-481b-a7bc-3b936dcdf393" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c09ae354-be4c-4f98-81b2-9b9ecf578706" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4bc5dbbd-a715-4471-bcb9-fd7d674c9bd7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215054Z:4bc5dbbd-a715-4471-bcb9-fd7d674c9bd7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0A080524BF8D4CC494F5A1FBE7D22CE5 Ref B: MNZ221060608037 Ref C: 2025-06-02T21:50:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:53 GMT" + ], + "Content-Length": [ + "1050" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjE4OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11950,Microsoft.Compute/GetVMImageFromLocation30Min;72750" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "82bef525-7bab-4927-b7e7-8430a5894d04" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ff7a865a-2139-4de9-bb81-a8d15272a1b6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d3dc4c20-1b48-46b8-9586-282def28eb15" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215310Z:d3dc4c20-1b48-46b8-9586-282def28eb15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 15A5BB15140B4333914F75033E39D690 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:09 GMT" + ], + "Content-Length": [ + "1050" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjI5My4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b7210883-22fa-4d75-b607-391229e56378" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12680,Microsoft.Compute/GetVMImageFromLocation30Min;73677" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3bb7d1ae-325d-4d02-93de-124c4266fe33" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2e8e3a44-dc93-4018-9219-da692c22cca9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "247bb8a3-7ef2-4116-9346-23f9652cc6cb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215054Z:247bb8a3-7ef2-4116-9346-23f9652cc6cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6407B93D0B08417F93A50E7B2B10434A Ref B: MNZ221060619039 Ref C: 2025-06-02T21:50:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:53 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjI5My4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11949,Microsoft.Compute/GetVMImageFromLocation30Min;72749" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2854db5c-00d1-47fe-92c5-8f70682021fd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0f2585b8-d08f-4661-aa57-6f0752e5a45f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0f0307b7-57c3-45b2-868c-e01865a1020c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215310Z:0f0307b7-57c3-45b2-868c-e01865a1020c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B9A31A87AD34826846F79A21E35B849 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:09 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjQxNC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "266cfc60-c616-4830-8e24-e84c28abd240" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12679,Microsoft.Compute/GetVMImageFromLocation30Min;73676" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "512dd775-616e-455c-8435-4bc9d605314f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/03db5e6e-c802-4170-9186-3865840db7cd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d9f7c80b-4f58-4662-9658-8a70c1600370" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215054Z:d9f7c80b-4f58-4662-9658-8a70c1600370" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9BFDF98D33CA4156AA2CE430F8A873B7 Ref B: MNZ221060610019 Ref C: 2025-06-02T21:50:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:54 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjQxNC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11948,Microsoft.Compute/GetVMImageFromLocation30Min;72748" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "81c774e5-1e91-40be-bc83-962a2b968a39" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0884e378-e357-474b-a651-96f1cc86cee9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "c34d4daf-62ab-4ca7-bf9b-b1644643ade8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215310Z:c34d4daf-62ab-4ca7-bf9b-b1644643ade8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 19D2DD5DC22A4C1CAF0B452F1A4BF527 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:09 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjUzMi4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ac99b3fb-ea7a-4552-be19-9ea2212ee83f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12678,Microsoft.Compute/GetVMImageFromLocation30Min;73675" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8b63bdb5-6b7f-4660-acdb-b221526a5e19" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6a2fca36-da8d-44d5-a234-97f753111c94" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "92d82ff6-97b3-4891-bd6c-da68ad360810" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215054Z:92d82ff6-97b3-4891-bd6c-da68ad360810" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E545209AAA9E4C6DAE5C2886A50B12B1 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:50:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:54 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjUzMi4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11947,Microsoft.Compute/GetVMImageFromLocation30Min;72747" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "404b92f2-d7f5-467f-9df5-89db77ac323b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bc6929ba-9c22-4d46-abd8-419662472449" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c7eb4dc2-48b6-43b0-b17e-564ce6821c11" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215310Z:c7eb4dc2-48b6-43b0-b17e-564ce6821c11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 35A6E5C2D606490CA03BCFD3EE9C9A4B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:09 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjY1OS4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8b399408-a64c-4eb4-9c6a-502f363dcc63" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12677,Microsoft.Compute/GetVMImageFromLocation30Min;73674" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "00d4875f-6c7f-4976-8495-8765b7166e6a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/19cb58e7-342b-4071-b4a2-923e35105032" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3ba135e8-695d-434d-8714-2cb922e53ae4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215054Z:3ba135e8-695d-434d-8714-2cb922e53ae4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DA8D5B678EF24ED499E60E49A02E579C Ref B: MNZ221060619033 Ref C: 2025-06-02T21:50:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:54 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjY1OS4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11946,Microsoft.Compute/GetVMImageFromLocation30Min;72746" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "230803e1-73db-4d9a-89c9-bcf4d81d4f27" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fd491244-20e7-4a57-b2bc-9020349abe70" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "56a20710-c7e5-4e32-9074-37ef55ed5ab7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215310Z:56a20710-c7e5-4e32-9074-37ef55ed5ab7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A38355C6FDB142C99043076607B3A1B5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:09 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eceae7d3-2f7b-4ada-89d1-595d4fcc9b87" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12676,Microsoft.Compute/GetVMImageFromLocation30Min;73673" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2c9062b1-844f-4268-aaab-97434b3b23e0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a3d1dca9-37eb-41d9-8416-233c4ab61181" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7803cf91-ef6f-4bf7-ae05-4d4cdd04cfb9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215055Z:7803cf91-ef6f-4bf7-ae05-4d4cdd04cfb9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B809C7E2D6674A579DA4F4F7621D266D Ref B: MNZ221060608019 Ref C: 2025-06-02T21:50:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:54 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11945,Microsoft.Compute/GetVMImageFromLocation30Min;72745" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "dca153ce-6546-47e3-86c1-38d51c870cb3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fc2396ed-bddc-4228-a94b-180b1dea2c3b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "a9700331-6556-4ec4-970a-da61a9a6d015" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215310Z:a9700331-6556-4ec4-970a-da61a9a6d015" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 25842D37BD8A4C51933C63249DF3FE2F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:09 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a1ebab19-5cb6-4fe1-b007-3a1239e04425" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12675,Microsoft.Compute/GetVMImageFromLocation30Min;73672" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "df64e730-d491-49f1-a030-382893051d3d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/39ae2960-8d33-48bd-a7b4-54a1bbc1c2a0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "827ba0d5-2ba3-4ff5-8c34-0ba772265fa8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215055Z:827ba0d5-2ba3-4ff5-8c34-0ba772265fa8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A8BEF1607C014900A70234894427A0A3 Ref B: MNZ221060618027 Ref C: 2025-06-02T21:50:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:54 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11944,Microsoft.Compute/GetVMImageFromLocation30Min;72744" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5d7f1ce1-81d3-4950-ae3f-4d2f2888f70b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2c6f81e9-a374-4819-b621-31f0c8d1a554" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "4e407902-7265-4caf-984b-0836023eb139" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215310Z:4e407902-7265-4caf-984b-0836023eb139" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3690094E9E3848E9BB448584BC05501A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:09 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ecbcd419-ac4f-4ad7-a919-18968bad7303" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12674,Microsoft.Compute/GetVMImageFromLocation30Min;73671" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0f881794-ca5c-49d2-83a7-7a993139ba97" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8d65a962-6501-4813-9bc1-67f221d139f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f5535a7a-feea-433e-ad0d-b03c9717a626" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215055Z:f5535a7a-feea-433e-ad0d-b03c9717a626" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 870BCA0CCB424A9083BE6F82BF2ACB59 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:50:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:54 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11943,Microsoft.Compute/GetVMImageFromLocation30Min;72743" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c9733b46-0958-4dd2-abea-ac2528877eeb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c294b1e4-bfe7-4423-a316-c5c35ed18be8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "2e76f44b-be85-41db-b9f8-72c40675b972" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215310Z:2e76f44b-be85-41db-b9f8-72c40675b972" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D81B968479164472A87C0AB261E9C22B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:09 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1696e8b6-650e-47e3-91c8-e4e8831afab9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12673,Microsoft.Compute/GetVMImageFromLocation30Min;73670" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "73f5b50b-520f-4e67-a509-944ae8e8d6b6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3cfd2ea1-4b01-4339-b59e-eb31f5a45da8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7b702fff-79c3-4366-8281-9476a6a493fe" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215055Z:7b702fff-79c3-4366-8281-9476a6a493fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C8D6419690D24170900AC5948D89F496 Ref B: MNZ221060619025 Ref C: 2025-06-02T21:50:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:54 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11942,Microsoft.Compute/GetVMImageFromLocation30Min;72742" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1fa1007a-96a0-4342-8a2e-89e334ece628" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e3dfa785-15d2-456c-84ca-f736376a5a0c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3846e1d1-f6a2-4113-ba0a-af1a1c4bc082" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215310Z:3846e1d1-f6a2-4113-ba0a-af1a1c4bc082" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A6769882BECB4CDF87EDE0A0901741DC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8b755092-ca9e-4e28-aaac-bc38d9fa3fcb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12672,Microsoft.Compute/GetVMImageFromLocation30Min;73669" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "01fd538b-d03d-4469-8ab6-134aa937bf44" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1a3541e0-2cd8-486e-8864-f044381a0dde" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b556c524-e9a3-457f-9395-ed4c5f89e7a3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215055Z:b556c524-e9a3-457f-9395-ed4c5f89e7a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EB086AB39B89472183BB5A8ABF205DF1 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:50:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:55 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11941,Microsoft.Compute/GetVMImageFromLocation30Min;72741" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a56e5a0e-5b8a-471d-8e78-80269cde0ae1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c9e35725-b424-4781-bd6a-4826980d7587" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "8343a27d-46e2-46c1-bcc2-367cd1b55f0d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215310Z:8343a27d-46e2-46c1-bcc2-367cd1b55f0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F9A82600E68F4B0A95A0A4F62C6BB0B7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "40adb908-1add-409f-9c5c-64fd35ba322d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12671,Microsoft.Compute/GetVMImageFromLocation30Min;73668" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a1a87b42-e4db-4f91-bfc6-c63336aa92be" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3a90bff1-5070-495c-ab0a-4d61eed83e08" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "68c3d693-b1be-44db-b2c0-250ccf1fdf64" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215055Z:68c3d693-b1be-44db-b2c0-250ccf1fdf64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 65CCEE558FDE4EE0B223469E55EE9F36 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:50:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:55 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MvdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11940,Microsoft.Compute/GetVMImageFromLocation30Min;72740" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9a8469fd-a0bd-461b-9ab3-8c2f7d59534e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4a48de65-37f3-4455-ba10-5d79166ec348" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "51290119-61ef-4a0a-b502-6906cf5a1435" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:51290119-61ef-4a0a-b502-6906cf5a1435" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 537DBA0E88254E168EF5CB5C938EDAA5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "1098" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "65b77c83-a729-453d-a2ec-f5c9a56d3541" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15961,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43955" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a0c66447-70ee-499e-be63-dae0ea8c0ffc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d6dbaa13-7fa9-4a45-a049-d528b35e71df" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5c956d88-87ab-438a-bea9-1c8a9c5a32f3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215056Z:5c956d88-87ab-438a-bea9-1c8a9c5a32f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1AEDB456A5F945BA98B6C0960F09928D Ref B: MNZ221060608025 Ref C: 2025-06-02T21:50:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:55 GMT" + ], + "Content-Length": [ + "5011" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15887,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43854" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "746bbe39-0638-4e14-8b7f-27fcf6dca2f5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bd67b03f-636a-4199-bd09-36d75a0c9507" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "46941042-b64e-45a9-90c0-0366f929a1be" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215311Z:46941042-b64e-45a9-90c0-0366f929a1be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F69D966C4130474491C470C0F8AF4057 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "5011" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNTU3Ni4yNDAzMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "279f162f-4b9f-4d2a-89ca-48a898c3c904" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12670,Microsoft.Compute/GetVMImageFromLocation30Min;73667" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9e26d060-06af-4f20-adfc-b99250a8f961" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4e51ba5a-8e7e-4ecb-bce0-aab818e229d0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ae942489-3ae8-42a4-8fe4-26bfac5632e5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215056Z:ae942489-3ae8-42a4-8fe4-26bfac5632e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B5530BF342F41AFAE8EE7E653F6CF72 Ref B: MNZ221060609021 Ref C: 2025-06-02T21:50:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:55 GMT" + ], + "Content-Length": [ + "1156" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNTU3Ni4yNDAzMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11939,Microsoft.Compute/GetVMImageFromLocation30Min;72739" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0a2b5a78-0bc5-4c5b-917c-02897a474eb1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/833dd604-50ff-4219-8810-d4ffec5925d8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "e6ceba82-bc04-4e62-b14c-f45346efa499" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:e6ceba82-bc04-4e62-b14c-f45346efa499" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6C8591459B7C4B4B80A56B0D68030141 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "1156" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNTY5Ni4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3f94301c-ea4f-41f8-a239-dcc1ec39385c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12669,Microsoft.Compute/GetVMImageFromLocation30Min;73666" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "200cae8a-8330-4e2f-9fef-6194e46c107c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8e5f2372-82fc-469a-a599-3945afde9778" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b3cce54f-6901-4d01-87fb-b70668f68034" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215056Z:b3cce54f-6901-4d01-87fb-b70668f68034" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EC98E1DB0BA441879CD08F96EEE263FB Ref B: MNZ221060619009 Ref C: 2025-06-02T21:50:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:55 GMT" + ], + "Content-Length": [ + "1156" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNTY5Ni4yNDA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11938,Microsoft.Compute/GetVMImageFromLocation30Min;72738" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "393ec7dc-35a8-4aeb-b94c-3555d6c755cd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/08e47327-e2d4-477a-a0ca-905911011164" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b28b57cc-8588-4690-b31d-78d681de9df3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:b28b57cc-8588-4690-b31d-78d681de9df3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8EE66AABE93B4C4FAAD4D9B2C8F76CCD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "1156" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNTgyMC4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b272cfdd-25c8-4b48-9522-d2d684cf7f38" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12668,Microsoft.Compute/GetVMImageFromLocation30Min;73665" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7bf99260-ede1-4036-995d-7d7895455d5a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/aa6a685c-534b-4ec6-be96-b3f2f4427067" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b28927a5-0086-494d-b132-0f7d1e36738d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215056Z:b28927a5-0086-494d-b132-0f7d1e36738d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 52F2FFD7C3D84229BAE53F9499EF0A46 Ref B: MNZ221060618051 Ref C: 2025-06-02T21:50:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:56 GMT" + ], + "Content-Length": [ + "1075" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNTgyMC4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11937,Microsoft.Compute/GetVMImageFromLocation30Min;72737" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a3b40116-44c3-46ec-a89b-1c449d55ce19" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ff8201b9-b3d3-4b5b-bf13-d7e4f18e40a3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "0c681e90-2a4d-434a-9af7-ecf16565cd99" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:0c681e90-2a4d-434a-9af7-ecf16565cd99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CCF26B2D414E437C9A04EBC9C88A73EE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "1075" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNTkzNi4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b2baf964-b1b9-4c78-a3a1-d6b2a342da36" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12667,Microsoft.Compute/GetVMImageFromLocation30Min;73664" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b5b97471-95c4-42ca-a4ec-fb1ce67d10aa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7a5a1b73-3998-4ed4-8ff7-f87d72a32f46" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "58d491de-74de-4140-96ee-ebf3dc1db418" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215056Z:58d491de-74de-4140-96ee-ebf3dc1db418" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D90DA1A0F9694F5BA821827C5F78BD86 Ref B: MNZ221060619023 Ref C: 2025-06-02T21:50:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:56 GMT" + ], + "Content-Length": [ + "1075" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNTkzNi4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11936,Microsoft.Compute/GetVMImageFromLocation30Min;72736" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a6c45112-cfa4-464b-af52-fb03a4ecc3bb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f454c72b-3ec5-48ae-b789-e5e077704fdf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "8be5bcce-08c9-4c8b-a255-46fa0c7e54d7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:8be5bcce-08c9-4c8b-a255-46fa0c7e54d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 405BC4BA4E784A78BC3CB6516947E0DB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "1075" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjA1NC4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "92870baf-aef3-44fb-9172-56094840c19b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12666,Microsoft.Compute/GetVMImageFromLocation30Min;73663" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "08656941-aa40-404e-b989-77e2c9d24ae7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a71080d3-0792-4bfd-b9a2-173c10023526" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "513b7b82-afd2-4608-82ad-64288579e622" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215056Z:513b7b82-afd2-4608-82ad-64288579e622" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 85D7E746A5FD486284C162051D55AE74 Ref B: MNZ221060618035 Ref C: 2025-06-02T21:50:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:56 GMT" + ], + "Content-Length": [ + "1075" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjA1NC4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11935,Microsoft.Compute/GetVMImageFromLocation30Min;72735" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "121f0fc4-7d41-44b5-b97d-71ad8c80e96b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e0ebe3cc-b602-46ea-aa8c-30f95c76758d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d5f12f8e-c255-4003-9f5f-13290beb4ed1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:d5f12f8e-c255-4003-9f5f-13290beb4ed1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E0B690EB62A84B77A99F1BCFC70D7ACD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "1075" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjE4OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "783be45a-5bc5-420f-9aa0-28d1b7feb03f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12665,Microsoft.Compute/GetVMImageFromLocation30Min;73662" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "15e93f4b-a272-4b36-9259-a1b49f85667b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cd851b76-83be-42e2-84c7-856f7215caac" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "35356700-7b75-4f4e-8d92-5590be17512e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215057Z:35356700-7b75-4f4e-8d92-5590be17512e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BC2987A1460E4728855D3ABFE5C04BEE Ref B: MNZ221060619035 Ref C: 2025-06-02T21:50:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:56 GMT" + ], + "Content-Length": [ + "1075" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjE4OS4yNDA4MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11934,Microsoft.Compute/GetVMImageFromLocation30Min;72734" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9d15790e-5049-40da-b39b-de28371bc8f9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6a7b9ffa-4178-4c37-b806-f7540edf62eb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "8c21ba03-55ba-420b-a2c8-6e3d2d8c3531" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:8c21ba03-55ba-420b-a2c8-6e3d2d8c3531" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B8A3284D2454D80A2EDE2773811370E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "1075" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjI5My4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ab8a1ffb-017a-4bd9-91ae-1b822edbe934" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12664,Microsoft.Compute/GetVMImageFromLocation30Min;73661" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a3097535-f4fb-4508-adc0-4fa5a49d5052" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2d9f3d12-0ac6-4c2f-9db9-2f66cbc545c4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "eaa6569b-8a1f-4580-9484-8ab73229bfef" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215057Z:eaa6569b-8a1f-4580-9484-8ab73229bfef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 78570BFDCEEA418EBB2394E932E87D84 Ref B: MNZ221060608039 Ref C: 2025-06-02T21:50:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:57 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjI5My4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11933,Microsoft.Compute/GetVMImageFromLocation30Min;72733" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "61cd9e58-77ed-41ee-84be-bfc71a617881" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bc94f094-4b65-4cbd-a0e5-3e80ad0d4440" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "04fe57d9-5f3b-4394-98fe-fc22ddc3fe79" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:04fe57d9-5f3b-4394-98fe-fc22ddc3fe79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3DD7A602B8104AF2B8A3AE6EF143884C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjQxNC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b6716a99-d9b7-41ef-94e0-b6287567f54f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12663,Microsoft.Compute/GetVMImageFromLocation30Min;73660" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "048865b2-a35e-4f2f-bf90-4c42457b864a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f40954b0-b5f2-4355-8d5a-a7f4d5cb4821" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a5314356-14a0-4860-b9b3-b6bbcb481f0e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215057Z:a5314356-14a0-4860-b9b3-b6bbcb481f0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0199BE9021C64204BB8605C9845507C2 Ref B: MNZ221060609037 Ref C: 2025-06-02T21:50:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:57 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjQxNC4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11932,Microsoft.Compute/GetVMImageFromLocation30Min;72732" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5489a33a-ed9e-4dbc-bf73-25ba004caf7b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ca102017-da42-4d9a-b2fd-174a4b3264fe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "bff0f926-3299-44ac-908b-188fe6e6d124" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:bff0f926-3299-44ac-908b-188fe6e6d124" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9737A4AB4A66471CA712983A810321D5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjUzMi4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2aed7a44-a402-4cab-a94b-d861125a970a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12662,Microsoft.Compute/GetVMImageFromLocation30Min;73659" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e5fae6f7-ed7b-4716-b1e2-4d4fb2257468" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c2bb9c62-5059-477e-b650-1c4b0e9962de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "57699ba7-e0ba-4b42-8c21-f514bb968828" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215057Z:57699ba7-e0ba-4b42-8c21-f514bb968828" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B148AC5BE41D49E0BBB9CDD3A3FA735B Ref B: MNZ221060618011 Ref C: 2025-06-02T21:50:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:57 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjUzMi4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11931,Microsoft.Compute/GetVMImageFromLocation30Min;72731" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "551508d0-fe1e-4664-b5d0-94d836f0ce88" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/774641ed-5d8c-412e-ab48-3f3299e19952" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "7e86341c-6a75-4afb-b2b3-4715d9256956" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:7e86341c-6a75-4afb-b2b3-4715d9256956" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F9249B997C4B4000BCB6D85DD84E463E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjY1OS4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "47fc7b47-6ac2-446d-859d-8db363c505da" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12661,Microsoft.Compute/GetVMImageFromLocation30Min;73658" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "672e4684-9990-4599-baad-467ff6457ddc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/06d35c3f-923e-44b2-8f11-fb59bbaea2e7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ae735d16-ebc4-4d73-8e45-3b1480aa11fc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215057Z:ae735d16-ebc4-4d73-8e45-3b1480aa11fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F2AC35212D3B4B678692C299B445F5F0 Ref B: MNZ221060610035 Ref C: 2025-06-02T21:50:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:56 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjY1OS4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11930,Microsoft.Compute/GetVMImageFromLocation30Min;72730" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6d0cda12-fa09-470b-8feb-75577ece18c8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a8a4f1bd-73a1-4750-b6e6-0e76742dd2b2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "5c53eb54-3b76-4479-8fb6-a676c06fafb5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:5c53eb54-3b76-4479-8fb6-a676c06fafb5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 217CC3923BBA4939BC5B9576D59C30CF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:10 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7297df34-db24-40e3-af6c-2cc8f3bd050b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12660,Microsoft.Compute/GetVMImageFromLocation30Min;73657" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "45671c97-055d-4996-aa6e-4b8ddbbbc437" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/11c7b976-81dd-4522-b9d7-05d0c426d381" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "232dcecc-839e-4589-8c02-146369f401a6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215057Z:232dcecc-839e-4589-8c02-146369f401a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8FB64551F68944B7A489682835D8E59C Ref B: MNZ221060619047 Ref C: 2025-06-02T21:50:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:57 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11929,Microsoft.Compute/GetVMImageFromLocation30Min;72729" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3bf9f0e9-2c15-4204-8bdf-482529cca2b1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8855ec83-ae6d-4151-aea8-0348d760b083" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "86670ac7-b953-4581-a53b-ba9c0d37fcec" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:86670ac7-b953-4581-a53b-ba9c0d37fcec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6471A19DC88C4B419174C6B607408352 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f50a41f9-6dcb-4df0-832e-b450aa512a13" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12659,Microsoft.Compute/GetVMImageFromLocation30Min;73656" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2e38a729-cde7-4268-ba8b-8d38f622bb02" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/144dd51d-4fb8-43e9-880e-362d426a1e42" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0b5f4702-4723-4009-ac71-5d20dafda976" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215058Z:0b5f4702-4723-4009-ac71-5d20dafda976" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5FF63A37A75A4EA89F5BB8B84B84242F Ref B: MNZ221060619021 Ref C: 2025-06-02T21:50:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:57 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11928,Microsoft.Compute/GetVMImageFromLocation30Min;72728" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "abb41926-8fe0-4198-9a6d-e1ee96e8b3c0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/68ab7144-a5e4-4479-a4f9-a73b17613372" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "91b26c7e-5e7f-465b-ae72-c5ccd3cbf501" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:91b26c7e-5e7f-465b-ae72-c5ccd3cbf501" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 153C61F742D24E9980B8CE86C1C634E3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9b30c3e5-d409-4249-8368-2c83d708d284" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12658,Microsoft.Compute/GetVMImageFromLocation30Min;73655" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d7138d4a-9975-42ec-9388-a17d110b4114" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5cb02d15-9afb-422d-9ae9-a76cc4107ba5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b0a11a95-de0d-43cc-8c78-18e319ab0478" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215058Z:b0a11a95-de0d-43cc-8c78-18e319ab0478" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB974B1105FE43F592E13111B6C9EBB4 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:50:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:58 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11927,Microsoft.Compute/GetVMImageFromLocation30Min;72727" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "378c4e33-a107-43fd-872f-fe812107f4be" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/246643fe-1c7f-4f8a-a254-cd3253dc8524" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "d83613c5-07e3-4180-95a5-acbee44c432b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:d83613c5-07e3-4180-95a5-acbee44c432b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E442D36E77E24BCF9F3EFC940C468064 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9bbfd95a-627e-4151-b95a-f7c315cf4fda" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12657,Microsoft.Compute/GetVMImageFromLocation30Min;73654" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f1ce939-f0bc-4a45-a8ac-b09c11cb75eb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0918b5a0-3ce8-4a21-89de-a88c476135a9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bd610570-924c-47c9-8107-b5353159a77b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215058Z:bd610570-924c-47c9-8107-b5353159a77b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7BC17CDC2623448BB44E4FFC7DC2359E Ref B: MNZ221060608019 Ref C: 2025-06-02T21:50:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:58 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11926,Microsoft.Compute/GetVMImageFromLocation30Min;72726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ba3078c7-fc81-4451-b84a-f4e582222222" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c21249ae-00ea-45a8-94b5-75d046973316" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1092" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16492" + ], + "x-ms-correlation-request-id": [ + "d5395138-ee2f-420a-ba5f-250bf43fdb47" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215311Z:d5395138-ee2f-420a-ba5f-250bf43fdb47" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EFFBA372D59542E9B419E9A66AADA4E1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c51efeab-a551-4b9c-8741-8c7532ea7f60" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12656,Microsoft.Compute/GetVMImageFromLocation30Min;73653" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "edeeab45-16ff-40c8-8e0d-3b3e27b46a04" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/434992c3-82b3-4121-8739-53baf986eb65" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "de4d679e-849c-4730-94a2-549f9008d760" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215058Z:de4d679e-849c-4730-94a2-549f9008d760" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8C1562C6C0854B01BB11D711A4C2F470 Ref B: MNZ221060610049 Ref C: 2025-06-02T21:50:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:58 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11925,Microsoft.Compute/GetVMImageFromLocation30Min;72725" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e532f30b-029c-47f1-91c4-35e08ed6baf1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bed299ac-7f54-493c-b6fd-be6cfa119874" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "e644c3c6-c91c-4b33-a0e8-be733f81996c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215312Z:e644c3c6-c91c-4b33-a0e8-be733f81996c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8A2950ED2FB448B88D8596C129A707A6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "33e5e8e3-63da-4632-8738-cb9c4fca724f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12655,Microsoft.Compute/GetVMImageFromLocation30Min;73652" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "be86739a-844e-469f-b783-ea953baeaabb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/402427ee-9511-40bf-bb34-a40ecc29a602" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a3cb45df-bed2-4c6b-8b47-6d5882f0265c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215058Z:a3cb45df-bed2-4c6b-8b47-6d5882f0265c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 765DBF12A7FD45BE9ADE3A1BA2718F61 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:50:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:57 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-gs-g2/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ3MtZzIvdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11924,Microsoft.Compute/GetVMImageFromLocation30Min;72724" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "efb0acd9-c530-43fd-8ca3-594ad66ddbff" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f7de9ef2-9ce6-488d-8dba-c543379f9011" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "3046627c-4c97-48a2-bbb3-b4ef5a557f82" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215312Z:3046627c-4c97-48a2-bbb3-b4ef5a557f82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 96A7DD39BDAD47B4B61D9CCFB23F873D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "1123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs-g2/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0983f5a0-3249-44b9-8e81-416984f2a31a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15960,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43954" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7c82d976-0bec-473d-a676-e06dc15a0a48" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3bb42aa2-cf61-45f1-bee4-f0c54929c497" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "66652590-3e33-4d1e-97c0-8db734f34606" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215058Z:66652590-3e33-4d1e-97c0-8db734f34606" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 85492CA6A7D840E989AF38CBB7A2909B Ref B: MNZ221060619021 Ref C: 2025-06-02T21:50:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:58 GMT" + ], + "Content-Length": [ + "5709" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15886,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43853" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "15feac9f-1fe7-4c0d-b2ea-2f8e7ba4c4d8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1d6f6ccd-d81e-4c21-8460-baaac761465f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ba80694b-9e54-4932-8646-ea0c8b48aeaf" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215312Z:ba80694b-9e54-4932-8646-ea0c8b48aeaf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6D17180C4B614DB0AD6A48822A903438 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "5709" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjUzMjkuMjMxMjMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e9fd7ebb-32a9-4861-8f60-7c89ca1ee612" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12654,Microsoft.Compute/GetVMImageFromLocation30Min;73651" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4d013c7b-1565-4d3e-91fd-fe6c16f38d0d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f9e8cd2c-057d-4e1a-a4fd-1bc6e68ac8c4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "62f720b6-ebaf-417a-bf56-7ee3ede43279" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215058Z:62f720b6-ebaf-417a-bf56-7ee3ede43279" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0FF9A11A95834093B028FA5DF9EB876B Ref B: MNZ221060619027 Ref C: 2025-06-02T21:50:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:58 GMT" + ], + "Content-Length": [ + "1136" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjUzMjkuMjMxMjMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11923,Microsoft.Compute/GetVMImageFromLocation30Min;72723" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5e6f664e-cdca-48eb-af83-90c97e8c1083" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7ecd6425-06e5-4202-b048-a4b4e5919dd5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "99383658-7c7a-49c3-aabd-aced7a0ff65d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215312Z:99383658-7c7a-49c3-aabd-aced7a0ff65d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5743746C8F2545C9BC2C0F3FE0812E13 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "1136" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjU0NTguMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fe312e24-a174-499e-9ea9-d06e9a7c52a8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12653,Microsoft.Compute/GetVMImageFromLocation30Min;73650" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fff570b5-1322-4b94-b442-e23a3961a35e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/419bb331-225a-45c4-8815-bc509b37dc02" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2175a59e-7d29-4262-ab03-94098daba10c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215058Z:2175a59e-7d29-4262-ab03-94098daba10c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F2A455A48604B0188A8A12CC3F4DA97 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:50:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:58 GMT" + ], + "Content-Length": [ + "1136" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjU0NTguMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11922,Microsoft.Compute/GetVMImageFromLocation30Min;72722" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "995e861c-1294-432a-9a69-9693a35ab4dd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/55cb7c68-0336-4a30-b24c-1196362a22fe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "e4ecc584-9dfc-4b73-9daa-9cc2170be8b6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215312Z:e4ecc584-9dfc-4b73-9daa-9cc2170be8b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 12D9FE8BC7F741AE987CEDB35E00A83E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "1136" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjU1NzYuMjQwMzA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f1e60b04-ae66-4e9f-b12a-a26491cf6e68" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12652,Microsoft.Compute/GetVMImageFromLocation30Min;73649" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a532c775-c601-4ebe-92f8-b5e7890212ac" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/24f7da28-6d08-46f0-a8d7-0b9fa3339ce7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ecb5aaf6-761e-4eda-b193-2f44d7a39fb1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215059Z:ecb5aaf6-761e-4eda-b193-2f44d7a39fb1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0141A42D328D4323A41B8314FA03AEE2 Ref B: MNZ221060618031 Ref C: 2025-06-02T21:50:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:58 GMT" + ], + "Content-Length": [ + "1136" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjU1NzYuMjQwMzA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11921,Microsoft.Compute/GetVMImageFromLocation30Min;72721" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3b67ca54-f9ca-4b9e-a338-35ece14205d0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2c696155-953b-4d47-bac5-50dd292686de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "da3db416-c6db-4fe2-be33-b574b2abee98" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215312Z:da3db416-c6db-4fe2-be33-b574b2abee98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 19AEBA64DB364A0795826F73DA1FF587 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "1136" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjU2OTYuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "28b41ca5-4d88-4e2f-a9f0-b713ea43ddbf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12651,Microsoft.Compute/GetVMImageFromLocation30Min;73648" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e3130c7d-088b-4b46-b539-49c90b293d47" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/20f43b40-4dbe-436d-9f4e-432d1537c733" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f778f037-4347-4531-9689-805aa361c59e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215059Z:f778f037-4347-4531-9689-805aa361c59e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4434F2EC7A2F4435A730633C080688BD Ref B: MNZ221060609053 Ref C: 2025-06-02T21:50:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:58 GMT" + ], + "Content-Length": [ + "1136" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjU2OTYuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11920,Microsoft.Compute/GetVMImageFromLocation30Min;72720" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a1d4c1b0-e875-420a-ae4c-669d68a45374" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/da6f219f-915c-4529-96c1-c4d2f1743b38" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "99721b4b-32c3-4b74-b2a6-3b2021024fc1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215312Z:99721b4b-32c3-4b74-b2a6-3b2021024fc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0201315755FC40BA9E0DAAAB01DB3608 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "1136" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjU4MjAuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "76c7485b-1bc7-4e40-9e31-50f8db7a0fcc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12650,Microsoft.Compute/GetVMImageFromLocation30Min;73647" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c90c1ad-33cd-4312-8a8c-a9904923e2a4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2bac2d85-271a-4b8d-a082-dc5d05de4809" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c2956198-bdb0-467b-95ff-feb57fc4afa5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215059Z:c2956198-bdb0-467b-95ff-feb57fc4afa5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 708399B510894B21BE7702BAD4E8CF02 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:50:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:58 GMT" + ], + "Content-Length": [ + "1055" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjU4MjAuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11919,Microsoft.Compute/GetVMImageFromLocation30Min;72719" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1a89d7bc-980c-44b8-85ee-9778583eb973" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8655a53b-b480-4cb5-bd72-6c8658c4f859" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "acdeb25a-99fc-4500-8d00-f57bb060c591" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215312Z:acdeb25a-99fc-4500-8d00-f57bb060c591" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F59C7B01CC97439CBBB09E2154536706 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "1055" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjU5MzYuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "61f6be4c-0570-4824-b742-11ce8dcd8b34" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12649,Microsoft.Compute/GetVMImageFromLocation30Min;73646" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7866f37b-fc28-4960-9ad4-d730d67547cb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6ded19d5-69f0-46bd-853b-67936a50478a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "87b1e243-fbc0-4b5f-a3d7-e3b185c9ecb7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215059Z:87b1e243-fbc0-4b5f-a3d7-e3b185c9ecb7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ADDBF87715EB4CF8AACA15C5DA7E689F Ref B: MNZ221060609019 Ref C: 2025-06-02T21:50:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:59 GMT" + ], + "Content-Length": [ + "1055" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjU5MzYuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11918,Microsoft.Compute/GetVMImageFromLocation30Min;72718" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b4020ee9-5bd9-4d35-b075-e1eada58aa64" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0a5e769a-4b2f-4c49-9f05-8cbe4c797fe2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "6f9c57c7-80a9-427d-87fd-533070c48dd6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215312Z:6f9c57c7-80a9-427d-87fd-533070c48dd6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FE3A7A2DD723449FB83D4DAB1D11031E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "1055" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjYwNTQuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2ac313bb-6e5b-4b30-8666-a6cfde4f8677" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12648,Microsoft.Compute/GetVMImageFromLocation30Min;73645" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a7059d8c-dfe5-4020-84e2-06b249b12b5d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bf2a7650-62b0-42e6-8e3d-03b8a762e0f3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8019024c-644d-4a54-81d1-0b4ae3a7c77a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215059Z:8019024c-644d-4a54-81d1-0b4ae3a7c77a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D48F0DB1BCCB42D1BA171E4CAD16BFE8 Ref B: MNZ221060609049 Ref C: 2025-06-02T21:50:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:58 GMT" + ], + "Content-Length": [ + "1055" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjYwNTQuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11917,Microsoft.Compute/GetVMImageFromLocation30Min;72717" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ac37cc65-01da-41cd-a95d-de681239da12" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e0c4333c-ea5b-4426-ab7b-ca3ba418357f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "18439748-69c9-4c5a-9358-e4ce18c85e38" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215312Z:18439748-69c9-4c5a-9358-e4ce18c85e38" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E007712A8F7E49F88461257CD88137B1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:11 GMT" + ], + "Content-Length": [ + "1055" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjYxODkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "31ca8724-f5c7-4358-9f0c-0ab8b0cf1bfb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12647,Microsoft.Compute/GetVMImageFromLocation30Min;73644" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b3c0aed6-e066-4ba9-b3c6-350ff4b29733" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fac43666-ec51-4b1c-b91b-88ca18bf9d82" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "daa97ab2-e2dd-46a3-9876-0af800861c64" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215059Z:daa97ab2-e2dd-46a3-9876-0af800861c64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AF173F433DFC46FBB1EDEFD816F80815 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:50:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:58 GMT" + ], + "Content-Length": [ + "1055" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjYxODkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11916,Microsoft.Compute/GetVMImageFromLocation30Min;72716" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bc2da6ad-f8be-4f91-9927-287ee49a7559" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/90b24641-0b19-4ee2-a451-f89bbc157aad" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "70f41cd1-945a-4d84-ac11-1ca88764c22b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215312Z:70f41cd1-945a-4d84-ac11-1ca88764c22b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B8587EE0408843CEAD10E800389B8180 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "1055" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjYyOTMuMjQwOTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "97df9e01-bcab-4c3f-9aca-a2abda62a074" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12646,Microsoft.Compute/GetVMImageFromLocation30Min;73643" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "685b77cf-7564-49f2-bee7-79a78bcf7250" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/31c08e08-1867-4b0a-817e-2410ee29f74c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "035d6653-6b32-4be6-9bf6-bd855b618274" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215059Z:035d6653-6b32-4be6-9bf6-bd855b618274" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B535013B7064779959180A90D88E2C5 Ref B: MNZ221060619045 Ref C: 2025-06-02T21:50:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:59 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjYyOTMuMjQwOTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11915,Microsoft.Compute/GetVMImageFromLocation30Min;72715" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "24f05013-c822-491c-9ab6-02622e9e4093" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fa6ae7f3-348b-4d91-bc89-98af110a2ef4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6687806f-c3ec-483c-961e-2ae175e8e1e6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215312Z:6687806f-c3ec-483c-961e-2ae175e8e1e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C3FD73E9CED04923A40C6ADBB15BE00B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjY0MTQuMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4b517471-1b50-4d97-a078-6b8d14cce838" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12645,Microsoft.Compute/GetVMImageFromLocation30Min;73642" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "efc4b657-697e-4dcf-b5f9-833c1df715f5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2efe9040-4f6a-4b6c-945b-d54b61799151" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b1479dfa-6340-43cb-ab49-aabb92cae5c7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215059Z:b1479dfa-6340-43cb-ab49-aabb92cae5c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 70E7AABCC6064A8E95FB02401310A733 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:50:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:59 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjY0MTQuMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11914,Microsoft.Compute/GetVMImageFromLocation30Min;72714" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1aaceea6-d420-4069-968c-c0119b9d8329" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/75163606-26b1-417e-a4eb-7911542a9455" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "476980de-8daf-4b13-9521-6d8f768f52c4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215312Z:476980de-8daf-4b13-9521-6d8f768f52c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D692D26DD04C4EB39CAEA94F68142BD8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjY1MzIuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6da8621d-6623-4bed-94c1-55d858b636d4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12644,Microsoft.Compute/GetVMImageFromLocation30Min;73641" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "37527790-8783-4c11-9ef5-242884cf49d9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3c85757d-e858-487d-a722-36901806d68d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a14da9f2-e594-4ce7-b861-443413790878" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215100Z:a14da9f2-e594-4ce7-b861-443413790878" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0BB652C0A72341028F92960FC57E133B Ref B: MNZ221060618023 Ref C: 2025-06-02T21:50:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:59 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjY1MzIuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11913,Microsoft.Compute/GetVMImageFromLocation30Min;72713" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d53ef5b9-0449-42de-900e-e71a20b0db39" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3e182c2f-01a3-4fcd-bd24-93785337dbca" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8d177f4e-5b68-47dd-9f18-e0ee1db52f45" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:8d177f4e-5b68-47dd-9f18-e0ee1db52f45" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 380AAC455DFB479BAC18111E118C8F6C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjY2NTkuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ed3510b3-5e93-435e-bb6c-b93341b6e004" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12643,Microsoft.Compute/GetVMImageFromLocation30Min;73640" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a07f01b3-c00c-4f0f-af05-4ca750afa90d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8394feff-f779-4e24-8746-a31935011073" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2acd80ba-f618-40c1-8e1c-5fb4b50968a4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215100Z:2acd80ba-f618-40c1-8e1c-5fb4b50968a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 190A0D5590544766BD4F8D42D6E52FB6 Ref B: MNZ221060609053 Ref C: 2025-06-02T21:51:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:59 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjY2NTkuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11912,Microsoft.Compute/GetVMImageFromLocation30Min;72712" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ff4e13bb-42b9-4c7c-8925-264e0da66d22" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1bddf0be-bdca-434c-b5a9-26c4f576ad30" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "4c2e4d34-5b1b-4463-8c1f-b966bddaf5bd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:4c2e4d34-5b1b-4463-8c1f-b966bddaf5bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 85BA3A11F3B649EE861FA525105BDD39 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjY3NzUuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6ab40882-2b3c-41fb-8078-2a85e2ff46b5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12642,Microsoft.Compute/GetVMImageFromLocation30Min;73639" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e936ae1-9ee5-4978-bc51-eb20f9d7c81c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/30c978d9-ff3b-4073-ac96-ae6244fb7163" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b6c7d97c-b2ed-4245-99bd-a88704449049" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215100Z:b6c7d97c-b2ed-4245-99bd-a88704449049" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 742733CDC43A4DAAA3608214AD8D1C4A Ref B: MNZ221060608011 Ref C: 2025-06-02T21:51:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:59 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjY3NzUuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11911,Microsoft.Compute/GetVMImageFromLocation30Min;72711" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e23c3605-86aa-4350-b989-263f262e6be8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/df27f045-1b3b-4dc1-a5a4-e02559a2c881" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "cf60b617-48fe-45e7-97ca-5b7b3fa27492" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:cf60b617-48fe-45e7-97ca-5b7b3fa27492" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 347A34C5171D46ADA64231F6A63159F1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjY4OTMuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bc65442d-e945-44cc-ab62-599bbf78ca37" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12641,Microsoft.Compute/GetVMImageFromLocation30Min;73638" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5edf1a16-bb01-4235-9a6e-94563d68e95c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/08fb9e5a-290a-47a1-8b75-1022b581e27f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "759f4ed6-1464-4224-a2af-7e8bd6300b39" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215100Z:759f4ed6-1464-4224-a2af-7e8bd6300b39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7B5A76DFFCAC40DDA2D71AAAC1C6631B Ref B: MNZ221060610051 Ref C: 2025-06-02T21:51:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:00 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjY4OTMuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11910,Microsoft.Compute/GetVMImageFromLocation30Min;72710" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "36a76818-f486-4583-81fb-dc72dc28c551" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7e304490-7fef-490e-97e5-8e9f9b07514c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "5925c052-40b5-4fbf-bcee-fb9f8dd7a8b0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:5925c052-40b5-4fbf-bcee-fb9f8dd7a8b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2DC71BACCC4B4152B1AFCE629B9B6B53 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjcwMDkuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a8d50fcf-3c96-42e8-bd2c-c1e0bd7f01d0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12640,Microsoft.Compute/GetVMImageFromLocation30Min;73637" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "15b71e23-8ddb-4254-bf22-7f83e410eb0d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1f084167-c5a0-470d-b8a7-f6d3998ed4cd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2995d4fd-7b13-47bf-8005-3dd7f8fb6512" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215100Z:2995d4fd-7b13-47bf-8005-3dd7f8fb6512" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EB0EDD3CDA924F4A94E1B3C0E2A45A1A Ref B: MNZ221060608011 Ref C: 2025-06-02T21:51:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:00 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjcwMDkuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11909,Microsoft.Compute/GetVMImageFromLocation30Min;72709" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "370d6083-fd6d-41b8-bf7f-24974ea1791d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8ffa472f-a2b1-48e1-832a-480ad3ba22f3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "131aa591-571f-41cc-bd80-945934f57caf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:131aa591-571f-41cc-bd80-945934f57caf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9EA87DED9A774074990984DDC89CFF93 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjcyNDAuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "607aee4c-bb77-45d2-9a87-7f5e883d8e1d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12639,Microsoft.Compute/GetVMImageFromLocation30Min;73636" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "da60941a-20fc-4d18-9a3b-6590f6f592f5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b85b7c2b-18bb-40a6-bb75-5e75344c14b4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "14a0e5e3-c521-4616-90da-4e4366184d9c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215100Z:14a0e5e3-c521-4616-90da-4e4366184d9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CE58A22847CE43D5B544EB5241F2D1E8 Ref B: MNZ221060619025 Ref C: 2025-06-02T21:51:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:50:59 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjcyNDAuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11908,Microsoft.Compute/GetVMImageFromLocation30Min;72708" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3d48b89e-d1a2-4eff-9290-524fe0d31d5b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cf432662-c4cd-4367-a809-5fb0fb919c20" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "40891df0-af1f-4b5e-b248-ce44fde9b8db" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:40891df0-af1f-4b5e-b248-ce44fde9b8db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C10CC58398A47959130430FB6BC6EDE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjczMTQuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "56edd217-426a-4e88-aa24-096342415e56" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12638,Microsoft.Compute/GetVMImageFromLocation30Min;73635" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e130f40b-80bf-427e-a32e-a662baaf5880" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d82af3ad-83b8-41b2-a505-d0f6b7c23c38" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "67c72073-96a7-4196-b241-241232263e7f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215100Z:67c72073-96a7-4196-b241-241232263e7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D0EC52ABC45F4CF0A67753225C920510 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:51:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:00 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjczMTQuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11907,Microsoft.Compute/GetVMImageFromLocation30Min;72707" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "069df494-2e2c-4eec-b807-a779cffeef71" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ba65a928-c308-49fe-9df2-bc97cb1ada8f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "50b9abdb-380d-4bb6-9a82-da2b28e868b7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:50b9abdb-380d-4bb6-9a82-da2b28e868b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9114D8A162424FC09CD99002BF16E9DD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjczMjIuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "07fa3ee8-6d1f-4074-8894-bc65bf9d222a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12637,Microsoft.Compute/GetVMImageFromLocation30Min;73634" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6f4f12bb-a65f-4041-a2ec-c0b591810651" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/705e45b9-a556-4437-b7d0-d0fc04acfaac" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "00e4724d-9152-48a9-a5f5-a294fa770585" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215100Z:00e4724d-9152-48a9-a5f5-a294fa770585" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C6B2A04FAF5F42388234130C55504636 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:51:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:00 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-smalldisk/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzE3NzYzLjczMjIuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11906,Microsoft.Compute/GetVMImageFromLocation30Min;72706" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "84126a60-ddf8-4dad-98ae-3a3d8d658497" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/54fc7eab-db89-4e8d-bfa7-1a2228e7b1a9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "4f6a4b26-b556-4df3-9123-5f0f2903ae1c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:4f6a4b26-b556-4df3-9123-5f0f2903ae1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BF95F136B3104EC3B833E814549D510F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "aeea2bc4-2a2b-48e4-8ac9-be7ca8518080" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15959,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43953" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f2d07cb6-d769-4f28-a1c8-80474bd34a87" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c317d04a-0182-4a0f-973b-9c0e24dc869e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6a350759-3ef1-492c-9e3b-24ed121dc9c0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215101Z:6a350759-3ef1-492c-9e3b-24ed121dc9c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E6444A7F7E0C47DA88C0218AEF6C7355 Ref B: MNZ221060608047 Ref C: 2025-06-02T21:51:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:00 GMT" + ], + "Content-Length": [ + "5443" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15885,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43852" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1ed76703-8f4e-446e-b03b-2e3ad718eabc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/edea4299-2983-4623-b6fc-98bc7c08d5e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c8ece3f5-ce00-4067-8be7-c71153dead01" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215313Z:c8ece3f5-ce00-4067-8be7-c71153dead01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 20B65635A4994107A11AB0BBEE65FC2A Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "5443" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjUzMjkuMjMxMjMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e61dfee1-9a3a-477c-9192-3c75e5b17d16" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12636,Microsoft.Compute/GetVMImageFromLocation30Min;73633" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ca9b7041-8f72-4541-a71f-2468814381ef" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d6daf4e9-0935-4867-b312-6a8bbeab85dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2c596dfc-7307-49e9-a892-703c010d3154" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215101Z:2c596dfc-7307-49e9-a892-703c010d3154" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 70144180180C4783BA0D4DAF13D4EE77 Ref B: MNZ221060610053 Ref C: 2025-06-02T21:51:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:00 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjUzMjkuMjMxMjMwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11905,Microsoft.Compute/GetVMImageFromLocation30Min;72705" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9c689d91-5246-4be1-9a10-48b152cf4d5f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7744d0a5-71ac-4814-a364-3c82d847021d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f4b5dd48-d99c-4b97-abc0-90f36f42fb9f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:f4b5dd48-d99c-4b97-abc0-90f36f42fb9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B5351C26AF584AE4A6400D451E6FF629 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjU0NTguMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ff424470-7b01-48c5-add7-c6b1672a944d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12635,Microsoft.Compute/GetVMImageFromLocation30Min;73632" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "558d87f1-1f71-4177-98ac-5977a9d4017c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/da119ade-1956-488e-b8fb-0fcfa93e55d8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "22f7e11f-1c08-4aa7-afc8-79e1c516a3a0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215101Z:22f7e11f-1c08-4aa7-afc8-79e1c516a3a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E808B717B59749D19F672C4942DF30EC Ref B: MNZ221060609047 Ref C: 2025-06-02T21:51:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:01 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjU0NTguMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11904,Microsoft.Compute/GetVMImageFromLocation30Min;72704" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "58990aac-e8b0-4c96-9857-37bcd3950f37" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/46e3c2e5-67c8-43d6-8bd5-436b6e88566e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "c039b202-61d4-4a8a-8a04-f8a34f1b8f54" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:c039b202-61d4-4a8a-8a04-f8a34f1b8f54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 76ADC37AF1DB498CAD1E1C199668EC96 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:12 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjU1NzYuMjQwMzA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "430be07d-4930-491a-8dd6-0c0fd378ee12" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12634,Microsoft.Compute/GetVMImageFromLocation30Min;73631" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cbe144f4-89f3-46b3-aa09-08794dc3e179" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ebf556f1-3f6a-49fd-bd6d-eec268c0618d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "9f66d27f-7abd-4132-883d-a8414416039c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215101Z:9f66d27f-7abd-4132-883d-a8414416039c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 23055045BB284D42BA9AF422C1FA105C Ref B: MNZ221060608009 Ref C: 2025-06-02T21:51:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:00 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjU1NzYuMjQwMzA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11903,Microsoft.Compute/GetVMImageFromLocation30Min;72703" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3c4e57b3-d745-4897-b83c-0ca2cc9df7ac" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/da1ad11b-84cb-4f9d-aaec-e82654ea5ebe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "bc5111e6-37bb-4b4c-a5e0-1bf77a1ee09d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:bc5111e6-37bb-4b4c-a5e0-1bf77a1ee09d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B1D3FDD56BCB4E5184F1113B07C658F0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:13 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjU2OTYuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dbc636b7-1b8c-4c4b-8cc7-3bc02c1e4ab3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12633,Microsoft.Compute/GetVMImageFromLocation30Min;73630" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "03485e4c-3e1c-4591-8af5-301213911ecc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0de67888-e348-4aaf-a595-9bc011dee659" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1a49d545-8419-49f7-8e0c-9251f748db24" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215101Z:1a49d545-8419-49f7-8e0c-9251f748db24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 38E2FCB136D0441EA149BEC279A5C8B5 Ref B: MNZ221060610049 Ref C: 2025-06-02T21:51:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:01 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjU2OTYuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11902,Microsoft.Compute/GetVMImageFromLocation30Min;72702" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b6b4b93b-cbad-4cb3-ab2a-b3d74cb4c9bc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2455ccfd-819f-4f07-a53b-55ae53ff01a8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dfeb8700-572b-4dcc-bf52-4b69526319af" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:dfeb8700-572b-4dcc-bf52-4b69526319af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FDD609801C964C78A7D87A0203459AFA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:13 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjU4MjAuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0fb548ea-6ac0-44a6-982e-2047b0c20207" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12632,Microsoft.Compute/GetVMImageFromLocation30Min;73629" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "290f56f8-8927-4b39-9a1b-49b06fa9f862" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d6e17f2a-3314-48a4-9a49-5a41e76b4ed3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9717f237-12c7-4a87-b763-4fc5e2d800e4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215101Z:9717f237-12c7-4a87-b763-4fc5e2d800e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7357E468E30C4AA7B06BE5BB5BFE3C5F Ref B: MNZ221060619053 Ref C: 2025-06-02T21:51:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:01 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjU4MjAuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11901,Microsoft.Compute/GetVMImageFromLocation30Min;72701" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "96749790-56a3-45d6-982c-c500b6636314" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/73321db6-0104-42ee-b603-5b0ecaf38311" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9aa405b8-6d69-4f21-bda9-53bf485b6ebb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:9aa405b8-6d69-4f21-bda9-53bf485b6ebb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9B18148B6FE14A08A778B40F72797A46 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:13 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjU5MzYuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ab745e0a-8e97-4dbf-8f0c-9ff606eba8a0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12631,Microsoft.Compute/GetVMImageFromLocation30Min;73628" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d408e25f-7709-4816-8236-a74b97165499" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/eef5f36e-611f-428b-ab7a-7c0f1c8e21b0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c219d8f3-48b1-49f2-923d-b87d8ac02552" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215104Z:c219d8f3-48b1-49f2-923d-b87d8ac02552" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4E45F9C07706441FBD4D4C066CEF21F5 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:51:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:03 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjU5MzYuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11900,Microsoft.Compute/GetVMImageFromLocation30Min;72700" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cf2a749a-f5aa-4b07-ab97-f936bb7e05ff" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/483b110d-a55b-4d55-af39-29a0e0265c4a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "f09e0c3a-4cf5-40ce-88e6-982e72485897" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215313Z:f09e0c3a-4cf5-40ce-88e6-982e72485897" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DBB66BE0895442119D7361BDD974B2B2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:13 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjYwNTQuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6ad36a40-0f79-47a0-ac89-5ddd43893afa" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12630,Microsoft.Compute/GetVMImageFromLocation30Min;73627" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2fbe5ba0-d18f-4efa-a835-bc0c55d77497" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bb217a62-9264-48c1-88fc-3e2070e2ae21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "88d50919-336e-4adc-bfa0-d8e789d65ed1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215104Z:88d50919-336e-4adc-bfa0-d8e789d65ed1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E52C5BA9E78A4ACA80E7AAF47E4555B4 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:51:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:04 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjYwNTQuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11899,Microsoft.Compute/GetVMImageFromLocation30Min;72699" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b21e9607-7372-44b3-8171-03da43355a27" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/298edc2b-7873-4567-a1c1-a37bc5424b0a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "d090859a-a502-4778-807b-b20aa732c2a8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215314Z:d090859a-a502-4778-807b-b20aa732c2a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E3551412975A4D4B81F5329D773EA04A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:13 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjYxODkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f86dd4bc-d526-4a8a-b997-7bd4757cbe87" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12629,Microsoft.Compute/GetVMImageFromLocation30Min;73626" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f55fcb4a-73a1-4ca5-87c3-f7f84971c1c1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3e1cc497-2598-471a-b4c7-ce25f639500d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d3677252-6fcd-498c-8cf8-70543162c20d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215104Z:d3677252-6fcd-498c-8cf8-70543162c20d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B20AA10C99384AA9BE2953C8A2632F6B Ref B: MNZ221060610009 Ref C: 2025-06-02T21:51:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:04 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjYxODkuMjQwODExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11898,Microsoft.Compute/GetVMImageFromLocation30Min;72698" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1df2c8e4-bcc3-42ba-ab9a-0f54d2b2b03c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/79f13e5a-f738-4892-9420-0d181fe5afdb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "3ececa2e-a497-4c11-87f0-e67f5bae4dbd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215314Z:3ececa2e-a497-4c11-87f0-e67f5bae4dbd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EDF9E655D08347AB806AC71A746F99CF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:13 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjYyOTMuMjQwOTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0c651be5-2919-47ff-bd59-26883eb5c511" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12628,Microsoft.Compute/GetVMImageFromLocation30Min;73625" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7dc8d0e0-c8d3-46a7-800a-4f18ade90189" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6b084867-fb60-4a1d-bbfc-b41fbae6cd85" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "112902b9-3410-4565-b3f0-9173a5e68f97" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215105Z:112902b9-3410-4565-b3f0-9173a5e68f97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DA7AFE30DD5E45F5AE88E2B0270D652A Ref B: MNZ221060618033 Ref C: 2025-06-02T21:51:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:04 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjYyOTMuMjQwOTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11897,Microsoft.Compute/GetVMImageFromLocation30Min;72697" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4ad14106-91b4-482f-8e85-8a36506d4c77" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5959614b-35d0-46fd-ae1e-ed0f6488b237" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "1fbc59d1-4512-4a61-9276-4625639ea7cc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215314Z:1fbc59d1-4512-4a61-9276-4625639ea7cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 76687D9A9E5C49D3AF889E336D424342 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:13 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjY1MzIuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3e4de8d7-6278-41af-8117-7914fa9e1f3e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12627,Microsoft.Compute/GetVMImageFromLocation30Min;73624" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d774733f-af03-4d2a-80d2-44ab2b6495a2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fb9bcd26-122f-488f-a7af-d6ba04c62c7c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "157c3282-2997-40a1-b490-b2a8fbba6d9d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215105Z:157c3282-2997-40a1-b490-b2a8fbba6d9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FAFE6CB738ED4D79BA6049E7C186833A Ref B: MNZ221060610017 Ref C: 2025-06-02T21:51:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:04 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjY1MzIuMjQxMTAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11896,Microsoft.Compute/GetVMImageFromLocation30Min;72696" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b4316f09-4a22-42df-b5f3-e856211b430a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9006e968-ff2a-434a-9260-9f4294977e24" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "9623f543-fe29-4937-bfad-b72c4912ac86" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215314Z:9623f543-fe29-4937-bfad-b72c4912ac86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 054B70E21EA247CD83310A8E950A6D1D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:13 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjY2NTkuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cbab4a04-ab44-489e-aecd-b222b932c352" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12626,Microsoft.Compute/GetVMImageFromLocation30Min;73623" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4e35ca2e-4f3c-49dd-ae8c-273db594fa12" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/92e869fd-2729-4f2d-a460-e21adcea5d86" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a8fd551f-c64d-4bd7-89c9-f9525aba06e2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215105Z:a8fd551f-c64d-4bd7-89c9-f9525aba06e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E25D5A9F0F62430F9B2FEEF56C9C51C1 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:51:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:04 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjY2NTkuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11895,Microsoft.Compute/GetVMImageFromLocation30Min;72695" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bd3878f5-fb63-41e7-8cff-5362633e9b05" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bd6b2856-df5e-41c7-8537-8e9ca19ec289" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "75233899-253f-458e-8e87-b998e692aa20" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215314Z:75233899-253f-458e-8e87-b998e692aa20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9E6AA75FB31349B78222E5A3157AEBBC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:13 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjY3NzUuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2d3811db-7f7f-4f43-911e-859c9d28683c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12625,Microsoft.Compute/GetVMImageFromLocation30Min;73622" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d693f088-1162-4aec-890b-1d6f590e36f0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/340f545f-04ff-437f-ad18-17cf0313a80a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "75e63a4c-2330-4046-a3ad-2e7de8fb30f9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215105Z:75e63a4c-2330-4046-a3ad-2e7de8fb30f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 621E3B052D3149B0A2887994E600159D Ref B: MNZ221060608007 Ref C: 2025-06-02T21:51:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:04 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjY3NzUuMjUwMTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11894,Microsoft.Compute/GetVMImageFromLocation30Min;72694" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3f3f6036-2383-4fd7-8433-d4d3043d01bc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/eeadfe65-f11c-4969-89aa-cef75599f57d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "910fce18-d2fe-46e4-83cd-dd54ee0225b5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215314Z:910fce18-d2fe-46e4-83cd-dd54ee0225b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F2C29C9500304D8CB56A743D31EDE7D1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:13 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjY4OTMuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "66fb8a60-fcb0-4ef2-9f66-c5d7b8829694" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12624,Microsoft.Compute/GetVMImageFromLocation30Min;73621" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "55f07f71-482e-4841-affb-2cee3d1febbf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fccc7087-f98f-46fc-b546-e4bde535f74d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4afd04b9-c7d6-465f-8d67-1ba9e8a2d9af" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215105Z:4afd04b9-c7d6-465f-8d67-1ba9e8a2d9af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CE59B3B019704615B7D965A08F3F09CC Ref B: MNZ221060609025 Ref C: 2025-06-02T21:51:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:04 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjY4OTMuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11893,Microsoft.Compute/GetVMImageFromLocation30Min;72693" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f5f16c82-30a0-4ffe-a81e-d1482685cef0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/870fbce5-0b13-4b69-a515-5be6ff0af154" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "e9211438-cd3e-4ba0-87cf-34301bfffaa4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215314Z:e9211438-cd3e-4ba0-87cf-34301bfffaa4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 20EE79A6F81B48459D61E17894A6281A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:13 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjcwMDkuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f8f5acc9-1d4a-439f-bc62-dfabd8d086ca" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12623,Microsoft.Compute/GetVMImageFromLocation30Min;73620" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "974be3b4-21b1-4a85-abeb-f489fba68dd7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/79572392-8e0d-4d36-92f5-99770fd08cf8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7fb4a670-8351-4a0c-ae2e-a7cbe8e28a82" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215105Z:7fb4a670-8351-4a0c-ae2e-a7cbe8e28a82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 806B2EA834274CE09D6CEDD08384976A Ref B: MNZ221060619053 Ref C: 2025-06-02T21:51:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:05 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjcwMDkuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11892,Microsoft.Compute/GetVMImageFromLocation30Min;72692" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "66af712c-6acc-4f1c-8f0f-131b1d78fcf8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b9e239ea-37b7-44c9-9fe7-9ceac670d23c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "f1b1e2ae-eeef-452f-992a-f5f700247055" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215314Z:f1b1e2ae-eeef-452f-992a-f5f700247055" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F69589A6DA14CB5A952210A029F9821 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:13 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjcyNDAuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "50687b92-5698-4e90-86b4-46c5115c3b78" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12622,Microsoft.Compute/GetVMImageFromLocation30Min;73619" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aff8237e-7233-4441-8e0b-0552c8ff822f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/23516678-8b8b-4769-bdbd-a791f853f244" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4255b42f-aa99-41f2-a10f-ff3c8ffd1ecc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215105Z:4255b42f-aa99-41f2-a10f-ff3c8ffd1ecc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7CDB504E4E0A43B0B6285D1457B5D1C5 Ref B: MNZ221060618027 Ref C: 2025-06-02T21:51:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:05 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjcyNDAuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11891,Microsoft.Compute/GetVMImageFromLocation30Min;72691" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a5c070c1-4ff8-4b94-abd3-e7951724bbe9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a8ecc213-bc88-40a6-98dd-4f032392bff3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b29d928c-2963-484b-b3c2-e0153278163d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215314Z:b29d928c-2963-484b-b3c2-e0153278163d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D74B56D378194E4194FC106D98316E2D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:14 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjczMTQuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b28c7e29-043e-4ada-8f54-a5134030c79d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12621,Microsoft.Compute/GetVMImageFromLocation30Min;73618" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "259e35f1-f17b-4c0c-a1a5-c8694338ed86" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e0b10f21-856b-415e-9c50-b1ac654d93f4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9699dde7-e174-4475-b6c1-ac473aad9f67" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215106Z:9699dde7-e174-4475-b6c1-ac473aad9f67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 25D30C91B1EB473796708A9FE478668C Ref B: MNZ221060610051 Ref C: 2025-06-02T21:51:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:05 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjczMTQuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11890,Microsoft.Compute/GetVMImageFromLocation30Min;72690" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7a3642c2-a90f-48f8-98f7-2b6ff9f7967b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/00873c60-7966-4796-8b23-3505e45d46d2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "4cabbc19-25d8-4e05-b430-e8df63d83cb5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215314Z:4cabbc19-25d8-4e05-b430-e8df63d83cb5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0BA7DAD76955482C94A0C3D167678393 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:14 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjczMjIuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e1e5dacf-8c4c-4086-b7aa-c38b5b446921" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12620,Microsoft.Compute/GetVMImageFromLocation30Min;73617" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a92d5f17-8990-4a8c-85c4-54d0626a0a66" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c5024da4-bab0-41ec-bd60-a88464bb4ff7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7a932a32-f71d-469e-8155-153c665492f1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215106Z:7a932a32-f71d-469e-8155-153c665492f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5EA8AA337C944588BAAFE93E32EE2900 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:51:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:05 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-smalldisk-g2/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzE3NzYzLjczMjIuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11889,Microsoft.Compute/GetVMImageFromLocation30Min;72689" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3afda3f0-4b6f-47e3-8586-8ddd252fb1fa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bc5198ea-12c4-4db4-a282-8df3ba0062f4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "324588e6-806f-41f4-b563-fc834846a3fc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215314Z:324588e6-806f-41f4-b563-fc834846a3fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 80CF7F4D54524B6999E3086394E68DFE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:14 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-with-Containers/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8a07decd-8861-460a-ac91-d1ad30181a3e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15958,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43952" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "999e9df4-7064-46c7-a73b-f6243e68a46c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a32452d9-59c9-4d4a-a4b9-6ff1f84ef43f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "000f81ba-6596-4744-b982-d25961b36258" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215106Z:000f81ba-6596-4744-b982-d25961b36258" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 50693907115542858EC0CA344867336E Ref B: MNZ221060608049 Ref C: 2025-06-02T21:51:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:05 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-with-Containers/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15884,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43851" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e56619e1-140b-4c50-8871-4ee91a16c2fb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/619a1b92-825d-4f41-bd89-12a3462e5923" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4e22713c-8d90-4a7d-af95-372f80ec451c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215315Z:4e22713c-8d90-4a7d-af95-372f80ec451c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 29EDAD8054074C758368F7FE1D3A28BD Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:14 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-with-containers-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItd2l0aC1jb250YWluZXJzLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ec8a127e-0dc5-487f-b8d0-848cb0fa309c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15957,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43951" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "681a2238-c51c-498b-a425-e98b16ef4b0e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b3a62833-5f7b-40af-9654-4e68740cd7e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e677c2d3-14c8-47ba-98fa-e39f64792db5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215106Z:e677c2d3-14c8-47ba-98fa-e39f64792db5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 992A2725BBA6417AB7CD8F5D052D5561 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:51:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:06 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-with-containers-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItd2l0aC1jb250YWluZXJzLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15883,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43850" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e0fa1787-904c-4b6d-8e8d-a36f185f6c76" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3e4b9ceb-309d-468d-a1ea-e78c24dd8b9c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "21d912f1-21da-4d85-979f-fdfc04a9329c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215315Z:21d912f1-21da-4d85-979f-fdfc04a9329c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F96FB60C8D043A6B8056B7D38893A89 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-with-containers-gs/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItd2l0aC1jb250YWluZXJzLWdzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "29ef6185-f82f-401d-a594-347f2f7844b7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15956,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43950" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "04a79108-aa23-4489-807f-04e56bbff444" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/25115c6d-b44b-4022-bed9-25353ef8dc56" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bf9f3bc5-495d-4116-b9c1-b183dbef7d95" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215106Z:bf9f3bc5-495d-4116-b9c1-b183dbef7d95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BC629FB0B70E4580B7CEE2B35707B411 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:51:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:05 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-with-containers-gs/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItd2l0aC1jb250YWluZXJzLWdzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15882,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43849" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fed2599c-6b8b-4cd0-af99-d84b7222cab3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f2121082-3736-4e49-af00-5eb8bc8771d2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ce807a03-de75-4d4a-8a4f-d4300729cb8c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215315Z:ce807a03-de75-4d4a-8a4f-d4300729cb8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8776D94693924AA3B07C97CEF5F949DC Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-with-Containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5d649b0d-631b-4ea0-be08-168681008790" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15955,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43949" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7c0d83e3-8307-45a9-910b-6295a75a23d6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/617ce4c2-dc39-4e00-bf1e-805e808a1a36" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "74bbb4be-7858-4385-9a32-6379a6de34f1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215106Z:74bbb4be-7858-4385-9a32-6379a6de34f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B1BE23F83DBC47D5832D57F0A65760D7 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:51:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:06 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-with-Containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15881,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43848" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7222f69d-5595-4fa2-a5d6-db0bcee0af94" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0ed46534-86e4-4e60-8df0-6fd1e1cf1a72" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "809bc770-ae7b-47ee-b8a8-a781b42c0fb2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215315Z:809bc770-ae7b-47ee-b8a8-a781b42c0fb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 75FFB476C5674A68A993E606C694DAED Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-with-containers-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItd2l0aC1jb250YWluZXJzLXNtYWxsZGlzay1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "42f98351-b9df-4e8c-9455-d5f3e0084e19" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15954,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43948" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "01458bdc-1d3e-4b58-a191-eaa37efbff59" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a9ccc165-8b51-4fe3-9cf8-addae0422380" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0648ab55-5ab1-486a-b30d-d7477bfa7e00" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215106Z:0648ab55-5ab1-486a-b30d-d7477bfa7e00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C5469A0287974ACFBB2F12195FA7829F Ref B: MNZ221060608049 Ref C: 2025-06-02T21:51:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:06 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-with-containers-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItd2l0aC1jb250YWluZXJzLXNtYWxsZGlzay1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15880,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43847" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "75bd86c8-8684-4e9d-ab6d-41d5cf068b8b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bc0d5dad-fbe2-4c0e-bcd7-9fc37f7274fb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4c86efcc-2652-4e66-8c12-f20ad1308f96" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215315Z:4c86efcc-2652-4e66-8c12-f20ad1308f96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F64FE76573DB4FDE83D3BD80308333EE Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "10b70189-349e-4a05-aed8-4f3df63c9c2c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15953,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43947" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "612abc9b-d183-4dd7-ab3f-a785836e0e5b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f5c38a58-e143-49d3-9f17-15222186cf97" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6a78b4b4-6da7-4ae4-8f56-9ec1cbfcede3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215107Z:6a78b4b4-6da7-4ae4-8f56-9ec1cbfcede3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3FAAC633364C476386D1AFDB7A75B2A2 Ref B: MNZ221060610033 Ref C: 2025-06-02T21:51:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:06 GMT" + ], + "Content-Length": [ + "5619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15879,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43846" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e4f4c11d-3424-4e99-bd06-255ef6ae01fc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ae1fa3f3-9622-4406-88db-c98cf4fe3bae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1be2574e-2b31-4ed4-abd6-dc361b4784d5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215316Z:1be2574e-2b31-4ed4-abd6-dc361b4784d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2E8A923CBCEC45258E757C956DD4897F Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "5619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My41MzI5LjIzMTIzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1418dd86-c515-4c5c-a5b3-4e0fb1be3655" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12619,Microsoft.Compute/GetVMImageFromLocation30Min;73616" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87856bcb-b90a-4b51-a9fc-48f585c7a983" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/08426387-64b9-4aaa-ac1c-6bd7ae7cb898" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "85985cb3-324b-4f7e-8c68-e68bc5ea1dd5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215107Z:85985cb3-324b-4f7e-8c68-e68bc5ea1dd5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 09B1EB3C47FE48F4835971BE80505E78 Ref B: MNZ221060610045 Ref C: 2025-06-02T21:51:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:06 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My41MzI5LjIzMTIzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11888,Microsoft.Compute/GetVMImageFromLocation30Min;72688" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f6c5dda3-fd29-44c3-8ef0-bee30b06d0dd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5b001bd1-c313-4fa7-8b82-4ef488a4ebc4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "707b945e-0cbb-496c-a262-68444f9ebfad" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215316Z:707b945e-0cbb-496c-a262-68444f9ebfad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9C09AB143C0E431BAD0FC2CF160412C1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My41NDU4LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "04420d45-f3f6-40c8-b362-e4775ff7af3f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12618,Microsoft.Compute/GetVMImageFromLocation30Min;73615" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "76337b83-9d61-445d-ba09-ed60b5c8188b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/16fc9098-8e05-4495-9f91-22522320af5d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d77f71c0-7a62-4027-8b54-4b70ad3a1090" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215107Z:d77f71c0-7a62-4027-8b54-4b70ad3a1090" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7E33D42E68FC4E2A87F33A3E9CE3459A Ref B: MNZ221060618039 Ref C: 2025-06-02T21:51:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:06 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My41NDU4LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11887,Microsoft.Compute/GetVMImageFromLocation30Min;72687" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f418ac20-41a1-4ef4-9a24-cb15c8fefa79" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/febf9dc0-cc53-4c60-9748-213ae3f9af9d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2957a625-246f-4fcc-8e0d-725b60c85064" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215316Z:2957a625-246f-4fcc-8e0d-725b60c85064" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 25D73B67F54349889E54D17E2B035090 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My41NTc2LjI0MDMwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "33cbb16f-febf-48f4-a6a1-3619110102e5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12617,Microsoft.Compute/GetVMImageFromLocation30Min;73614" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "85ce404e-5be8-4e50-8fd2-8614a20fab3b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1d1c6173-9d4f-44b4-8e46-64fef7974e35" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "67b84ca7-ec29-4fec-ba92-665269752263" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215107Z:67b84ca7-ec29-4fec-ba92-665269752263" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0D52C33CDDF34D238A2E84BBEF8EC740 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:51:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:07 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My41NTc2LjI0MDMwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11886,Microsoft.Compute/GetVMImageFromLocation30Min;72686" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "157528cc-096a-4a9e-b3c2-1b953fa2d712" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/687a542d-0c7c-48b5-b0dc-85650189d36a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6948a5d9-92a6-478c-9935-df3efdbda8ce" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215316Z:6948a5d9-92a6-478c-9935-df3efdbda8ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2A259A9417F3436CBB7D6C451E3C1A45 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My41Njk2LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e1e46b83-6124-4bc7-90a1-5f9566577caf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12616,Microsoft.Compute/GetVMImageFromLocation30Min;73613" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cb110490-92b5-4055-9d6d-239319fe0596" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9af0d43f-2451-401d-afaa-373d391f9ffc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c4e7d753-623e-4151-93e9-1aef1d613b60" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215107Z:c4e7d753-623e-4151-93e9-1aef1d613b60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B982F9A0E61E4426BF318239F1DAEE53 Ref B: MNZ221060619045 Ref C: 2025-06-02T21:51:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:07 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My41Njk2LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11885,Microsoft.Compute/GetVMImageFromLocation30Min;72685" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "44c685ec-4666-4e83-b94e-e06465bc6ffa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5ee35403-d8f7-4cf0-8aa9-999a8f870508" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "eac9ffc9-c03d-4bd4-8fb2-0a5ae8cb1104" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215316Z:eac9ffc9-c03d-4bd4-8fb2-0a5ae8cb1104" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 643ADA2317D74FC2806E3C8E50832FBA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My41ODIwLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e536f4f7-9bc2-495f-9ff7-a87e6ecf322a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12615,Microsoft.Compute/GetVMImageFromLocation30Min;73612" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "787d8478-2a21-4bdc-abd0-b6cdb03369e2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5cd51a75-b3ce-4548-9d6e-37fc4720b861" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "616624f5-ee2b-40eb-b914-2f34d4a03acb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215107Z:616624f5-ee2b-40eb-b914-2f34d4a03acb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 69597F69A24A49EC99193606EAB5B5C5 Ref B: MNZ221060610027 Ref C: 2025-06-02T21:51:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:06 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My41ODIwLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11884,Microsoft.Compute/GetVMImageFromLocation30Min;72684" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7a646d33-ce40-46f7-9ede-636aafa7b199" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d4169199-aaf3-4e63-b293-1ae78dae1ea7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "8d849b92-b42e-439a-91bf-45d919f09edc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215316Z:8d849b92-b42e-439a-91bf-45d919f09edc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E74C7BDFACC24EB5952C92D0D2C04921 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My41OTM2LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4fd587f7-40c6-4730-a6d1-d26374073aa2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12614,Microsoft.Compute/GetVMImageFromLocation30Min;73611" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8978ac5c-b4b3-440f-b0c4-2f043d879237" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5f77ca7b-9dee-4045-87cc-73a3b78f1f48" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "461aa085-c18d-40ff-b9e4-db24de097e51" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215107Z:461aa085-c18d-40ff-b9e4-db24de097e51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 28336FA1633E4BCCAEF4C307BCAAB7EA Ref B: MNZ221060610011 Ref C: 2025-06-02T21:51:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:07 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My41OTM2LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11883,Microsoft.Compute/GetVMImageFromLocation30Min;72683" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d3102bd1-ce03-4fab-841c-b105c78bbd21" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e15a7c36-9c1e-49ed-a0ef-d4724e223f4d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "fa262b83-d892-4ed7-8282-afc223783bdd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215316Z:fa262b83-d892-4ed7-8282-afc223783bdd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 20BEE08251704426B387631DDBB476AE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42MDU0LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9b03c236-7c81-4d3a-ba99-1a9c7ac48e8e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12613,Microsoft.Compute/GetVMImageFromLocation30Min;73610" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "05d11297-d10d-4e49-a6d6-7257d4f1ac8d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6c06587a-84c8-4aa5-8244-d6097be1c4c7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e5de1ce4-ecd9-48dc-bc4a-42ac3a9b715f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215107Z:e5de1ce4-ecd9-48dc-bc4a-42ac3a9b715f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 326A4F206BC64706887CF99878F64A78 Ref B: MNZ221060608049 Ref C: 2025-06-02T21:51:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:07 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42MDU0LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11882,Microsoft.Compute/GetVMImageFromLocation30Min;72682" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "eac7d4d6-d5c1-46b6-b39c-1cf31397e7c1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6b4bb34b-6823-439b-8fea-ffdd6a9df1a2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cf836d39-48a6-4aee-92ec-74a6b97f94e7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215316Z:cf836d39-48a6-4aee-92ec-74a6b97f94e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9D4B01F857AE4EB4A2780EEAF792C72F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42MTg5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5c46ca8e-eeba-4eb9-b848-dbf2508b143b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12612,Microsoft.Compute/GetVMImageFromLocation30Min;73609" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9f50bbc0-1f8c-4454-b349-a3109692337a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ffb1cfa1-ebf7-46f9-a26f-52cbeae55af9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "49cfffe5-2628-4117-8325-d2bd33b0ae87" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215108Z:49cfffe5-2628-4117-8325-d2bd33b0ae87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9B5BFD91BBA44F288468C25FFCC5C08B Ref B: MNZ221060609007 Ref C: 2025-06-02T21:51:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:07 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42MTg5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11881,Microsoft.Compute/GetVMImageFromLocation30Min;72681" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e09c4972-c9fa-4cf9-b07b-03ec942c37cc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/add2f25b-7199-4791-9563-85d84632b5d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "99d60e58-8ceb-4323-ac77-3d6203d5a9d6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215316Z:99d60e58-8ceb-4323-ac77-3d6203d5a9d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 13665297A346407893A61A22729CACF2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42MjkzLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "836e4023-67d1-44c0-b3a6-afdc3aeef067" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12611,Microsoft.Compute/GetVMImageFromLocation30Min;73608" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e068b73b-dbe5-4bd3-b188-2048bc3c9699" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7ab30cd5-9110-4307-b51d-a73a5ac490c6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "df1724c9-33ec-4886-b9e4-946ad7923744" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215108Z:df1724c9-33ec-4886-b9e4-946ad7923744" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 60251E122A3B406892CDEFF0E59C194A Ref B: MNZ221060619047 Ref C: 2025-06-02T21:51:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:08 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42MjkzLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11880,Microsoft.Compute/GetVMImageFromLocation30Min;72680" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d16d95d8-1f78-482f-930d-7c8fc9c55e07" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b805e476-fc5e-4ed6-bc32-463e2de589bb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "cce91207-71b1-4fb9-8559-1705dbe01d98" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215316Z:cce91207-71b1-4fb9-8559-1705dbe01d98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 51FD89AC1BF741548C095C56F4622A78 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42NDE0LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c29771be-5919-4414-8d40-54102fababee" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12610,Microsoft.Compute/GetVMImageFromLocation30Min;73607" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4fd29acc-8adf-4e5e-b850-ad58b619c3fc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/772e36d6-530a-4949-a5bd-1311177974dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "630689e6-9f2d-49e4-a912-46358c00e377" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215108Z:630689e6-9f2d-49e4-a912-46358c00e377" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 625093C61F0A45FBB5BE3EE32F92BF0C Ref B: MNZ221060618033 Ref C: 2025-06-02T21:51:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:07 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42NDE0LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11879,Microsoft.Compute/GetVMImageFromLocation30Min;72679" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c84806cd-cf42-460c-ba31-ea1fca1ed79e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/63e09b11-a1c5-4173-a9a2-267b5a675a8f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "6dc9944d-4374-4b42-852b-a61f6c813ea5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215316Z:6dc9944d-4374-4b42-852b-a61f6c813ea5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 554E5419BDD442E6BA499F0BCB33391D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:15 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42NTMyLjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6e5cc12e-a487-4e48-9772-c6db2466569b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12609,Microsoft.Compute/GetVMImageFromLocation30Min;73606" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "216d3c63-adf6-4a01-b1d6-086253d38017" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9242ba79-871f-430b-b339-029ba2cb6c3e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ee0cf824-b1c1-406f-91eb-bbf37e78aab6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215108Z:ee0cf824-b1c1-406f-91eb-bbf37e78aab6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 812F201E9735422A8440868F46DCAC27 Ref B: MNZ221060618035 Ref C: 2025-06-02T21:51:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:08 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42NTMyLjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11878,Microsoft.Compute/GetVMImageFromLocation30Min;72678" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c322f72b-3a21-49ff-b5ce-3579ec771b33" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/21298af7-1db4-44b8-9b03-7ecd0f7cd1f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2ff19710-bc23-4ea8-9d64-1511833f5682" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215316Z:2ff19710-bc23-4ea8-9d64-1511833f5682" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5ED3311CD815400F8177E2B033C23C2A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:16 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42NjU5LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "746c15b6-0015-4019-a33c-5cb4d12475a0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12608,Microsoft.Compute/GetVMImageFromLocation30Min;73605" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1c69f76e-8f44-4ea0-bc2b-56cf0058265e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6a2c0022-3e45-4119-9e48-39945f972188" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "59043a19-f687-4357-94cf-0c5604cf8f22" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215108Z:59043a19-f687-4357-94cf-0c5604cf8f22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C64F51D1F4D94083B19F9E5E79B9E571 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:51:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:08 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42NjU5LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11877,Microsoft.Compute/GetVMImageFromLocation30Min;72677" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "88332733-a8fd-47a6-98ba-0768279608f0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d76f3302-621f-4c8a-ba16-4a1d65cc780a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ea6a67bc-7338-46bb-b8b2-a124c8a4920d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215316Z:ea6a67bc-7338-46bb-b8b2-a124c8a4920d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5E4DBD86C1BE4DC7B4868FC297E06AB8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:16 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42Nzc1LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4b08af3d-89d0-4b16-a0c7-cede9dcd5fba" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12607,Microsoft.Compute/GetVMImageFromLocation30Min;73604" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "15e498fc-3e08-48b7-beaa-166d057de46a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a1004dda-4ade-49a9-8570-e700f6f3f269" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "714ecd3b-ef1c-4969-94e6-1c501fd22438" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215108Z:714ecd3b-ef1c-4969-94e6-1c501fd22438" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 48A1FD398BCF4382A06520F7109D5EBE Ref B: MNZ221060609031 Ref C: 2025-06-02T21:51:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:08 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42Nzc1LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11876,Microsoft.Compute/GetVMImageFromLocation30Min;72676" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fefbfdd3-5a23-492d-a461-dec7971ca3ad" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/47f24afe-7c95-4eb8-bc4d-e62c8a11791b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "697d1479-11eb-4ccf-912b-5778ad0d6d76" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215317Z:697d1479-11eb-4ccf-912b-5778ad0d6d76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9484885DDFEF48E48D0B9542FF35D9AA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:16 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42ODkzLjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "70fbd1cb-f25e-4632-9d52-e82b65b0889f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12606,Microsoft.Compute/GetVMImageFromLocation30Min;73603" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2d73ffa8-caeb-4b21-ac8a-8281334607be" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/02230cbf-4309-4c70-b0ca-87744568f112" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "317b5543-bf8a-417f-b5bc-5a75d6809567" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215108Z:317b5543-bf8a-417f-b5bc-5a75d6809567" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2FBD80918004BB8BD6964E75E9538B5 Ref B: MNZ221060609023 Ref C: 2025-06-02T21:51:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:08 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My42ODkzLjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11875,Microsoft.Compute/GetVMImageFromLocation30Min;72675" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0d63194a-4e13-411a-b50b-7a5621e4b0ce" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7adada07-e8cb-409a-a2d4-ab8ed710acca" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7d7f006b-efe6-4c71-a50b-e37eb1b4b42e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215317Z:7d7f006b-efe6-4c71-a50b-e37eb1b4b42e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 557274804EAC4E2AB0F1E1C111CF6E15 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:16 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My43MDA5LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9a09f012-a5ac-4811-9ce6-c47a032492e6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12605,Microsoft.Compute/GetVMImageFromLocation30Min;73602" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e7a2ce89-fb8f-4d16-bc0f-5611fbd357f4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6ff32542-6071-486c-81f4-50ad18cfdb63" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f29d744d-1abf-4bc3-963c-0611709499f5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215108Z:f29d744d-1abf-4bc3-963c-0611709499f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1A6C320AF3DB4624AA8B689B52C03AA7 Ref B: MNZ221060619045 Ref C: 2025-06-02T21:51:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:08 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My43MDA5LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11874,Microsoft.Compute/GetVMImageFromLocation30Min;72674" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0ad02688-4764-4229-8e06-8fd6b609c526" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/be97f6c5-afb7-40b2-92b1-8ee19d76d17b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1442e39f-47c2-469c-81a6-254ac948b6e5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215317Z:1442e39f-47c2-469c-81a6-254ac948b6e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E228FC1544384F7C82419B180EAF5E27 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:16 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My43MjQwLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c37f5426-3287-4c84-ac57-f19c813fe14f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12604,Microsoft.Compute/GetVMImageFromLocation30Min;73601" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b19d62b9-9b3b-4d8f-b67d-4ff1a8d67e1b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/374de6ed-0f31-438f-9e8f-c5e180573356" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d249baf5-c2b3-404a-b9a4-e9b6596a8e91" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215109Z:d249baf5-c2b3-404a-b9a4-e9b6596a8e91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 24658C7DD9BE4CD49688ABB2BC651811 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:51:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:08 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My43MjQwLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11873,Microsoft.Compute/GetVMImageFromLocation30Min;72673" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5f67dc84-1c13-497a-82f0-b1b1a5c47704" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f3c89d64-d216-4307-a4ff-241fdab399a3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "2027f107-c839-4df5-ad84-9020a30be828" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215317Z:2027f107-c839-4df5-ad84-9020a30be828" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F0F527600F2C4E98A56C36D559C332BD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:16 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My43MzE0LjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "73078d49-7593-4e00-b0c4-908c2b9f6a64" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12603,Microsoft.Compute/GetVMImageFromLocation30Min;73600" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "08cbf675-c623-49ce-95c7-de01722e49f9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c0dc66d7-dea2-4e09-b14f-0833f3e40cb1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5abd2dc6-3b95-477b-8a03-27efa8a0140f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215109Z:5abd2dc6-3b95-477b-8a03-27efa8a0140f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BEBC81A4B5C848A4B4CDFDE02CEB0A3E Ref B: MNZ221060610053 Ref C: 2025-06-02T21:51:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:08 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My43MzE0LjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11872,Microsoft.Compute/GetVMImageFromLocation30Min;72672" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a51b083d-72f3-43b2-ba2e-deeed4459abe" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4842e898-9571-48c5-be0f-44f38656cd8f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "ccb605da-370a-4f90-a3dd-be53d099006a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215317Z:ccb605da-370a-4f90-a3dd-be53d099006a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B138F98C211349B790BDBA04DA113BC5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:16 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My43MzIyLjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ec0ea1b3-1185-4568-ae40-559181282727" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12602,Microsoft.Compute/GetVMImageFromLocation30Min;73599" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e8cd444d-1237-4723-9806-f1ef9569b74d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d237b8a2-8711-468c-a1b6-66587fe4da73" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "63ca53fd-187b-4c7a-95e2-d0371db346a2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215109Z:63ca53fd-187b-4c7a-95e2-d0371db346a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2DE4B4AA9EB4A1FA82E63055DC413CB Ref B: MNZ221060608009 Ref C: 2025-06-02T21:51:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:08 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter-zhcn/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LURhdGFjZW50ZXItemhjbi92ZXJzaW9ucy8xNzc2My43MzIyLjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11871,Microsoft.Compute/GetVMImageFromLocation30Min;72671" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d4db66e1-ddf1-4b13-a702-cd9b31460d7c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/acccd16c-e3df-4329-96ff-b181790891aa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f56c58a2-ee58-415f-bb5c-0b753b1c7b99" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215317Z:f56c58a2-ee58-415f-bb5c-0b753b1c7b99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 19F435551FED4BCFB8907F853718382B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:16 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f70e48a7-3e26-4c80-b1a4-8a78af4298bd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15952,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43946" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "683f88e4-ccdc-4c77-922b-6e1f2b7f1904" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b41f4b65-5f40-416a-b0ba-faefe0ebae0d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "04680e17-667d-4e20-b5f9-904484a89762" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215109Z:04680e17-667d-4e20-b5f9-904484a89762" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1826C4CC59324CBDBAF181F0AA146B7D Ref B: MNZ221060610047 Ref C: 2025-06-02T21:51:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:08 GMT" + ], + "Content-Length": [ + "5673" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15878,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43845" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "71a3f040-fcbe-4b1f-8e8f-814581050c74" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bedccc53-6fce-422f-9e3f-8e4fdc72f125" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "0dfe7dbf-b57d-41c6-984f-6dc92ab0c687" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215317Z:0dfe7dbf-b57d-41c6-984f-6dc92ab0c687" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6DA22206C630464DA6AA2C8FC427210A Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:16 GMT" + ], + "Content-Length": [ + "5673" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My41MzI5LjIzMTIzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a956a72f-63aa-494f-91e7-93deac80df09" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12601,Microsoft.Compute/GetVMImageFromLocation30Min;73598" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8ac6222b-13bd-4c0b-a849-84d7f642799f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3d9d37d9-8945-42cd-bdd8-23657d9c73c8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4a37e39f-e95a-42fa-a868-6e7765e10218" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215109Z:4a37e39f-e95a-42fa-a868-6e7765e10218" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9D0F9DF9CEDC4B68ADB514363ADA61E6 Ref B: MNZ221060610029 Ref C: 2025-06-02T21:51:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:09 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My41MzI5LjIzMTIzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11870,Microsoft.Compute/GetVMImageFromLocation30Min;72670" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8da42b9a-bb94-4c34-9e02-3aefde0412c6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/62fdcf2c-323b-4080-a20d-18ed9e39dd0a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "170cc296-f9f9-487d-bf4b-5fc2c2e9db45" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215317Z:170cc296-f9f9-487d-bf4b-5fc2c2e9db45" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 742D282F72DC40FA86DFA4FEC45B4CD4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:16 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My41NDU4LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "081dd472-3c38-4828-9192-ff00a2ba9b2f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12600,Microsoft.Compute/GetVMImageFromLocation30Min;73597" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a7da7485-c4d6-4b6d-bae7-61851a633caf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/201d823a-40de-4153-ad7b-b2182de5e9f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "18219619-7b58-483a-938d-6b8100d86999" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215109Z:18219619-7b58-483a-938d-6b8100d86999" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D225C34864B445A68BEA99694368A879 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:51:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:09 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My41NDU4LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11869,Microsoft.Compute/GetVMImageFromLocation30Min;72669" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5d2ee260-5ed2-4355-b765-31441e52f09c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b42553cf-958d-41c6-9047-df9bf21da94b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7cd5e96a-1ddc-4cec-af08-e4361bcf61a4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215317Z:7cd5e96a-1ddc-4cec-af08-e4361bcf61a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 44C963A9C8CE42F9A187126B4248D2FB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:16 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My41NTc2LjI0MDMwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "055ae419-898a-445b-a468-ac9617c0c1ac" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12599,Microsoft.Compute/GetVMImageFromLocation30Min;73596" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fba90fd5-83e6-4678-9dff-165ce69e2647" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9910a24d-ba3c-451a-be24-5c25ef813607" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "68769219-a5f3-44ba-900b-8445b2ab6916" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215109Z:68769219-a5f3-44ba-900b-8445b2ab6916" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A3B5251DC70444C5A0A0DD8B0F398A59 Ref B: MNZ221060619023 Ref C: 2025-06-02T21:51:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:09 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My41NTc2LjI0MDMwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11868,Microsoft.Compute/GetVMImageFromLocation30Min;72668" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2b3e1cdf-943a-4669-b020-acb3b790a1f1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/938a7c86-42df-40e1-8a08-b526f43cdfc4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f3712df0-6df0-4ee0-8e7f-281680383e27" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215317Z:f3712df0-6df0-4ee0-8e7f-281680383e27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CB3C18AAC3EA476CA64B6C77D5F6F8FA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:16 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My41Njk2LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c6f7ee7c-e37c-4b7d-bb98-729340c5beca" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12598,Microsoft.Compute/GetVMImageFromLocation30Min;73595" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8c1254fb-0e65-442c-a0ec-4de033e8faf0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/462809ea-24b6-43c3-9d6d-a8fd3d3d1169" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b23c7cbf-13b8-4e92-b5b9-3ed057a32e11" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215109Z:b23c7cbf-13b8-4e92-b5b9-3ed057a32e11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3BB76F45B3634E4B94AA21DA9F0F8BD4 Ref B: MNZ221060609021 Ref C: 2025-06-02T21:51:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:09 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My41Njk2LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11867,Microsoft.Compute/GetVMImageFromLocation30Min;72667" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5690a0f8-74cc-4749-b8f8-34cced5aa682" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a5c7eb5f-2341-48db-8c53-f7f55219da92" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2edb9445-fc69-445f-9356-5fde30776fea" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215317Z:2edb9445-fc69-445f-9356-5fde30776fea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3744E02F1DF247C2B09370F22C183C82 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My41ODIwLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e9a3cdb8-99da-4317-ab83-5e22c665aabf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12597,Microsoft.Compute/GetVMImageFromLocation30Min;73594" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cbf67b10-eaa0-4f6c-a276-6f447fb661b8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ec4765e4-f239-4ac0-bf20-141b9c093746" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "33f27a26-c0ff-4236-aa1d-c7a894c2fea9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215110Z:33f27a26-c0ff-4236-aa1d-c7a894c2fea9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E632BDB7F6C340699598CF9CEC6AD4EC Ref B: MNZ221060608047 Ref C: 2025-06-02T21:51:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:09 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My41ODIwLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11866,Microsoft.Compute/GetVMImageFromLocation30Min;72666" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "24f2b7aa-4fd4-4673-b4f4-715a06a65bf8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/179af94d-6ef5-458f-a8a5-ec8dffb47a80" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "af68b645-576c-440c-ab91-6169a099d3d1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215317Z:af68b645-576c-440c-ab91-6169a099d3d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8B84AED15C9A4AF7BDDAE6F3DE8E5307 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My41OTM2LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7a746134-eabd-41e3-bc89-c6c99810e555" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12596,Microsoft.Compute/GetVMImageFromLocation30Min;73593" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3f2c8e1e-43f7-427b-9242-961b3a72fbfd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7afbe9ea-afdb-4e6e-b541-e378b3d6659b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e13e88ae-4e3d-4b98-93ea-b10e9159a12e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215110Z:e13e88ae-4e3d-4b98-93ea-b10e9159a12e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EF0867486A6A47C1A72F25045A950F05 Ref B: MNZ221060610017 Ref C: 2025-06-02T21:51:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:09 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My41OTM2LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11865,Microsoft.Compute/GetVMImageFromLocation30Min;72665" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f4af1f26-76ae-467d-a976-4c6bf6a0c5f7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fc892f2b-58be-44c8-8e9f-839526485f9f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "39ce5dc2-7c1d-4ffa-b4fd-5d798313ccf9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215317Z:39ce5dc2-7c1d-4ffa-b4fd-5d798313ccf9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 891526BBB2C540589B34666AE4EE26B5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42MDU0LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b11cda7f-f41a-47d9-b2ab-d4d453e0bbd9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12595,Microsoft.Compute/GetVMImageFromLocation30Min;73592" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5a491833-1459-43ef-a917-15917266add3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e76b75ba-51fe-4671-8a4a-d9cf74ae7780" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "22026357-4b56-4619-8ffe-519f3fde1a93" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215110Z:22026357-4b56-4619-8ffe-519f3fde1a93" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D1C016CB3D174A9D9EC7DE57657FEA84 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:51:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:09 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42MDU0LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11864,Microsoft.Compute/GetVMImageFromLocation30Min;72664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1586a63d-402a-45a3-9c66-53d8a67981f2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/71f721d0-c0f2-42a3-a174-09c9fceb5ea3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "74f5f6f6-5bbf-4e0d-b25c-44488f9f2076" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215317Z:74f5f6f6-5bbf-4e0d-b25c-44488f9f2076" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E48248D9EA8D4F74B9C438B3BB0DB545 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42MTg5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "525c7b39-01b1-4cfa-b057-0c61b839440d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12594,Microsoft.Compute/GetVMImageFromLocation30Min;73591" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "79066d12-7815-45ff-9452-b37ca4e5dda3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2aab0d9b-6d67-4d29-9135-370a40c2e49f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "62afd40c-3894-432c-a4f5-7a8171d1289c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215110Z:62afd40c-3894-432c-a4f5-7a8171d1289c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E23251BDFDC44CCA4ED8EF6B53F5C98 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:51:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:09 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42MTg5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11863,Microsoft.Compute/GetVMImageFromLocation30Min;72663" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a9db6880-82a8-4747-919b-765afbb155fe" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ea7793e6-a525-4064-8c3d-16803aed24e4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b9998cd0-22db-48ef-9d1f-886c8e39ab34" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215318Z:b9998cd0-22db-48ef-9d1f-886c8e39ab34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 62DAFF66DD8E4C699E4B613DDAA8CFEF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42MjkzLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e0988464-7bbb-4238-b203-59d12a568d48" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12593,Microsoft.Compute/GetVMImageFromLocation30Min;73590" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0dba57b4-81ed-4aa3-8da5-29ef175da0c5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8624c276-6544-467d-921d-001d089e1f82" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "57fda534-2b2a-4a0d-a2a3-ea45c94be4fa" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215110Z:57fda534-2b2a-4a0d-a2a3-ea45c94be4fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0B17A4F185D94110BD29288324359C8F Ref B: MNZ221060609047 Ref C: 2025-06-02T21:51:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:10 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42MjkzLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11862,Microsoft.Compute/GetVMImageFromLocation30Min;72662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "572a4dfa-4bd0-489b-b94f-ccd5cd7ed46d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7e01205f-74ca-46ab-bfca-88f3d7c9c8ce" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "65938401-4a12-4703-9c26-cf122bd6d54d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215318Z:65938401-4a12-4703-9c26-cf122bd6d54d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 69A4ACFD2CBB4A7C9177DF965BEE07DA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42NDE0LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "237dbdb5-9ea7-4c19-b647-59a44befb41a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12592,Microsoft.Compute/GetVMImageFromLocation30Min;73589" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e1b90753-5799-44ee-b9fe-86b4be0563f7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a16ebf68-1481-403f-9f84-9be8a7bb08dc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8358dee4-a5ff-4a85-8cbf-b806cfa16c2a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215110Z:8358dee4-a5ff-4a85-8cbf-b806cfa16c2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FC7AF61F0D434C4C9C1A3540282218EA Ref B: MNZ221060610029 Ref C: 2025-06-02T21:51:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:10 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42NDE0LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11861,Microsoft.Compute/GetVMImageFromLocation30Min;72661" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b002b2fa-d684-4f22-b29f-f104f99f67b7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/70180fb2-089f-4a26-ab7c-4ac5ed43a64c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b67580a8-c154-4aaf-9a0b-ebf3d35b1c94" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215318Z:b67580a8-c154-4aaf-9a0b-ebf3d35b1c94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 80A72E1151514B85A7C03C2E507ED32B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42NTMyLjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e55325e1-fafb-4637-ad63-50882154529c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12591,Microsoft.Compute/GetVMImageFromLocation30Min;73588" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1a0b9cc1-6f04-429b-9fc6-74b23bf9f42d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ce16b725-14b3-4fa3-be07-714a75ca11d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "47f5de04-bb9b-4d9b-a1b5-ad746651d7e5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215110Z:47f5de04-bb9b-4d9b-a1b5-ad746651d7e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 422A2BD2B56140F39C0C73496ADBD6C7 Ref B: MNZ221060618051 Ref C: 2025-06-02T21:51:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:10 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42NTMyLjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11860,Microsoft.Compute/GetVMImageFromLocation30Min;72660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "27162fcf-a5bb-48f2-8f69-1700841ea075" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3e340ce2-8137-4fe5-9f72-0bd70d096bb1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "2d7b4e3c-feb8-4d05-b819-acadf45f212d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215318Z:2d7b4e3c-feb8-4d05-b819-acadf45f212d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8C570D60622D457CA293BFC7322CCAEC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42NjU5LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f773b0ef-c746-457a-9f0f-6fa25261cb6c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12590,Microsoft.Compute/GetVMImageFromLocation30Min;73587" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "34a42bb1-abcd-46c7-a1cd-5272171ffb74" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f18cde6a-d590-47fe-a72e-f4bf6d07f0d8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "59268726-7e41-43ce-a1b1-867971917aaf" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215111Z:59268726-7e41-43ce-a1b1-867971917aaf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3ECF8D0E0F9E49A8B54B212CB0864DD1 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:51:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:10 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42NjU5LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11859,Microsoft.Compute/GetVMImageFromLocation30Min;72659" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e5e0147d-a611-425b-9d16-9f1edff5a11a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/477e7f34-ebb5-447b-b5c4-2379f631b9d9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "fb421607-c2d4-4849-8c6d-6ba1d10039a2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215318Z:fb421607-c2d4-4849-8c6d-6ba1d10039a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4B63E10506304130B9173FC9027DDD01 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42Nzc1LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1417915a-f3f2-4e87-ba3c-1473cd9efcfd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12589,Microsoft.Compute/GetVMImageFromLocation30Min;73586" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5dea7c61-4459-4b4a-b143-6aed2bc51221" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ed4c9380-0e27-41b7-bb80-85e27288829f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8515cb46-fd2b-44dc-b636-664039de0899" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215111Z:8515cb46-fd2b-44dc-b636-664039de0899" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AA983F803A224BF08077285B2C249BFE Ref B: MNZ221060619045 Ref C: 2025-06-02T21:51:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:10 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42Nzc1LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11858,Microsoft.Compute/GetVMImageFromLocation30Min;72658" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5c4a0ecf-9426-4911-8a4a-8df66f4ee9e5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1c8057c6-3f19-4d23-8e7c-7a32b7219cd5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "d822e7f3-e719-4179-b3a2-a7f65035096d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215318Z:d822e7f3-e719-4179-b3a2-a7f65035096d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 437525F6B9A743109D9AFC99FA9D5EEF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42ODkzLjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dd243f40-2b51-4590-9928-8b3742a3ef7a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12588,Microsoft.Compute/GetVMImageFromLocation30Min;73585" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6231e20e-99d8-4b50-9c4e-cb07684c5388" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1a073eee-f3e7-4d35-91ca-7d9ba766c4ce" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ab8d5dfb-bbab-41ff-b08b-527be3d65906" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215111Z:ab8d5dfb-bbab-41ff-b08b-527be3d65906" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DF53039B4D9A4AE494519B3477B3ED99 Ref B: MNZ221060608025 Ref C: 2025-06-02T21:51:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:10 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My42ODkzLjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11857,Microsoft.Compute/GetVMImageFromLocation30Min;72657" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "80b29643-7967-45f1-9d56-7f275cff3ed2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/79f222fb-46c4-4a95-bb21-0ea6702c2524" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "7de3dd44-d7fe-4c93-8442-99854200534a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215318Z:7de3dd44-d7fe-4c93-8442-99854200534a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BCEA28AA6C4D4447A1CBF0BB130D2617 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My43MDA5LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0a5ea36f-545e-44ef-9d47-7cc4097c14ce" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12587,Microsoft.Compute/GetVMImageFromLocation30Min;73584" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8dac7f65-80cf-4b7d-b648-e65e4d3cec20" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f53741f9-1cd0-479c-a1aa-426dcb3e38c3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3e2c5a12-2c52-47f8-b8ea-8f7b108e622a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215111Z:3e2c5a12-2c52-47f8-b8ea-8f7b108e622a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B5F53EC30F824A0D9C0CE2B827143614 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:51:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:11 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My43MDA5LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11856,Microsoft.Compute/GetVMImageFromLocation30Min;72656" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4ba7d51d-8986-4213-bfe9-03fb408fbfe2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c8ad1803-221a-4611-ab54-27d9e07a7e85" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f7575e44-7de1-491f-8765-418c32b1c3c1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215318Z:f7575e44-7de1-491f-8765-418c32b1c3c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1C9C1FFAA48C449A84E048BEC478F209 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My43MjQwLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9a953221-83b4-4143-bc72-1461306f7c87" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12586,Microsoft.Compute/GetVMImageFromLocation30Min;73583" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3ceb1be5-e96f-4074-8d3e-1e7cf5efe26b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cbb37894-4b62-400d-9f39-ad8c1a3ffc46" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "108394a9-ae0d-4673-8e1a-18f3306c6191" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215111Z:108394a9-ae0d-4673-8e1a-18f3306c6191" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 42FE0D51E02C412386F8C30386460BDF Ref B: MNZ221060619037 Ref C: 2025-06-02T21:51:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:11 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My43MjQwLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11855,Microsoft.Compute/GetVMImageFromLocation30Min;72655" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f144ab7d-9a7a-4f5e-bb00-4e7064964adc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f1372a9f-498f-4d7c-b03d-9e3862e95631" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e2233e62-f8b0-47d9-a58e-969ad1ec3d26" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215318Z:e2233e62-f8b0-47d9-a58e-969ad1ec3d26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3F7EFF56663943988FD82BF1CA6A48E5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My43MzE0LjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "98e0c8c2-d234-4e82-b263-a9317b9c3d83" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12585,Microsoft.Compute/GetVMImageFromLocation30Min;73582" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a64b5601-2362-4cd1-bc31-7427d405235c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bda0f359-c504-456e-8632-131db1f78bde" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ea824420-4d03-4a95-974a-f4b1ea9db18a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215111Z:ea824420-4d03-4a95-974a-f4b1ea9db18a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B82CAE5DC81C4254986CC0BB44DB44FF Ref B: MNZ221060610009 Ref C: 2025-06-02T21:51:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:11 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My43MzE0LjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11854,Microsoft.Compute/GetVMImageFromLocation30Min;72654" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b8b098e2-c78d-44f6-908b-53208e1a5891" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3c97d44e-f10b-4696-ae86-065d4143f0b1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "abbc9dae-b0c4-4d25-a748-d3986d81d7b5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215318Z:abbc9dae-b0c4-4d25-a748-d3986d81d7b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5E4093DDC300434588C079508AFEC9B0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My43MzIyLjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7a153a5e-79d9-4acf-a4e1-64cd6ad5675b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12584,Microsoft.Compute/GetVMImageFromLocation30Min;73581" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "72c68993-cb16-4d7e-b840-9edb2aec92c3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e0782a7f-0c55-441e-a91f-8b8916534d0a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "83fa356d-d387-4fe6-829b-292af785ebb7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215111Z:83fa356d-d387-4fe6-829b-292af785ebb7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E364CA5FDD04204B96B5F9EA4BC114E Ref B: MNZ221060610019 Ref C: 2025-06-02T21:51:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:11 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-datacenter-zhcn-g2/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE5LWRhdGFjZW50ZXItemhjbi1nMi92ZXJzaW9ucy8xNzc2My43MzIyLjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11853,Microsoft.Compute/GetVMImageFromLocation30Min;72653" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0440061f-4881-40cb-ba46-75b2357d6ee3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b07084f2-210b-4428-9aba-1da7b45d0dfe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "05f77ee3-1c5a-41f5-b41a-721aac5739cb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215318Z:05f77ee3-1c5a-41f5-b41a-721aac5739cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 374AC9896B5C4912B38DA35BC45A7845 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:17 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "98c61471-a30d-45c4-8754-6a865d40fd67" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15951,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43945" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "469bd8e4-dc4b-4294-b71c-957a77a380ad" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/75c48fab-0941-44f5-b50f-1f169528d442" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "89f8bcc1-c08b-4c37-8990-fd5db7e4e65a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215111Z:89f8bcc1-c08b-4c37-8990-fd5db7e4e65a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 382F61E4A3C54A76A1900A39AE8EF5A3 Ref B: MNZ221060609031 Ref C: 2025-06-02T21:51:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:11 GMT" + ], + "Content-Length": [ + "5529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15877,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43844" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "042d1da9-dcc9-4424-a324-827c813795c5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/75a948d4-4d96-425e-a91c-7fda81f5bcdc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "92ce5755-f850-4478-b393-49b66da46a56" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215318Z:92ce5755-f850-4478-b393-49b66da46a56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 38BB6E34BF7F42648C88D021D348BDEB Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "5529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjMyMi4yNDAyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d299c4bf-00ff-4a64-8988-d0ac94d60de4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12583,Microsoft.Compute/GetVMImageFromLocation30Min;73580" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4f7edbfe-0900-48e9-a8ce-d88488bd29ce" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/faaecdf9-2641-489f-a041-da013b263187" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5bc9b1b2-2f68-4a32-a62d-8f6b2807d271" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215112Z:5bc9b1b2-2f68-4a32-a62d-8f6b2807d271" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 27A88B4D8B444F74AE1935ACD6B8B3CD Ref B: MNZ221060619027 Ref C: 2025-06-02T21:51:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:11 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjMyMi4yNDAyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11852,Microsoft.Compute/GetVMImageFromLocation30Min;72652" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6be9fa1b-0040-4e65-8431-1066cb9b1047" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/81004860-3e3c-45fb-8a57-042b65221684" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "a96c8079-5dc5-4642-8d27-63aa7b738948" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215318Z:a96c8079-5dc5-4642-8d27-63aa7b738948" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7D0BC1BA1DC54B3C92484F35A6BC2E4D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjM0MC4yNDAzMDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "07a4a4a7-c910-476f-b234-f6e0b9597f9c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12582,Microsoft.Compute/GetVMImageFromLocation30Min;73579" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c06c7ead-a283-485f-9333-459825d735f3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/84030313-ec01-4c5b-9120-342a2b70afcf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e350ede4-37e3-47d7-bea5-bd6575e41ad5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215112Z:e350ede4-37e3-47d7-bea5-bd6575e41ad5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E5B8B8C8E17E43BBB232C4232EBF5E4C Ref B: MNZ221060610047 Ref C: 2025-06-02T21:51:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:11 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjM0MC4yNDAzMDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11851,Microsoft.Compute/GetVMImageFromLocation30Min;72651" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "03a1798e-5a37-4649-8ab7-e2f875f1be2c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e3241afe-6c2d-4c07-b5e7-8e74a7831511" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7950bcfd-3322-4336-afc0-84207c9fecc1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215318Z:7950bcfd-3322-4336-afc0-84207c9fecc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 26EFACBC653F40F88F5778C04E074B26 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA0MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9b82cfdb-6794-4e3c-812e-3a10259c1e4e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12581,Microsoft.Compute/GetVMImageFromLocation30Min;73578" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "08245e8d-8603-48a4-aef8-f42436b82145" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d6aa4ff5-f4c7-4e28-b03c-4f8b95c47d9b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c2969795-979d-4eb6-be85-526bb63831bb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215112Z:c2969795-979d-4eb6-be85-526bb63831bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 073730216C424DEDA83887827CB6D072 Ref B: MNZ221060618031 Ref C: 2025-06-02T21:51:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:11 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA0MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11850,Microsoft.Compute/GetVMImageFromLocation30Min;72650" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6408331f-74b5-4ea7-a22f-a54bc84c897c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/58ee269b-1b23-480e-a6b8-0ed9b25bbe08" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e3503c87-447f-49f4-bf95-595eb26bfc82" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:e3503c87-447f-49f4-bf95-595eb26bfc82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 02A0BFC7C83B4F69BC2B39ADFD5F3A5A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjQ2MS4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5df8d382-abc2-4120-b84a-410d5e43ffca" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12580,Microsoft.Compute/GetVMImageFromLocation30Min;73577" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bb9b0217-f682-4f72-a339-55f95682484c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8eadaa4f-fb8d-425d-85ba-b9f732b27ae5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ef369395-273c-4933-ad13-464ab8be921a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215112Z:ef369395-273c-4933-ad13-464ab8be921a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 402A8E2E190640BE97C85464E743111E Ref B: MNZ221060619031 Ref C: 2025-06-02T21:51:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:11 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjQ2MS4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11849,Microsoft.Compute/GetVMImageFromLocation30Min;72649" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "78d63cf9-6ab9-4227-932b-984edef71ac4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e4fca389-1584-480f-a462-590b615c8584" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "e2cfca17-1a75-47f0-9b01-64c48d073197" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:e2cfca17-1a75-47f0-9b01-64c48d073197" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A29F98A7F6804E32812EC2B6B31D20F6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjUyNy4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bf90c763-a4b3-4758-946e-c09f05604f26" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12579,Microsoft.Compute/GetVMImageFromLocation30Min;73576" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "86631135-8f94-46b7-89a2-f319df437a71" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/683ec237-18fb-4fae-81b9-f1bb9b8c0a95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "4dd857a7-92dd-4109-a5a7-fc620039fb17" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215112Z:4dd857a7-92dd-4109-a5a7-fc620039fb17" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DD167A381313468C932B9970EBD83CD2 Ref B: MNZ221060619047 Ref C: 2025-06-02T21:51:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:12 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjUyNy4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11848,Microsoft.Compute/GetVMImageFromLocation30Min;72648" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8e457b8a-f9e8-425e-bcb8-ca3614d24587" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3023734c-aa4d-4ca2-ab88-abb8070780d5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cd870a5e-06e7-4bdd-a0bc-c131b165d5d2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:cd870a5e-06e7-4bdd-a0bc-c131b165d5d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C9448513EB144300B510ECA76D97DDC8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjUyOS4yNDA2MTk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8ac7deb0-1356-4dc9-8c76-fb1fcca20ee1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12578,Microsoft.Compute/GetVMImageFromLocation30Min;73575" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5f2e34d2-9661-4b62-a7c9-ae00981604df" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/980d22fb-e10d-4596-93be-f712f65f69a0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dcd98b89-877c-4272-96d5-70d94ae11c46" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215112Z:dcd98b89-877c-4272-96d5-70d94ae11c46" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6122C0BE49374E2CA229383CD3FC973E Ref B: MNZ221060609049 Ref C: 2025-06-02T21:51:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:11 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjUyOS4yNDA2MTk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11847,Microsoft.Compute/GetVMImageFromLocation30Min;72647" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "53efa19e-b898-499f-a026-6bdba84c2215" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c5dbd979-4cfc-4bb1-bba6-b42529df9d83" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ae411b3f-aff8-4e48-b087-cbfc4ca78e77" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:ae411b3f-aff8-4e48-b087-cbfc4ca78e77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 874E5A0438B94F9F9522F010F6D6730D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjU4Mi4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d75c46fa-5420-44d1-a742-fa73bdaff0f6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12577,Microsoft.Compute/GetVMImageFromLocation30Min;73574" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "06c88084-b428-43d3-baac-67dc99eee792" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6cd09cbd-48c6-4013-993b-aa805fe1ea7e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bdb3ba57-fe31-46fc-af6c-4fd9a69f3fbc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215112Z:bdb3ba57-fe31-46fc-af6c-4fd9a69f3fbc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 077ED95E28394F459EA2C9DE418F5EC0 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:51:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:12 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjU4Mi4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11846,Microsoft.Compute/GetVMImageFromLocation30Min;72646" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "33d45ec3-473c-4102-85d9-2c3e70006f33" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6a6cbc16-7ab9-4367-b5ea-ba1d40db3e02" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "ce5b3e0f-aa6f-4e21-a56e-089faa0c511c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:ce5b3e0f-aa6f-4e21-a56e-089faa0c511c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 686079325AA944EA86951AAE927EBB4E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA4MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "09bc0105-9458-4090-94e4-0c9929038a2a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12576,Microsoft.Compute/GetVMImageFromLocation30Min;73573" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3f6d092a-4b55-4000-8150-746c472e6de9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4e43ca50-1590-46f3-ab55-0a783eb336d6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "506cf7e7-9018-4a8c-b92a-1cea9059bb07" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215112Z:506cf7e7-9018-4a8c-b92a-1cea9059bb07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 72D09F264DAB4EB9B8A26D7A28437647 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:51:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:12 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA4MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11845,Microsoft.Compute/GetVMImageFromLocation30Min;72645" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9f7a307b-4d87-4070-affe-7f2ce97704ad" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5c73e63d-3ff1-4a71-945f-6549c61ccd8a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "64da33bc-6e3d-42e4-a178-ca625b15b69e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:64da33bc-6e3d-42e4-a178-ca625b15b69e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 509E20BAAD844C7990FFAE1943789F3B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjcwMC4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c8429290-861c-411a-a1fa-735b22f8b1ad" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12575,Microsoft.Compute/GetVMImageFromLocation30Min;73572" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0f1d1d55-4985-42ce-9283-302ccc67e14b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6961d470-ae23-4916-9c83-881eda1db37f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9b41b731-940d-44cc-b556-fd7db49c0c88" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215113Z:9b41b731-940d-44cc-b556-fd7db49c0c88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9E7ABD2B2F714CFA953BCCA7A2F77BE8 Ref B: MNZ221060610045 Ref C: 2025-06-02T21:51:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:12 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjcwMC4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11844,Microsoft.Compute/GetVMImageFromLocation30Min;72644" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d1c53ee6-a9eb-4cd2-a4ed-68db56f29b5f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6d5a065f-999d-4d60-af9f-130c1f134510" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e12800bc-11be-45bf-a361-61a56e65a083" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:e12800bc-11be-45bf-a361-61a56e65a083" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8111AB5F0A6F4124B3D7A9FEFB7898B1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "58ac9d52-2210-4642-9f74-b70e2e4965c9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12574,Microsoft.Compute/GetVMImageFromLocation30Min;73571" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "614ef901-675a-4735-9e92-3cdaca0bbc31" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8f6861da-7d64-4dc2-aaea-f96b26320af0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "66bf66d2-568c-4ffb-ba9e-c297dc01d6d5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215113Z:66bf66d2-568c-4ffb-ba9e-c297dc01d6d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8C8A1C8404214EC09AC82167741E1526 Ref B: MNZ221060610035 Ref C: 2025-06-02T21:51:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:12 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11843,Microsoft.Compute/GetVMImageFromLocation30Min;72643" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ee806e75-ac2b-4acd-ab1f-107f6117b309" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5a0c68f9-3ab6-4739-be96-7a131c8a99ae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "734734de-1e1b-4ac9-9cb1-8af5afcdc30e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:734734de-1e1b-4ac9-9cb1-8af5afcdc30e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 73E619FAC9DD4034921541EF9A680F0B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjg0OS4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "16d07b46-81d8-41d5-962e-07d2c8ee015b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12573,Microsoft.Compute/GetVMImageFromLocation30Min;73570" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5aa418f2-72c5-4f74-ad88-2e1a9df32eb4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/51acdc52-3dd9-4451-af33-58d430c1f348" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "5190fc1f-9b4b-4cb2-96c4-78151629b652" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215113Z:5190fc1f-9b4b-4cb2-96c4-78151629b652" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 589B2E6094A843C49DABE930C75C2014 Ref B: MNZ221060609021 Ref C: 2025-06-02T21:51:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:12 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjg0OS4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11842,Microsoft.Compute/GetVMImageFromLocation30Min;72642" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ee31edc7-d5c4-4817-bb4f-f47402f86a94" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1936ffd1-6d05-4944-baac-61562ee62710" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fc27936c-e7ba-4f59-b99e-a5f85e66cef7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:fc27936c-e7ba-4f59-b99e-a5f85e66cef7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1ECEEC1B30B14E3288F34FBB4A253675 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjk2Ni4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f6eac5e0-fbc6-4991-85fb-ba70a0255d8f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12572,Microsoft.Compute/GetVMImageFromLocation30Min;73569" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f6921a1c-0a51-40ea-aff9-96c3de4e3350" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7c5d1811-8a80-43af-b394-578347472ba2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c9b3b124-2e01-4f3a-94fc-c2966486808e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215113Z:c9b3b124-2e01-4f3a-94fc-c2966486808e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9D0AA40880CF4CD198431CA1334633FF Ref B: MNZ221060619037 Ref C: 2025-06-02T21:51:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:13 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMjk2Ni4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11841,Microsoft.Compute/GetVMImageFromLocation30Min;72641" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e189e354-b609-479d-9171-c28bc060f891" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/530d1594-d5e7-40c8-8669-df732b7b7ffd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e663182b-2756-4909-bed1-11f6ef624428" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:e663182b-2756-4909-bed1-11f6ef624428" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ECF94B37645145EEA8F7EE89B19DF107 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "707790ca-0e07-418d-bb9f-2940ce31cf5a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12571,Microsoft.Compute/GetVMImageFromLocation30Min;73568" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e78001f5-22bc-4901-ab2a-b6ecc0c4a946" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/55e381e8-e2fc-40f6-b539-5b14f39c3a3f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2780f7f1-81c0-4ec6-9d6a-3fc2390cfb98" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215113Z:2780f7f1-81c0-4ec6-9d6a-3fc2390cfb98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F207D100962C45C286E1BE1CD4631EE7 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:51:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:13 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11840,Microsoft.Compute/GetVMImageFromLocation30Min;72640" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2ba6c006-cd7b-4460-af3f-9523af489e75" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ca2f683f-f25a-4482-be7f-f1825d0a5b1c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "be95f30e-3e59-4ae0-a0a8-cacae6b49108" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:be95f30e-3e59-4ae0-a0a8-cacae6b49108" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1BE2A3593A5A456EAC9797ABBA2CF062 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:18 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMzIwNy4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "62706598-1128-42a4-98b1-38f6200826b7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12570,Microsoft.Compute/GetVMImageFromLocation30Min;73567" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "88deee2e-9abb-43da-9d87-f29c745d7eca" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/91da595f-209c-455b-a071-6f12ead8ca40" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "da83d423-1709-4c57-80f5-dfdbe68f6717" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215113Z:da83d423-1709-4c57-80f5-dfdbe68f6717" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A1147E5D484C49B4BC65B1359BD64938 Ref B: MNZ221060619011 Ref C: 2025-06-02T21:51:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:13 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMzIwNy4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11839,Microsoft.Compute/GetVMImageFromLocation30Min;72639" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0209ecbb-90a8-4b45-8a34-b653392fc87a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9b1dfaee-6549-4fae-a27b-207591c76bf2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b3612468-6a1e-49b4-8f4d-b69bdc2d2dcc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:b3612468-6a1e-49b4-8f4d-b69bdc2d2dcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 43A262FECCB94551AEA5BD609D055354 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:19 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMzMyOC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cfc9c29b-dc63-4d9f-9fc0-8e598f5fd539" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12569,Microsoft.Compute/GetVMImageFromLocation30Min;73566" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e4810d08-ecc9-410e-ba48-1297e484e4c5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d4009b36-947f-4492-aba2-bf52e4f70aff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d4007ddf-458e-4e98-874a-51f2de9e43c9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215113Z:d4007ddf-458e-4e98-874a-51f2de9e43c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D0F7191C673242C2B2641234A9303197 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:51:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:13 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMzMyOC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11838,Microsoft.Compute/GetVMImageFromLocation30Min;72638" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4f0b192f-2a5a-4508-840d-93f5ae6d031c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b1236adc-eb9c-414b-a5d5-3d07e8a34a69" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "d1fe04ae-e41c-464a-8626-b734ee9b53ce" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:d1fe04ae-e41c-464a-8626-b734ee9b53ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 94D016038D94433BADE3A6274F9FD6CC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:19 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6cbe5401-333b-40cf-a152-a1818a67b9de" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12568,Microsoft.Compute/GetVMImageFromLocation30Min;73565" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c0592c5a-ea5a-458f-a54b-7f51ead241d9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/11b0e30b-fc4b-44a0-acf6-f50bdd01d48d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1cc34339-18a0-4be3-84c7-434b3b512ee2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215114Z:1cc34339-18a0-4be3-84c7-434b3b512ee2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D4721377BB60490FB3A7E320BE1E7F26 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:51:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:13 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11837,Microsoft.Compute/GetVMImageFromLocation30Min;72637" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "80accdbb-ea09-436c-a0b5-582bff31afb0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c1029895-8c3d-4f51-bda6-7059234c16da" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "d339861f-cc3a-4947-a876-9eb314f21418" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215319Z:d339861f-cc3a-4947-a876-9eb314f21418" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8C2E9D48DF8141EEB5612F2AFBD5231B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:19 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMzY5Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1f9b42fd-6111-41e2-8ea8-33726561a806" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12567,Microsoft.Compute/GetVMImageFromLocation30Min;73564" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1cf9ca18-7e7f-44a5-bc5c-081ccc6f23e2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0107a155-31b5-4cb6-8021-e684ce4fc6aa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6c06b835-a26b-473d-9f2a-81bbb9e885cc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215114Z:6c06b835-a26b-473d-9f2a-81bbb9e885cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9BBA10E6DE1A410F99F7A9FB20AC83AD Ref B: MNZ221060619021 Ref C: 2025-06-02T21:51:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:13 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMzY5Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11836,Microsoft.Compute/GetVMImageFromLocation30Min;72636" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "aad76dd5-defb-4a75-ae35-42d8af3f91be" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5775bdce-d629-48da-9c43-b61db16d7356" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bdc4849a-06dc-464c-adcd-f33f73cf586c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215320Z:bdc4849a-06dc-464c-adcd-f33f73cf586c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 616BB53DF0914AA1AA03171C035C800B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:19 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMzY5NS4yNTA1MjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "89439d9b-b5ab-411a-82a5-2d963226104c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12566,Microsoft.Compute/GetVMImageFromLocation30Min;73563" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5d05e29c-cd9c-46b8-ae99-7dcc9c378e77" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6eafb388-db4e-4d72-9d5b-f89e04ec25d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b0303069-2856-442e-bb61-db6e825e866f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215114Z:b0303069-2856-442e-bb61-db6e825e866f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EF3E0BE8AF74469D919DB4F51B09F1A4 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:51:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:13 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXIvdmVyc2lvbnMvMjAzNDguMzY5NS4yNTA1MjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11835,Microsoft.Compute/GetVMImageFromLocation30Min;72635" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2ae76d31-9f4f-4f04-942b-549c7758e679" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/280d4fd2-ebda-42df-a895-1c92b7474137" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f1a42f22-622f-48ed-af87-94032ea22bb9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215320Z:f1a42f22-622f-48ed-af87-94032ea22bb9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E15E71D1347245598D25315D4E5158C1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:19 GMT" + ], + "Content-Length": [ + "1095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5fd6a0e3-fad4-40aa-be5e-63aba5ff1f60" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15950,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43944" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a49f53a1-6ee5-40cd-af9c-7a1929521112" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a06aea62-f884-47fb-b6bc-baf32a7d046d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "113946d0-ef00-45ea-ab6e-5ef72ebd3fb6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215114Z:113946d0-ef00-45ea-ab6e-5ef72ebd3fb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C2A66E54A27A4B1DA51A55C8F53FD46E Ref B: MNZ221060608007 Ref C: 2025-06-02T21:51:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:13 GMT" + ], + "Content-Length": [ + "5781" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15876,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43843" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "23e5d370-2218-4f71-bb9a-587e9c4ab826" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/47766be0-ec56-479e-a3a8-4d79f5e48054" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "15a015a1-ccd2-484f-8a7d-4de8c4d1fc61" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215320Z:15a015a1-ccd2-484f-8a7d-4de8c4d1fc61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0B7BFCF6323B495DA4245052B2867A54 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:19 GMT" + ], + "Content-Length": [ + "5781" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yMzIyLjI0MDIwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "85ae0158-8e53-43a3-b379-e4b8c3a9a7f2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12565,Microsoft.Compute/GetVMImageFromLocation30Min;73562" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "323c23ff-1172-4373-a85f-bb891bf4f2a6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9ef77957-2bfe-4f7a-86aa-64ffc14151a2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8d515a8b-4439-4482-b2a2-58b4aff572c6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215114Z:8d515a8b-4439-4482-b2a2-58b4aff572c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7B29198F33AA4BD6B12AA2E5629C575B Ref B: MNZ221060609029 Ref C: 2025-06-02T21:51:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:13 GMT" + ], + "Content-Length": [ + "1276" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yMzIyLjI0MDIwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11834,Microsoft.Compute/GetVMImageFromLocation30Min;72634" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0eb565c3-4a84-4b5d-bd3b-938286cd0784" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d72230a3-7178-4aa7-a7d7-804f0503547d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1092" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16492" + ], + "x-ms-correlation-request-id": [ + "30cd248e-4f31-42d8-9012-194d16b20546" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215320Z:30cd248e-4f31-42d8-9012-194d16b20546" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 29DFEE1F91834F37BA4CF9DB2ADDA6C8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:19 GMT" + ], + "Content-Length": [ + "1276" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yMzQwLjI0MDMwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2277de0b-4b46-43d8-8683-8b09bcadab48" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12564,Microsoft.Compute/GetVMImageFromLocation30Min;73561" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7d7f1903-b68f-49cb-943b-9a46fae25e20" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/acc2a97c-854a-4719-8d1e-b7fd9897a827" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0d12bb93-d4cf-4e96-a1b6-803947ae230c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215114Z:0d12bb93-d4cf-4e96-a1b6-803947ae230c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DE84B71894ED4652B71AB0E606C2519D Ref B: MNZ221060608033 Ref C: 2025-06-02T21:51:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:13 GMT" + ], + "Content-Length": [ + "1276" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yMzQwLjI0MDMwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11833,Microsoft.Compute/GetVMImageFromLocation30Min;72633" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7283893f-3621-458e-8b5e-b4f1b612ac1a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6f199e0e-bfc4-4f68-85c7-bc914cee4dd8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a7f535f1-4fe2-46bc-887f-11a8322fb333" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215320Z:a7f535f1-4fe2-46bc-887f-11a8322fb333" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EAF48A1AB4E641DE83B82CC8FA85A3D1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:19 GMT" + ], + "Content-Length": [ + "1276" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDQwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e1cd3426-99a6-4593-bd43-f4b7382b82fb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12563,Microsoft.Compute/GetVMImageFromLocation30Min;73560" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e20195d8-2695-438b-b78f-0917e7e16c64" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/19fe91eb-7d2e-480b-8005-52e4271a1111" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0a31eb05-2190-4b2b-bbe9-4b8075d89e4c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215114Z:0a31eb05-2190-4b2b-bbe9-4b8075d89e4c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D3D77955EC1F4084A57531A84BE39A32 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:51:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:14 GMT" + ], + "Content-Length": [ + "1276" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDQwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11832,Microsoft.Compute/GetVMImageFromLocation30Min;72632" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f5f3ceda-3b7e-4976-84ce-265ea07242c3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0da3da1f-ae2d-4a3a-b0d5-3820c39682ae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f9903f70-9b00-4b1a-8608-24ab3632aaf5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215320Z:f9903f70-9b00-4b1a-8608-24ab3632aaf5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8FB7F2FD465C45D1870C76ED10E84ED3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:19 GMT" + ], + "Content-Length": [ + "1276" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNDYxLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e74bc1fc-2493-4488-a96a-0ac2b9d2d579" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12562,Microsoft.Compute/GetVMImageFromLocation30Min;73559" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f4a80867-ab27-4fb5-b535-ad768aefaeed" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9e6fc718-db13-4003-96ad-808e7e504406" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1878c46d-f935-47ac-9dc0-722c81e707e8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215114Z:1878c46d-f935-47ac-9dc0-722c81e707e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F712D6D790743FCB9BA41166C3C5274 Ref B: MNZ221060608045 Ref C: 2025-06-02T21:51:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:14 GMT" + ], + "Content-Length": [ + "1276" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNDYxLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11831,Microsoft.Compute/GetVMImageFromLocation30Min;72631" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ac065370-58dc-4b07-b18f-9716d70bb64e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/28acad07-26f7-4eab-a14f-9d21563d4c7e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "8e0d6f2d-35cd-44cf-994b-f480a7a51c54" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215320Z:8e0d6f2d-35cd-44cf-994b-f480a7a51c54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A2D2EC78D6124443B5FC2D8F976DD5D2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:19 GMT" + ], + "Content-Length": [ + "1276" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNTI3LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "07853838-017c-494d-878a-eaa4ffe8b851" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12561,Microsoft.Compute/GetVMImageFromLocation30Min;73558" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fdb97a4a-2aae-4576-9423-651a051240cf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6b7ef9c0-4d3d-4827-8f67-5d98b5795c65" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "596af496-d042-4da1-803a-f1a2eeaa37ff" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215115Z:596af496-d042-4da1-803a-f1a2eeaa37ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C11F1E13C2514BAF96A80B0A806FAEBA Ref B: MNZ221060609009 Ref C: 2025-06-02T21:51:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:14 GMT" + ], + "Content-Length": [ + "1195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNTI3LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11830,Microsoft.Compute/GetVMImageFromLocation30Min;72630" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6efe5e69-9944-4522-a9e5-515e0b427f2e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d2324066-3aa1-49dd-9cd1-f4ddca0adde0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "398243ed-1022-4255-a6fb-37aae7d849ed" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215320Z:398243ed-1022-4255-a6fb-37aae7d849ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0C8DA7BE6EF64319AE3F9E926769BF5B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:19 GMT" + ], + "Content-Length": [ + "1195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNTI5LjI0MDYxOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eddfac49-2cf9-4847-9bd2-5c42e6f9bbfe" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12560,Microsoft.Compute/GetVMImageFromLocation30Min;73557" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1b2a532b-59d0-4029-82fd-fb195c48a1fe" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/49ff0e82-79bd-4b36-a1fa-0f819414ab02" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "46dd5722-a474-406c-9a55-041bdd13e72c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215115Z:46dd5722-a474-406c-9a55-041bdd13e72c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4217D16AA3574CFEA7C261A19AF7B910 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:51:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:14 GMT" + ], + "Content-Length": [ + "1195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNTI5LjI0MDYxOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11829,Microsoft.Compute/GetVMImageFromLocation30Min;72629" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "eb16abc5-c893-40ff-99c6-84d225425ed1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8ca69e9b-7e12-4a55-9cb0-c75b94a8b34a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "43c89be4-908e-4b60-9968-c235ab77fc40" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215320Z:43c89be4-908e-4b60-9968-c235ab77fc40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BAA66324D7C2454E949D9494995DDB25 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:20 GMT" + ], + "Content-Length": [ + "1195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNTgyLjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "773627f8-9266-465e-b9d6-167a406365b9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12559,Microsoft.Compute/GetVMImageFromLocation30Min;73556" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2c4b283a-8b6f-409c-9b0f-27f4e04fa6ed" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8095f355-0b3b-4a24-8f2e-5b568af2b5a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f7b8733f-d127-4aba-8648-81e556632879" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215115Z:f7b8733f-d127-4aba-8648-81e556632879" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B5B1CCF9D45A4E1CB792A6A6455726CB Ref B: MNZ221060608035 Ref C: 2025-06-02T21:51:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:15 GMT" + ], + "Content-Length": [ + "1195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNTgyLjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11828,Microsoft.Compute/GetVMImageFromLocation30Min;72628" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "df5647ca-3e4f-462e-bae4-fd87e7947f15" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/69422b59-825b-4db3-9041-e46a958238d6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "718a461a-6b59-417e-af8c-d7f5a92e3e93" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215320Z:718a461a-6b59-417e-af8c-d7f5a92e3e93" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7AD667B8EB284BA5A930DE67D2DEC63A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:20 GMT" + ], + "Content-Length": [ + "1195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "70d752bc-d2ce-4f2e-bc3f-307c0dc11f40" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12558,Microsoft.Compute/GetVMImageFromLocation30Min;73555" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fc54265e-6397-4c8a-943b-9848197fe5e4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/981969e5-59cc-443e-8cfa-55877ef5f262" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "ee4859e3-1076-4bd8-ac23-c683384b5e52" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215115Z:ee4859e3-1076-4bd8-ac23-c683384b5e52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A73F5030A75045139DC21F13AA23B92A Ref B: MNZ221060608023 Ref C: 2025-06-02T21:51:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:14 GMT" + ], + "Content-Length": [ + "1195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11827,Microsoft.Compute/GetVMImageFromLocation30Min;72627" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7f33f1eb-8486-4c84-91bd-c55ae4b51b8c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c33e6256-11a2-4ce3-be3a-5bebe0c00709" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "9b88236d-1a5c-4ce9-a40d-ab63dbf7f0b4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215320Z:9b88236d-1a5c-4ce9-a40d-ab63dbf7f0b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 75131BD8590142ABAC3DEC76133BE1FB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:20 GMT" + ], + "Content-Length": [ + "1195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNzAwLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "706f5d20-2566-48bf-919d-412d91008d6f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12557,Microsoft.Compute/GetVMImageFromLocation30Min;73554" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5eb748c5-94c2-4939-bc4c-4f901eb54aa6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cc7d38ca-5eb6-4a27-a187-af26ca19e510" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fa793924-cecb-4d8d-9b18-bd6b7eceb8e6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215115Z:fa793924-cecb-4d8d-9b18-bd6b7eceb8e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E5CF4983D72646B2B3DC5C841179CFC6 Ref B: MNZ221060608037 Ref C: 2025-06-02T21:51:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:15 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNzAwLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11826,Microsoft.Compute/GetVMImageFromLocation30Min;72626" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3370bc62-572c-4e62-8cfa-671cd92fd278" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/75aa7984-1214-4964-a247-3e458d0b91df" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f5e687e0-907a-4a12-97bf-c6a18f13d142" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215321Z:f5e687e0-907a-4a12-97bf-c6a18f13d142" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 063A0752AC9D45499728AEE59A784F2A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:20 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTAwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fe3359a7-566a-4cfe-a28d-deb059790311" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12556,Microsoft.Compute/GetVMImageFromLocation30Min;73553" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "beba7f84-e9bc-4ce5-bae6-0530aeba2ae7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2c4b42f7-9d6a-40bd-b3d0-63f7545a3029" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "cb70be9a-e2df-4f60-b746-179a7a386857" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215115Z:cb70be9a-e2df-4f60-b746-179a7a386857" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FCFD13AF98A649AA96F477B8DC593D34 Ref B: MNZ221060608037 Ref C: 2025-06-02T21:51:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:15 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTAwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11825,Microsoft.Compute/GetVMImageFromLocation30Min;72625" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8886bd88-cde2-4775-97e4-5155abccbc80" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0f52d52b-5917-4919-8495-20b5ce601e14" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "b1bf6cb3-6df2-4be5-bed0-221161af8a8b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215321Z:b1bf6cb3-6df2-4be5-bed0-221161af8a8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8641C6285C4F410EB2239B1F2EA29BDB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:20 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yODQ5LjI0MTEwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3da9ed49-e0d7-46f5-90fa-5f738b6192d9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12555,Microsoft.Compute/GetVMImageFromLocation30Min;73552" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5c0c9f18-ddf1-4d06-b9b7-c028332cec3e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cc485cc8-24a9-426c-959c-c2c849c375c4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "855e74dc-d092-4252-a6d2-143ea655136c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215115Z:855e74dc-d092-4252-a6d2-143ea655136c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D49CD9EB1E594D75A34F46DB15B8CABE Ref B: MNZ221060610049 Ref C: 2025-06-02T21:51:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:15 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yODQ5LjI0MTEwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11824,Microsoft.Compute/GetVMImageFromLocation30Min;72624" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a2e43fbc-be29-45b6-8d9c-5cbd652a28de" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/84b07363-0f86-4b4b-972f-9aeb526b28b1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "01f8062a-ebe2-423a-98d0-57b344528f29" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215321Z:01f8062a-ebe2-423a-98d0-57b344528f29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 142F24E5176B4DB6AECB5710F3D58A65 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:20 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yOTY2LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6cfa1628-3141-444b-831d-1bd026a38a38" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12554,Microsoft.Compute/GetVMImageFromLocation30Min;73551" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9737a08c-99a6-454a-9729-ed25f807f197" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ce507bd5-2b2b-4f64-8425-e2fe4a9fbc1d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "64ba98dc-f7d2-47ca-9bd8-79afcb97c21e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215115Z:64ba98dc-f7d2-47ca-9bd8-79afcb97c21e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E0AC587522F8439CA8B42703D35F5665 Ref B: MNZ221060610045 Ref C: 2025-06-02T21:51:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:14 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4yOTY2LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11823,Microsoft.Compute/GetVMImageFromLocation30Min;72623" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "66462f25-d894-43c2-980c-04fc3acfc25d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9fff6298-9303-4c82-930b-52a0cc0b7cf8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "a38516c7-caea-477d-ad72-90e63252a1c3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215321Z:a38516c7-caea-477d-ad72-90e63252a1c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 408EE4E1E3AE451E8525E4C1D1DA20E8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:20 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "958565b7-20a3-48a6-b635-bceb93273407" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12553,Microsoft.Compute/GetVMImageFromLocation30Min;73550" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7adf0c95-0066-472e-8e69-9b4f1e0573ea" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f1c076ff-9dfd-4aec-a99c-59c5cf7f8b7b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "75c27a85-ebab-438b-bc9a-87b59e096443" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215116Z:75c27a85-ebab-438b-bc9a-87b59e096443" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3352FA1D0C9A4C56B1DFA1676F2F9C2A Ref B: MNZ221060610025 Ref C: 2025-06-02T21:51:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:15 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11822,Microsoft.Compute/GetVMImageFromLocation30Min;72622" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "55081927-5a6a-4b5e-8cce-1779c7ab4fef" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bb324eb9-711d-40e6-95d5-432c24e3b25e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "9f7e4b11-ba40-4275-bdbd-65a45dfa5085" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215321Z:9f7e4b11-ba40-4275-bdbd-65a45dfa5085" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC7B32D96E2A451993940ED219F7D160 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:20 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4zMjA3LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6027ebfa-2c92-4849-b5a6-61d0e12a8c27" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12552,Microsoft.Compute/GetVMImageFromLocation30Min;73549" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5760fff5-9f0c-4807-8264-b6a91df23e4d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/50a67c6e-efc6-4c48-b100-45ce364ef76a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f4df32a8-d012-445e-9b6c-5091bc63aa49" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215116Z:f4df32a8-d012-445e-9b6c-5091bc63aa49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BF8E6217F8F4494DB51DAF2DAFDE764E Ref B: MNZ221060619021 Ref C: 2025-06-02T21:51:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:15 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4zMjA3LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11821,Microsoft.Compute/GetVMImageFromLocation30Min;72621" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d5e50bc5-10b4-42fa-973c-447feb1205e5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9788b85c-d177-4d0a-9ed5-5778a99a0848" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d97983bd-f3c6-440e-9d9d-1d12ec556356" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215321Z:d97983bd-f3c6-440e-9d9d-1d12ec556356" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 150FA1D8B729436DB7AF218043F01B61 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:20 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4zMzI4LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ac396102-69f6-48ba-8590-31593f493778" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12551,Microsoft.Compute/GetVMImageFromLocation30Min;73548" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "58841e0f-c222-4a88-bf58-328c0d38d38b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/561238e5-f431-4484-b7b2-da197f519c7d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a1cb5ed9-a880-430d-967b-ea264cda1d43" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215116Z:a1cb5ed9-a880-430d-967b-ea264cda1d43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 54AAA159DA644677B5EC7DA76DEE6A5D Ref B: MNZ221060610047 Ref C: 2025-06-02T21:51:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:15 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4zMzI4LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11820,Microsoft.Compute/GetVMImageFromLocation30Min;72620" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1c31acef-d7f2-4dd8-b5d5-f983872da84f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5b76d881-1a47-4d08-90f5-e819a0a9eddf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c81fdc96-eccf-4ed4-8b5f-4272baaed0c6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215321Z:c81fdc96-eccf-4ed4-8b5f-4272baaed0c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2E4B050326AB4EBC96BAC3BCB88A51C4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:20 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4zNTYxLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7ba2a58c-1ce2-4ba8-a240-cb7e20400cf7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12550,Microsoft.Compute/GetVMImageFromLocation30Min;73547" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ee911e79-0b7b-425c-8737-8910cafba4b7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b7f1a024-8e8d-4c96-870f-ced100f1ebfc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "45212d68-1330-4d91-b86f-274c493577c8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215116Z:45212d68-1330-4d91-b86f-274c493577c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D62CF8CBDCC4422E8725C4B50B3D7239 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:51:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:16 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4zNTYxLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11819,Microsoft.Compute/GetVMImageFromLocation30Min;72619" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a44d0837-1fff-4b23-8372-13eb18731ad7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2f5a6eaf-f324-4980-89bd-7a5d826fcfe7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "1f8807c1-597f-46e7-9ac1-fab411d7e4db" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215321Z:1f8807c1-597f-46e7-9ac1-fab411d7e4db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 72E73B6881D84FFBA0FC0B4A4CDF232A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:21 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4zNjkyLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "afc6d0b0-b2fc-4e8b-8cb6-0769de9f8b03" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12549,Microsoft.Compute/GetVMImageFromLocation30Min;73546" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c93dd02b-911f-4c4c-b677-f74c87c71b7e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/36e12673-24c9-4135-96e1-429ea684a97d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "951ebf40-16a8-4b90-bb93-802b2eac575b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215116Z:951ebf40-16a8-4b90-bb93-802b2eac575b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0E6A59F4B2164AC6A11BCEA1E6E9A093 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:51:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:15 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4zNjkyLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11818,Microsoft.Compute/GetVMImageFromLocation30Min;72618" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "de269eb0-ea60-4c00-bd98-0d2f811f039d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8a0ad014-f459-46b6-92ec-946b353d9a5b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "90fa6ade-3809-4ef5-9277-f75d8a2d3f02" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215322Z:90fa6ade-3809-4ef5-9277-f75d8a2d3f02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6C61C4A207904EE49057058954F569F8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:21 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4zNjk1LjI1MDUyMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3591a04c-ac1a-4d16-8c02-fe40dd133727" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12548,Microsoft.Compute/GetVMImageFromLocation30Min;73545" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6d1d2d20-8d2c-4ce2-b982-57081910e97f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/24206fc4-2368-4a3b-862a-809d51cc9758" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "acc99e1c-f20e-4ccc-9bda-39ded71e56f6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215116Z:acc99e1c-f20e-4ccc-9bda-39ded71e56f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 816FA59420764020B2D8322275BDE44F Ref B: MNZ221060608031 Ref C: 2025-06-02T21:51:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:16 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yMDM0OC4zNjk1LjI1MDUyMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11817,Microsoft.Compute/GetVMImageFromLocation30Min;72617" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e6b3ce32-9be8-48e0-aaea-6daffaffd5e3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/35358f16-c4ba-4183-8ed6-e4132f97d10f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "22a36bce-c69b-4ac2-b33d-3daa497f8b41" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215322Z:22a36bce-c69b-4ac2-b33d-3daa497f8b41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8D57708F00484BC18AF3B5782B6485B3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:21 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "676c8fb0-a64c-42d9-ac7d-fd7ea51776e1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15949,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43943" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f53ceb36-a33f-4af5-b21f-283e43ba53b9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1ca0f1f2-68a4-4f9a-9a23-14a7eec8d234" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8154f36e-839f-449e-851c-f65142c2707b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215116Z:8154f36e-839f-449e-851c-f65142c2707b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7C17B5F2B52E48ECA626315F8802D3E4 Ref B: MNZ221060619037 Ref C: 2025-06-02T21:51:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:16 GMT" + ], + "Content-Length": [ + "5871" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2227.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2227.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2227.240301\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2402.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2402.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2655.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2762.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2762.241204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3091.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3091.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3562.250404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3562.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15875,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43842" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b669c820-fd89-4d38-8546-b398b0e817b7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/54f0a381-aac9-4c34-9f35-80cfc3a7d300" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "63bcf551-bc0a-4333-aa8b-9e658d7379af" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215322Z:63bcf551-bc0a-4333-aa8b-9e658d7379af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FED4BC5E7D2C479AAD7170055D15700F Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:21 GMT" + ], + "Content-Length": [ + "5871" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2227.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2227.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2227.240301\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2402.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2402.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2655.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2762.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2762.241204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3091.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3091.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3562.250404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3562.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2227.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjIyMjcuMjQwMTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2b377a59-58e5-4e8c-bc21-6624a3baac92" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12547,Microsoft.Compute/GetVMImageFromLocation30Min;73544" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "74b989e8-681b-46f6-ad94-87adba51a9cd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4ca1acdf-382f-40ce-8add-b3f2f01ac5d2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e90ee8b1-49c1-4f51-a3b4-d4300e85604b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215116Z:e90ee8b1-49c1-4f51-a3b4-d4300e85604b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C51610020537491690687B159C95686E Ref B: MNZ221060610053 Ref C: 2025-06-02T21:51:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:16 GMT" + ], + "Content-Length": [ + "1281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2227.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2227.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjIyMjcuMjQwMTA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11816,Microsoft.Compute/GetVMImageFromLocation30Min;72616" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9ed2711b-093c-413c-961a-0b69db2a86cf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/badccc9c-1d15-4cf8-86dc-b1511c9c36e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "43cedbeb-8a0b-4a1a-b5c9-158afd21d8d7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215322Z:43cedbeb-8a0b-4a1a-b5c9-158afd21d8d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 30AB5EE14922462C95E4738DDC555C46 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:21 GMT" + ], + "Content-Length": [ + "1281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2227.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2227.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjIyMjcuMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bbe7dd71-c8e2-4eb5-a129-6fb181b82c64" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12546,Microsoft.Compute/GetVMImageFromLocation30Min;73543" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ddc9d44b-cbfe-4608-86ad-35c3ac3ebdc9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bf9b955e-1d85-446b-a650-152b2555eb56" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "14dc6fbe-422b-40b8-ae7f-e3440323176c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215117Z:14dc6fbe-422b-40b8-ae7f-e3440323176c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C88293B6D9364DC2A73890370CD36347 Ref B: MNZ221060609017 Ref C: 2025-06-02T21:51:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:16 GMT" + ], + "Content-Length": [ + "1281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2227.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2227.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjIyMjcuMjQwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11815,Microsoft.Compute/GetVMImageFromLocation30Min;72615" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7b41bb6b-5928-4a45-bde9-acdf6ededd4c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/47f6adc6-c607-4a8c-801c-646ce93f67ae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5183e933-fa50-4085-ac07-ca4f0ae478c9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215322Z:5183e933-fa50-4085-ac07-ca4f0ae478c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD79775CCB164C6FB4DDC08DBD067C9E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:21 GMT" + ], + "Content-Length": [ + "1281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2227.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2227.240301?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjIyMjcuMjQwMzAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4706d78a-58cf-450b-8562-078deeb48409" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12545,Microsoft.Compute/GetVMImageFromLocation30Min;73542" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "31fb5a99-5f40-46f2-9dd0-bf8895b18a2c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fffc080f-1670-411c-887c-3c470c54dd4d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7b6dd467-885c-45e7-9135-1fbc5f7e7c0e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215117Z:7b6dd467-885c-45e7-9135-1fbc5f7e7c0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 02FC96CABD7B471FBF0B9BE30AC631BF Ref B: MNZ221060618047 Ref C: 2025-06-02T21:51:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:17 GMT" + ], + "Content-Length": [ + "1281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-27T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2227.240301\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2227.240301?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjIyMjcuMjQwMzAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11814,Microsoft.Compute/GetVMImageFromLocation30Min;72614" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3a05b6ef-e08d-4f50-a014-ff141a6b7051" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/82e7fc15-46ee-4870-bcf7-20263697699a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "734afa9f-b1c8-4668-9ef5-14db5feae722" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215322Z:734afa9f-b1c8-4668-9ef5-14db5feae722" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 71946204C88A4547A9DE48A842D3813E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:22 GMT" + ], + "Content-Length": [ + "1281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-27T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2227.240301\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI0MDIuMjQwNDA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fc0e602f-6650-453c-9478-922028acf8a9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12544,Microsoft.Compute/GetVMImageFromLocation30Min;73541" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eb05ca5d-4308-411b-8b44-55995d147b20" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b3cc3b53-31b2-4d76-a637-ef1241c0bc12" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "98100f3f-b759-4613-ae55-ba825a338db8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215117Z:98100f3f-b759-4613-ae55-ba825a338db8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A812911177E743A08958934ADC8AEB10 Ref B: MNZ221060608047 Ref C: 2025-06-02T21:51:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:16 GMT" + ], + "Content-Length": [ + "1281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI0MDIuMjQwNDA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11813,Microsoft.Compute/GetVMImageFromLocation30Min;72613" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "15e46f13-5616-4120-a690-86e6709e541c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a92a3b2e-7204-43e9-acfb-ac38a1ee1fb5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "b190abef-8d7c-4d6b-a8e1-cf08e357e3ac" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215322Z:b190abef-8d7c-4d6b-a8e1-cf08e357e3ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3E1FCE877F76424EBBEE4DD7ECC17EFA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:22 GMT" + ], + "Content-Length": [ + "1281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2402.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI0MDIuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d030365e-934b-4911-a659-d6267c88a6ee" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12543,Microsoft.Compute/GetVMImageFromLocation30Min;73540" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b6be80bd-a240-44f6-9c07-cd774f122db3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/60db325c-01a3-49f8-b2a9-6481e638eff6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "49bca69e-0c42-4875-a361-f91d117aec18" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215117Z:49bca69e-0c42-4875-a361-f91d117aec18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0D4F8EDC875746B1930F6F5C9662C0F0 Ref B: MNZ221060608031 Ref C: 2025-06-02T21:51:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:17 GMT" + ], + "Content-Length": [ + "1200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2402.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2402.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI0MDIuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11812,Microsoft.Compute/GetVMImageFromLocation30Min;72612" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ab1c36fd-094c-4ae5-8478-4e7ae034aa6c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/57817a95-f4c9-46ec-98d4-5ed3b31901dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ec9389c7-7c03-44a1-bd57-f105a53a5fce" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215323Z:ec9389c7-7c03-44a1-bd57-f105a53a5fce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5D5849992D22404E80DA3669EC83081E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:22 GMT" + ], + "Content-Length": [ + "1200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2402.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2402.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI0MDIuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "06962aec-20a5-41e0-b372-778e5426a9f5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12542,Microsoft.Compute/GetVMImageFromLocation30Min;73539" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "990b5bc6-75a8-42d1-a901-5f1c3b5aa6af" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ab511d30-3d5c-4af4-bba0-e6edeef2d83e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "643f35fa-66be-4dbc-95e0-b6e4a5e16a4e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215117Z:643f35fa-66be-4dbc-95e0-b6e4a5e16a4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BC75D097EDB144468D90382590B77139 Ref B: MNZ221060608039 Ref C: 2025-06-02T21:51:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:17 GMT" + ], + "Content-Length": [ + "1200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2402.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2402.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI0MDIuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11811,Microsoft.Compute/GetVMImageFromLocation30Min;72611" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "dc530e01-d620-45cb-b0ea-149e0740cd14" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ed0c179e-aa18-4b93-b90a-93807234adb7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "7f8da3dc-93ae-4edf-b665-62a872f9f02a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215323Z:7f8da3dc-93ae-4edf-b665-62a872f9f02a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC1A134575834E89B96CCC64A3300B33 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:22 GMT" + ], + "Content-Length": [ + "1200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2402.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI1ODIuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ad5e0231-46b4-441d-b39b-9a11396424e5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12541,Microsoft.Compute/GetVMImageFromLocation30Min;73538" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f9ca669c-a009-4fbf-8d14-0efe989194d5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f82a5a46-f940-48da-8752-eb85bff36053" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4bf54a7f-772f-48d6-9df3-9dbf28be991b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215117Z:4bf54a7f-772f-48d6-9df3-9dbf28be991b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A76D8E3482E24CA38664DD100B0CA580 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:51:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:17 GMT" + ], + "Content-Length": [ + "1200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI1ODIuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11810,Microsoft.Compute/GetVMImageFromLocation30Min;72610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "12dd0ce1-c831-41f0-9407-c4b126c48c5d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4134fc91-0975-4b0d-9036-af2e1d10acb0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4a9064f4-10df-4c69-9891-98f1aa60929e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215323Z:4a9064f4-10df-4c69-9891-98f1aa60929e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6D2C06EC0E864A9D9756A558A42AF2C7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:22 GMT" + ], + "Content-Length": [ + "1200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI2NTUuMjQwODEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "03561294-7de6-4d3a-b86f-14c5d1018676" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12540,Microsoft.Compute/GetVMImageFromLocation30Min;73537" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "288df988-8fa8-490d-bdbc-9b25bce747c8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9b48c518-462d-4e07-8110-84474e7360f3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b9e1cd16-fc91-497b-858e-c13bbf429791" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215117Z:b9e1cd16-fc91-497b-858e-c13bbf429791" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 372785469C384CD99F359144CA7D98EC Ref B: MNZ221060609019 Ref C: 2025-06-02T21:51:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:17 GMT" + ], + "Content-Length": [ + "1200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI2NTUuMjQwODEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11809,Microsoft.Compute/GetVMImageFromLocation30Min;72609" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "52b8dce8-b335-45f8-b0de-93c43a1b01dd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8e3a9110-6e55-486a-9903-86870d28c329" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "556bc204-8963-4a89-9c7d-25cfd1a215ea" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215323Z:556bc204-8963-4a89-9c7d-25cfd1a215ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD0C0DD616C14C7A9F984B79C2D1564B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:22 GMT" + ], + "Content-Length": [ + "1200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2655.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI2NTUuMjQwOTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "554682f0-dcca-4638-9949-765ed9018496" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12539,Microsoft.Compute/GetVMImageFromLocation30Min;73536" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f4f288d7-0b63-44f3-b949-94b9fced9078" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a57d2519-65a4-4927-998d-685c67d26ba4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1fd20c4c-4578-4809-9a81-fe0eaa1dd8a8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215118Z:1fd20c4c-4578-4809-9a81-fe0eaa1dd8a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 85D74EB8AC4E43F0A5EE28B5A83ADD1F Ref B: MNZ221060609031 Ref C: 2025-06-02T21:51:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:17 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2655.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2655.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI2NTUuMjQwOTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11808,Microsoft.Compute/GetVMImageFromLocation30Min;72608" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bbf10407-db38-431a-a53d-90bb9cb996de" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7ec9340f-1a07-4fb4-b3de-04b30c2ca28a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "591dbeaf-add6-4685-b3a6-f376b89f1186" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215323Z:591dbeaf-add6-4685-b3a6-f376b89f1186" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DA433841D6154ACC945DF75D0068BCE1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:22 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2655.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI3NjIuMjQxMDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1cbc42ef-357f-4234-918e-f50be8686a8d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12538,Microsoft.Compute/GetVMImageFromLocation30Min;73535" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8d6a07b6-734f-4a55-8bc2-839818c2fdf3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6746442e-fb39-4ecf-b77d-dc0a05d9977d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fd4c1bc6-8808-4951-9cfe-03f83df0e06a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215118Z:fd4c1bc6-8808-4951-9cfe-03f83df0e06a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C5AF84BC13747E2AE3B7BBA36F16BEE Ref B: MNZ221060619047 Ref C: 2025-06-02T21:51:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:18 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI3NjIuMjQxMDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11807,Microsoft.Compute/GetVMImageFromLocation30Min;72607" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "34ac12a1-31eb-4c6a-a134-ada742021d76" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c0f45793-f293-4e3b-8279-929a4adf2bb1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "72e0822e-854d-48e0-8307-099ccd07abd5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215323Z:72e0822e-854d-48e0-8307-099ccd07abd5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E349C6EABD1741C48B74B0E5C59639AC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:22 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2762.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI3NjIuMjQxMTAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dc79cbf8-9ac9-4464-b68e-fe1233e79e53" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12537,Microsoft.Compute/GetVMImageFromLocation30Min;73534" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "89968cdf-35f1-4d2d-ad2e-eca54fedab9b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1d1a9ee8-2d33-461e-b57a-534ae5bdefe6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "12d20c69-b31a-4043-b255-ce856d4655fe" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215118Z:12d20c69-b31a-4043-b255-ce856d4655fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 622E3401C9B94A918E374B58816C04F1 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:51:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:17 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2762.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2762.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI3NjIuMjQxMTAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11806,Microsoft.Compute/GetVMImageFromLocation30Min;72606" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0ea683da-f054-4ef2-8c00-5e6039cb335e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/41bba720-f74d-481f-a7d6-b8b1daf7ef1a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6b7f895d-0da4-4162-b49f-2490a10db046" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215323Z:6b7f895d-0da4-4162-b49f-2490a10db046" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD829ADEEEE348AB873DE6ED8D5A84B0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:22 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2762.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2762.241204?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI3NjIuMjQxMjA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8bdd1220-da13-440d-9bab-a94b5b35ed65" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12536,Microsoft.Compute/GetVMImageFromLocation30Min;73533" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "40b835c7-fb1f-4e27-b77d-99264550be2b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/516db3a8-4b31-44e2-8e58-d6ddd5eaf840" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "da4d7a5c-84ad-43fb-bde8-4276087256ad" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215118Z:da4d7a5c-84ad-43fb-bde8-4276087256ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E66898BC5C1B4880BC0F6A53574904AD Ref B: MNZ221060609035 Ref C: 2025-06-02T21:51:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:18 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2762.241204\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.2762.241204?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjI3NjIuMjQxMjA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11805,Microsoft.Compute/GetVMImageFromLocation30Min;72605" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c86b790f-31dd-42c0-843b-d67d05da104f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d0fef904-2c3b-42ae-bdb1-53221a05d046" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a974797b-3ff1-4769-8c9d-6bd1f3950674" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215323Z:a974797b-3ff1-4769-8c9d-6bd1f3950674" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 11B54F8FB8A44151942072734E4DC162 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:22 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.2762.241204\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjMwOTEuMjUwMTEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e0ef3a12-beae-4413-b4ad-98f58d46a03c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12535,Microsoft.Compute/GetVMImageFromLocation30Min;73532" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8aeaf36a-2dd9-4448-8640-5dbfd791866b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/03afa5d9-dd77-4989-8a20-d8ca1e8c4f9b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "628b6e28-c825-406e-9e08-d12f4a75f4b1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215118Z:628b6e28-c825-406e-9e08-d12f4a75f4b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 38E988C705BF4B8490FD99855ECFCE0B Ref B: MNZ221060619053 Ref C: 2025-06-02T21:51:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:17 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjMwOTEuMjUwMTEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11804,Microsoft.Compute/GetVMImageFromLocation30Min;72604" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6b743800-3a4b-42d6-8365-17e16439bb8d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bd8760b4-5fb1-4b26-8df9-9cfc3f440bf0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "552d4a0b-938c-4faf-a264-6005c4118a68" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215323Z:552d4a0b-938c-4faf-a264-6005c4118a68" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DB0A14CD77DF4834B7D5530689BAC118 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:22 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.3091.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjMwOTEuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5a960d3b-56ab-4971-b692-d66efe05c31d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12534,Microsoft.Compute/GetVMImageFromLocation30Min;73531" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d3433ff8-2842-4290-9e28-f457b40879e4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0f89996c-ec23-48e9-acd8-80343d86f58a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4fefc5e6-706f-49fa-932a-f5f3cd1853ed" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215118Z:4fefc5e6-706f-49fa-932a-f5f3cd1853ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2997195AB9C4EBFA9DC0186E8C2ABA2 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:51:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:18 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3091.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.3091.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjMwOTEuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11803,Microsoft.Compute/GetVMImageFromLocation30Min;72603" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a5fcd874-9ac7-4675-a658-c2a7a2828f7b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d7a848e8-0495-48ed-a59a-eeb5d8b89e47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "201bfa8e-5175-4153-9483-3b39af0f8f50" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215323Z:201bfa8e-5175-4153-9483-3b39af0f8f50" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D8E5012EE27D4E788C7218120D78EC95 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:22 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3091.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.3091.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjMwOTEuMjUwMzA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "53df4f40-551b-4898-91dc-b8d82ac3c960" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12533,Microsoft.Compute/GetVMImageFromLocation30Min;73530" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "584041db-9c1d-441f-84c2-a0880bd89930" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a06509ac-8eca-4b6c-949f-1fcebb9c8a16" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "61c3ee73-fdce-4b70-903d-c9cf3c1d6af5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215118Z:61c3ee73-fdce-4b70-903d-c9cf3c1d6af5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 98AB077AEF08418C8491C68A60909DF5 Ref B: MNZ221060610051 Ref C: 2025-06-02T21:51:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:18 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3091.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.3091.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjMwOTEuMjUwMzA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11802,Microsoft.Compute/GetVMImageFromLocation30Min;72602" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "504782fe-0f8c-4cb4-92c8-4575b6f43c2f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b068d897-681c-4845-bed8-88239c88f5c3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a6844155-4a27-430c-84eb-a982e337471a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215326Z:a6844155-4a27-430c-84eb-a982e337471a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 16E094BEA1544AD48A638B81F1ACCF18 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:25 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3091.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjM1NjEuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a5dc5642-c593-4ff3-8367-05475ce86cb7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12532,Microsoft.Compute/GetVMImageFromLocation30Min;73529" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ed09dad0-9c79-44ba-875b-8db9885544f3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/400c8279-3d63-4aff-bbeb-dafa289201bd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "62fe98c8-7df3-48d1-bd2f-1e507edbfb9d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215118Z:62fe98c8-7df3-48d1-bd2f-1e507edbfb9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6131BCAEED804ECB83F918234DCA6A0B Ref B: MNZ221060610027 Ref C: 2025-06-02T21:51:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:18 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjM1NjEuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11801,Microsoft.Compute/GetVMImageFromLocation30Min;72601" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "59dad16c-a1f1-4496-8001-622d77e16da8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9579a3b9-3d5d-44da-8ce7-0605daf8b6f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e72d91a8-e020-4a7d-87cf-6785e7956884" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215326Z:e72d91a8-e020-4a7d-87cf-6785e7956884" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2C55142813E8425E8DFFB5F2747CBFC1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:25 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.3562.250404?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjM1NjIuMjUwNDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "90915edb-d34f-49a7-a5c7-bbfa88ff7d9d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12531,Microsoft.Compute/GetVMImageFromLocation30Min;73528" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d11a44b1-55fa-4271-9587-bb9eddde09af" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3b836b8d-6c1d-4748-a6d1-41242feae17e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "33faecc6-9c4f-4e7f-b4d3-39e5fedb901e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215119Z:33faecc6-9c4f-4e7f-b4d3-39e5fedb901e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 71625513DFF94AFFAC8FA6CE67F4424E Ref B: MNZ221060608021 Ref C: 2025-06-02T21:51:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:18 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-27T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3562.250404\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.3562.250404?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjM1NjIuMjUwNDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11800,Microsoft.Compute/GetVMImageFromLocation30Min;72600" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "95fc85c6-7ed8-4082-a5d7-5feafebae07e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/baa16eb1-23de-4c9c-a886-8b739659a609" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "a5188922-daac-416e-8edc-5454ae9a571d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215326Z:a5188922-daac-416e-8edc-5454ae9a571d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 826E0AB4CBBC4E8AA2983BE02584B1DB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:25 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-27T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3562.250404\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.3562.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjM1NjIuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a001556f-69e1-4a31-b38e-5313e01761eb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12530,Microsoft.Compute/GetVMImageFromLocation30Min;73527" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "347ef879-9a30-4c41-a12f-0b006f30cdfb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d5929fd6-3388-4ccd-97bb-75ca5bc895e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cfde2590-e348-458b-ba19-97c601e74ef9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215119Z:cfde2590-e348-458b-ba19-97c601e74ef9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4ADBD72788E64BB4B2FF7800CD7413E0 Ref B: MNZ221060618051 Ref C: 2025-06-02T21:51:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:18 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3562.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core/versions/20348.3562.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzIwMzQ4LjM1NjIuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11799,Microsoft.Compute/GetVMImageFromLocation30Min;72599" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "296c454a-104d-4f16-b4bb-09ea517aecff" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bba036ff-d0ac-47ae-a6b3-43802c188153" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6a15a422-85a1-407c-8e83-3da519afb3ea" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215326Z:6a15a422-85a1-407c-8e83-3da519afb3ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 334D03E84127426F9AD5D59FB1392A86 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:25 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core/Versions/20348.3562.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "061f53f0-d78a-4cd3-8328-fbb20fd57018" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15948,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43942" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4a99446b-c522-4e3e-acf5-4072356c2cc8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b2263005-0ebb-472e-bc2c-1b0c4f198919" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f06a5f7b-a280-48ea-bec2-592a03ed4048" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215119Z:f06a5f7b-a280-48ea-bec2-592a03ed4048" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BEC07963D6084F43AE33A52E6B0DF136 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:51:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:18 GMT" + ], + "Content-Length": [ + "6051" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2227.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2227.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2227.240301\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2402.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2402.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2655.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2762.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2762.241204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3091.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3091.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3562.250404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3562.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15874,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43841" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "182bc74f-ed5a-46bd-972a-ec4fde57dc87" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/737a3f22-3324-4b2b-bb05-e7024f78876d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "428ce937-9d97-4578-b708-17f61ea2b8f1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215326Z:428ce937-9d97-4578-b708-17f61ea2b8f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C6953614D9434D1593E7623A383FA5CD Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:26 GMT" + ], + "Content-Length": [ + "6051" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2227.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2227.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2227.240301\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2402.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2402.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2655.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2762.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2762.241204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3091.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3091.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3562.250404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3562.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2227.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yMjI3LjI0MDEwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2a8d1581-0271-41d9-92fd-b8b79422850e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12529,Microsoft.Compute/GetVMImageFromLocation30Min;73526" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b3499abd-f695-4e96-8b26-32418098fc9d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d7578162-6281-45e9-9533-0f539e08ff39" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e649d0bb-9091-43fa-ba71-af29c6e86c03" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215119Z:e649d0bb-9091-43fa-ba71-af29c6e86c03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CED0674DD03B424B8CBD31FDFF8BB5E4 Ref B: MNZ221060618039 Ref C: 2025-06-02T21:51:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:19 GMT" + ], + "Content-Length": [ + "1290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2227.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2227.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yMjI3LjI0MDEwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11798,Microsoft.Compute/GetVMImageFromLocation30Min;72598" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b95b81e6-a4a5-4999-ad8f-4aee2c87052a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/800a9a64-6cd6-4294-9502-201084ae1099" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "7832682d-7560-48a2-ae9d-6eacc28bfe3a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215326Z:7832682d-7560-48a2-ae9d-6eacc28bfe3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E2EDDF523322444F8F79906BB0D5DF0A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:25 GMT" + ], + "Content-Length": [ + "1290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2227.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2227.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yMjI3LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "230496a9-33b0-488a-b9c1-2b68978d0875" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12528,Microsoft.Compute/GetVMImageFromLocation30Min;73525" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0ef17bd3-e87a-440a-90b3-352c4aa221d7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7ee03a18-4d87-4ffe-8223-a119ff9087a8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6c5e961b-5812-4db8-9420-028e612aae2c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215119Z:6c5e961b-5812-4db8-9420-028e612aae2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3294ECA0C86044B08C7A6F4ABA0F418A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:51:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:19 GMT" + ], + "Content-Length": [ + "1290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2227.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2227.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yMjI3LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11797,Microsoft.Compute/GetVMImageFromLocation30Min;72597" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b1c03f6e-4009-42f3-b8b3-a37278e894ee" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c2d764a4-ea67-4d60-835c-7ed95ee731be" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d94517cf-c487-481d-bee1-bd198fbe68cd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215326Z:d94517cf-c487-481d-bee1-bd198fbe68cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F9FDAE372EEF4673A8FE31C18E4A39AD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:26 GMT" + ], + "Content-Length": [ + "1290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2227.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2227.240301?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yMjI3LjI0MDMwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "64f342ab-11bc-4ef5-9b98-7eca083403d8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12527,Microsoft.Compute/GetVMImageFromLocation30Min;73524" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "22eeb8c4-cd34-41f1-8fa4-f16369f6e8b9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/62a900dc-a0ab-492d-819b-c4e8a6b044bd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "96b33cd3-07da-4804-b410-217dac75430f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215119Z:96b33cd3-07da-4804-b410-217dac75430f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6E98ECD187EC47E1B997347CA7D8B89D Ref B: MNZ221060610049 Ref C: 2025-06-02T21:51:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:19 GMT" + ], + "Content-Length": [ + "1290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-27T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2227.240301\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2227.240301?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yMjI3LjI0MDMwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11796,Microsoft.Compute/GetVMImageFromLocation30Min;72596" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3cbd75f0-d82d-430a-8c28-cd8914059c2c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5a1cec76-5746-4c7b-b9ce-d67e9ad308fa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "7ca4fa41-2cac-402d-a194-ac473d1e69a0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215326Z:7ca4fa41-2cac-402d-a194-ac473d1e69a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9D19BA68A19A427F80EF1A1E33A5C608 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:26 GMT" + ], + "Content-Length": [ + "1290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-27T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2227.240301\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDQwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1b9655ef-223c-46c6-b043-ba4d1d215cc0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12526,Microsoft.Compute/GetVMImageFromLocation30Min;73523" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ad5f084c-9f3c-4aa7-b57d-62b6f33bd723" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/49650a99-5ffe-427b-aea0-d66e148454b1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c7e30924-7208-445c-84db-96aafa7d83a4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215120Z:c7e30924-7208-445c-84db-96aafa7d83a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 706CF6CF3EAA4EA58D15141D74EEED7F Ref B: MNZ221060610021 Ref C: 2025-06-02T21:51:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:19 GMT" + ], + "Content-Length": [ + "1290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDQwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11795,Microsoft.Compute/GetVMImageFromLocation30Min;72595" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c0a0309a-c498-4304-bfa3-1e15b656b2fe" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d0e33dbe-ee8c-4bd6-a482-09149c6fd6f6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "ec0b9765-42c9-4e0f-9c06-0ffc9bd72a67" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215326Z:ec0b9765-42c9-4e0f-9c06-0ffc9bd72a67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1EE9778E2FFB4A5E805A976D4A9EFD76 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:26 GMT" + ], + "Content-Length": [ + "1290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2402.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1a1b1115-9348-4d22-add6-fd24ad80205f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12525,Microsoft.Compute/GetVMImageFromLocation30Min;73522" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "381497c3-7cc1-472e-94fb-a56c52354dc5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6e290d12-f606-41d2-ac87-9725621599d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "52f96038-1dfd-4474-ae9e-49d365590c9a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215120Z:52f96038-1dfd-4474-ae9e-49d365590c9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B4A875EE2D394ED599FCBA66D9D41265 Ref B: MNZ221060609025 Ref C: 2025-06-02T21:51:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:19 GMT" + ], + "Content-Length": [ + "1209" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2402.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2402.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11794,Microsoft.Compute/GetVMImageFromLocation30Min;72594" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "82193caf-2665-44dc-8878-e319e39df394" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3564a323-f582-41a4-9ec3-ba8430d93135" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "496f43f2-b37c-497d-9e74-05568bf2e655" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215327Z:496f43f2-b37c-497d-9e74-05568bf2e655" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C659B25163F84C44857BF10E868EB613 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:26 GMT" + ], + "Content-Length": [ + "1209" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2402.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2402.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "579b3491-7915-4851-ac46-5d8edacb0de3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12524,Microsoft.Compute/GetVMImageFromLocation30Min;73521" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d763ff6c-8bff-4618-a840-428d241ac37a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/db667aba-a09a-4a42-8b61-09bdb1ab05f2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6698e3aa-3637-4dfb-ae13-caa22a2d54c8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215120Z:6698e3aa-3637-4dfb-ae13-caa22a2d54c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2C32B71D9FD6413D9184D3476B3DBCF3 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:51:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:20 GMT" + ], + "Content-Length": [ + "1209" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2402.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2402.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11793,Microsoft.Compute/GetVMImageFromLocation30Min;72593" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3a02bfd2-7ef2-453d-bea0-8d490936ee57" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e6f74499-a8f1-4339-8137-3979c8c0c3ba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "ee5d1fb5-f109-4c71-9083-c0337ea356d5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215327Z:ee5d1fb5-f109-4c71-9083-c0337ea356d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 77C07408776A482E9977BE2A768E3A8F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:26 GMT" + ], + "Content-Length": [ + "1209" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2402.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNTgyLjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1f542cbf-d446-4e56-8431-220ec54933ef" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12523,Microsoft.Compute/GetVMImageFromLocation30Min;73520" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "313a2bf5-7740-47a4-bff7-e60810b869de" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1c0a4644-90c1-4ecd-8d2d-b464bb3c9108" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "236e9cc1-b06b-4661-91ec-710ad7583dc9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215120Z:236e9cc1-b06b-4661-91ec-710ad7583dc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DCBD74A5A3254D948B923F65B6DF6FFB Ref B: MNZ221060618053 Ref C: 2025-06-02T21:51:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:19 GMT" + ], + "Content-Length": [ + "1209" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNTgyLjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11792,Microsoft.Compute/GetVMImageFromLocation30Min;72592" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "62176671-611a-41c3-85e3-32cc7578d3a8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/94668166-ea31-4145-a7aa-a1d1e7badcd8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "bf826f6d-3ee2-4739-b4f8-95c403176dcc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215327Z:bf826f6d-3ee2-4739-b4f8-95c403176dcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C9BBC4085D3B414C9A40FE5F3E05D9D3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:26 GMT" + ], + "Content-Length": [ + "1209" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "95a34e9d-8d82-418a-b264-7aff713e7752" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12522,Microsoft.Compute/GetVMImageFromLocation30Min;73519" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "78bc7624-c0cf-49c8-9f0b-b1127bc0aaf9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/984a8f61-4ab7-4ea6-99db-ae7e84ac809d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9325b98c-4a6f-4f3f-a3b9-aa64adafaaa8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215120Z:9325b98c-4a6f-4f3f-a3b9-aa64adafaaa8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 18B3EE4480E147BC8E6539D0B1D1BFE3 Ref B: MNZ221060619011 Ref C: 2025-06-02T21:51:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:20 GMT" + ], + "Content-Length": [ + "1209" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11791,Microsoft.Compute/GetVMImageFromLocation30Min;72591" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c403d634-f338-4918-ab82-c9062db086a7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e15231e2-1d69-49c2-9303-76ce6ede38d6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "7ceb7bcc-8932-48d9-95bc-6f8a6cc6a116" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215327Z:7ceb7bcc-8932-48d9-95bc-6f8a6cc6a116" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C4F6B7D869249D99ECF4C2E3377035B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:26 GMT" + ], + "Content-Length": [ + "1209" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2655.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f8d04fcc-9429-487d-94b7-e8d67549559c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12521,Microsoft.Compute/GetVMImageFromLocation30Min;73518" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e189e8dd-b121-4098-b808-4cb31876dfad" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8c5420d0-faae-4aac-90b1-7869656754c2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "25151027-27e0-438d-924d-dedfb08dfcd3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215120Z:25151027-27e0-438d-924d-dedfb08dfcd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B139478F60B4A9C945C7DEAB446D8DA Ref B: MNZ221060610033 Ref C: 2025-06-02T21:51:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:20 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2655.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2655.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11790,Microsoft.Compute/GetVMImageFromLocation30Min;72590" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c68124ce-1b46-4b1b-bf1d-29f24fe00ab8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a69886c5-d647-4a94-b605-d4d88bc4e095" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6bafa424-3021-4231-a238-2e01023608d2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215327Z:6bafa424-3021-4231-a238-2e01023608d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6D9EE1338E604ED792FDDA08FDB11CBC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:26 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2655.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTAwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cf9bd2ef-bae6-4711-aba4-b8384ae2e38a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12520,Microsoft.Compute/GetVMImageFromLocation30Min;73517" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "470c15ff-0a7a-4515-960b-577a86c4d344" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/eb7d96d3-7f56-423d-beb5-49040b56d213" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "44542946-8e0d-4269-b3f6-49d67e435d84" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215121Z:44542946-8e0d-4269-b3f6-49d67e435d84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 460C0670893040EDBA5CBE4A6CCBE326 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:51:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:20 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTAwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11789,Microsoft.Compute/GetVMImageFromLocation30Min;72589" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "069a2c67-2dab-4a78-bb53-3daad98555ce" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f9df849b-fc57-476a-b35d-2f08fe3d9a9d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "1aef44be-a662-49fb-bdd5-e5b63ea8e32e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215327Z:1aef44be-a662-49fb-bdd5-e5b63ea8e32e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6AF518C681D84E17BDC0344DF3FE25B0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:26 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2762.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTEwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d7d368f0-0451-41fa-898e-df50c4241d51" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12519,Microsoft.Compute/GetVMImageFromLocation30Min;73516" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fb2f0af3-07ef-4ceb-8d28-ee7a3465baae" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/41bfdcf3-4719-4258-ad6f-3c1ddbd86061" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a1b1d4df-5e7f-47e6-b107-618a5de0d81f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215121Z:a1b1d4df-5e7f-47e6-b107-618a5de0d81f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 78BF0EA49DAD43F08110D0579481C920 Ref B: MNZ221060619049 Ref C: 2025-06-02T21:51:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:20 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2762.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2762.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTEwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11788,Microsoft.Compute/GetVMImageFromLocation30Min;72588" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e3ac4ea4-9f37-482e-bfb4-b94649a7aa97" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/efd1b189-ab96-4e6a-a239-13fba72b1990" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8c84409e-541c-4bcc-a870-ba30a35d3067" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215327Z:8c84409e-541c-4bcc-a870-ba30a35d3067" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9E4E3771DB5E4D83A8C90ED43A61A239 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:26 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2762.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2762.241204?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTIwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "56451246-2bc2-47e9-8b0d-346eba044825" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12518,Microsoft.Compute/GetVMImageFromLocation30Min;73515" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2c51a853-3853-4e6f-ac5b-6b67694441f8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/750e56ce-5608-45c8-a0ad-d9801cd25569" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1a46b20a-39a5-4b2a-b371-67c8c0fb7d94" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215121Z:1a46b20a-39a5-4b2a-b371-67c8c0fb7d94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FF620F17105A46E7927F2A6DD43C5C72 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:51:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:20 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2762.241204\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.2762.241204?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTIwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11787,Microsoft.Compute/GetVMImageFromLocation30Min;72587" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d29ac402-cb69-42d0-b808-ac4a9bb92fda" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/638aedd7-d7da-42cb-b60e-440d5361d07e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "d2b624be-0bbb-4746-b46c-23d5aedbea30" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215327Z:d2b624be-0bbb-4746-b46c-23d5aedbea30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 00E5EDB4450A4C229B1D342BF9CB7A14 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:26 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.2762.241204\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fe456a92-62c9-444c-a5a6-a1375556ec5f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12517,Microsoft.Compute/GetVMImageFromLocation30Min;73514" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ccac430b-c65c-4964-a4a0-611c42a92b2c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d8b99cb1-46be-4cc6-84d5-42ddf4b4a28e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d21a9d6b-b4cb-46b7-a5af-93871193d1f4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215121Z:d21a9d6b-b4cb-46b7-a5af-93871193d1f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 44B58150717A44128A35FF519CA96D7C Ref B: MNZ221060609009 Ref C: 2025-06-02T21:51:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:20 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11786,Microsoft.Compute/GetVMImageFromLocation30Min;72586" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b94fa732-af3c-4ec8-9250-ba12d4883b8e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6d49c204-903b-4f1a-a8d3-9c8284145978" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d0eeb1af-6255-43d7-8cf5-77b99ccba11d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215327Z:d0eeb1af-6255-43d7-8cf5-77b99ccba11d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F2960EC32B964D049EE55A9661AA527F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:26 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.3091.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0552b209-aa65-4665-b4e3-718522c1a53f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12516,Microsoft.Compute/GetVMImageFromLocation30Min;73513" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "84c485a6-51b1-48bf-8a90-8f586f8354a3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6f4dea1a-87ca-451a-a64e-a4ba52609606" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "123923c4-4bb6-4f15-ad1e-41295cad48e2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215121Z:123923c4-4bb6-4f15-ad1e-41295cad48e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41C1F7EAB6434478B5A91598BF9F924C Ref B: MNZ221060619025 Ref C: 2025-06-02T21:51:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:20 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3091.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.3091.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11785,Microsoft.Compute/GetVMImageFromLocation30Min;72585" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "898d4b67-cf4b-4664-8956-445efdf32553" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/18592843-3d63-4b49-8383-a7a3e3a3b792" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "f041545c-25e7-4445-aaaa-89221fae7a3e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215327Z:f041545c-25e7-4445-aaaa-89221fae7a3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7A09BB4AA9A9445DA2238A9CC6E1D6CD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:27 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3091.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.3091.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDMwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5a44956c-513e-43f8-96ad-2143844dcab7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12515,Microsoft.Compute/GetVMImageFromLocation30Min;73512" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ec0a6cb0-e002-42c6-a91d-4112d7fe344b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a7253e42-cca1-4875-be3a-98fdf91a44a3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "46f137af-af0a-439c-9cff-8712f0e21997" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215121Z:46f137af-af0a-439c-9cff-8712f0e21997" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F85C02E6F15C40FB8D161211B1ACAB1B Ref B: MNZ221060608039 Ref C: 2025-06-02T21:51:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:21 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3091.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.3091.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDMwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11784,Microsoft.Compute/GetVMImageFromLocation30Min;72584" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "05b66981-d369-45fd-ad96-c58d53d608cb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/77ab0c8c-49e5-4164-9b34-599b48b0e3c8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "03b6694a-2c79-4bb4-9427-5d065482e4fa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:03b6694a-2c79-4bb4-9427-5d065482e4fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CEB4D8FC9FC84B9493D360E45F81EF45 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:27 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3091.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4zNTYxLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c669e887-875b-4c77-8f96-424f4ced70cd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12514,Microsoft.Compute/GetVMImageFromLocation30Min;73511" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c3c5df1f-127f-4e9e-830e-e098a9bd1d31" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f8c5b25f-f2c6-4c5a-b30e-d716e4753702" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "165bca11-b8d8-409a-b21a-1a20f5603ee1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215121Z:165bca11-b8d8-409a-b21a-1a20f5603ee1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E242F1A7DBC848A2B05178498E803542 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:51:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:21 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4zNTYxLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11783,Microsoft.Compute/GetVMImageFromLocation30Min;72583" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "217c16a6-7932-4442-aa36-86b2a3bcadb9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/569f682d-70dc-4e0c-823c-4858e8a6b9f7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "496b4746-cc3f-42b3-8ccc-d098ac78770d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:496b4746-cc3f-42b3-8ccc-d098ac78770d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 23F9AB91F9E64746AEE0472613FD89BD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:27 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.3562.250404?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4zNTYyLjI1MDQwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "991a1fbc-b7e6-4bd1-9922-48a23bd4e764" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12513,Microsoft.Compute/GetVMImageFromLocation30Min;73510" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "92d1275e-8d2b-4f29-a538-c14b913f4024" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8cc2ed81-8d93-4930-922f-6518544de67b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ee2ed292-dac3-4559-87bd-e7a3a3e0bf49" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215121Z:ee2ed292-dac3-4559-87bd-e7a3a3e0bf49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 29E927C09F814F9DBF7101BD84A7BA97 Ref B: MNZ221060609047 Ref C: 2025-06-02T21:51:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:21 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-27T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3562.250404\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.3562.250404?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4zNTYyLjI1MDQwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11782,Microsoft.Compute/GetVMImageFromLocation30Min;72582" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6b40418c-1706-46e9-963f-d2658762495a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/96572dff-a90f-4732-83a6-d94a1688bf0c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4e965c3b-55a1-43b5-b02e-56a7effaa2f9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:4e965c3b-55a1-43b5-b02e-56a7effaa2f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B0C126C84DDB4BD19FD6BE142DFDC1C7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:27 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-27T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3562.250404\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.3562.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4zNTYyLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "60775169-cae3-4e11-b68e-9bee8c7b0a90" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12512,Microsoft.Compute/GetVMImageFromLocation30Min;73509" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "37736c81-4aaa-4d08-8d92-08e14be2fdef" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5f9a6853-c538-429a-8a26-f162b5cd7252" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6e71811e-6d29-4153-81f5-221649923b0b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215122Z:6e71811e-6d29-4153-81f5-221649923b0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 53E6D020E3DC460EA86A6B22B2E619E1 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:51:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:21 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3562.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-core-smalldisk/versions/20348.3562.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yMDM0OC4zNTYyLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11781,Microsoft.Compute/GetVMImageFromLocation30Min;72581" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f3427494-5b8f-487d-be11-29ed410476b3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8bbb63e0-2f9e-49c8-8d4d-d7940f915450" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "f6ae25e6-9212-4749-8d47-770be296f61b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:f6ae25e6-9212-4749-8d47-770be296f61b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FFE5B40E88524FA18F1F08347D6A46A9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:27 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-core-smalldisk/Versions/20348.3562.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2e9319c0-89d5-4c93-9185-c2600ae2dcf1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15947,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43941" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3fe6876a-0f51-43f0-841d-aa1ceedd5546" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3089184a-df0f-49b2-a6e1-043ba499739a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a7c2872e-1fd6-480c-8db8-2d8fdc74c114" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215122Z:a7c2872e-1fd6-480c-8db8-2d8fdc74c114" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3CE78916DCE6485EAB1363D149FA1826 Ref B: MNZ221060619037 Ref C: 2025-06-02T21:51:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:21 GMT" + ], + "Content-Length": [ + "5943" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2227.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2227.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2227.240301\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2402.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2402.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2655.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2762.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2762.241204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3091.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3091.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3562.250404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3562.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15873,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43840" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fb2ede84-8877-4b13-89f1-9f938a710099" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f444f18d-3e62-45f7-a6cf-e26bba51eca1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bf3c5e70-4423-48a5-a0aa-0e13367d8085" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215328Z:bf3c5e70-4423-48a5-a0aa-0e13367d8085" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DA273F30EFFD4A699FE5AFE3A4B58690 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:27 GMT" + ], + "Content-Length": [ + "5943" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2227.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2227.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2227.240301\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2402.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2402.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2655.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2762.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2762.241204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3091.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3091.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3562.250404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3562.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2227.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yMjI3LjI0MDEwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "172a60b5-48fb-4332-9128-a230bb0d9a95" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12511,Microsoft.Compute/GetVMImageFromLocation30Min;73508" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "539a7c10-41c7-4f09-94d7-192ea90b7b32" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/43ff85a4-0383-441b-bdca-ab7fe7826f17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3b7db59f-654b-49a6-aeca-935552af4a83" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215122Z:3b7db59f-654b-49a6-aeca-935552af4a83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3143DEE1455D4F4A8F1F0415BFD5F430 Ref B: MNZ221060609035 Ref C: 2025-06-02T21:51:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:22 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2227.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2227.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yMjI3LjI0MDEwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11780,Microsoft.Compute/GetVMImageFromLocation30Min;72580" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "aadf0731-84a4-456d-b1b0-82afa72ce381" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e10850e8-d773-43aa-8964-6a27a5209b7b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2a95477f-9a8c-4588-b798-a5d5dc5c7086" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:2a95477f-9a8c-4588-b798-a5d5dc5c7086" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DA1DEE7FC8BB4B50AFA6A7A2C46A6314 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:27 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2227.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2227.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yMjI3LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ee19736d-8063-40b9-9a33-ae0c3bd4798b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12510,Microsoft.Compute/GetVMImageFromLocation30Min;73507" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a9830fe2-15a1-4a3c-9d67-081b0e090278" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0f4211d1-f69d-4349-97f8-1774fe628a9c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b6286191-532d-4220-8695-81de3cbeaf8f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215122Z:b6286191-532d-4220-8695-81de3cbeaf8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 67C5C4E437F644838E79A59E1536F5B4 Ref B: MNZ221060610039 Ref C: 2025-06-02T21:51:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:22 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2227.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2227.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yMjI3LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11779,Microsoft.Compute/GetVMImageFromLocation30Min;72579" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e1a569dc-8542-4d23-ac0d-4e996fbbf98a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/43ef50a8-87e3-4a1f-a94c-aab65d37dd5d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4eaa278a-ca62-4975-82c9-a9184131d8ad" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:4eaa278a-ca62-4975-82c9-a9184131d8ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1CCF4FA48B80424A9A14F1D16679196E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:27 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2227.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2227.240301?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yMjI3LjI0MDMwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2f52a70f-b52a-4d54-9dfd-abce95f46e23" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12509,Microsoft.Compute/GetVMImageFromLocation30Min;73506" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fec9fdfd-4cc0-4604-bf85-cde0f8252435" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7b05a068-498f-4caf-8ba2-1e8283c37910" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "1849fed2-6c02-4f82-8c8f-0843fe29f4fd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215122Z:1849fed2-6c02-4f82-8c8f-0843fe29f4fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E4658A5CA0974FF1BD3302D35A7B2091 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:51:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:22 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-27T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2227.240301\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2227.240301?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yMjI3LjI0MDMwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11778,Microsoft.Compute/GetVMImageFromLocation30Min;72578" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f21fc23a-6abc-4157-b61a-414a31369179" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d5de78ac-b647-4960-8e83-e271e3320b2f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d917214e-2088-4bcc-b3f6-c1e0ceea7cf2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:d917214e-2088-4bcc-b3f6-c1e0ceea7cf2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 779B40AE86CE47AFB59AD118C25B62D7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:27 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-27T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2227.240301\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDQwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "69aef195-388c-4606-b1c4-1aaf01674dbf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12508,Microsoft.Compute/GetVMImageFromLocation30Min;73505" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ff1f047d-9427-4da6-a931-19e544b71794" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/89f1e9de-42be-4f4b-8b30-580b5eb48427" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "25f9c55d-1327-402e-ab9a-50407b79ddf8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215122Z:25f9c55d-1327-402e-ab9a-50407b79ddf8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DC9EC3251994424FA5BEDBD36CFB7055 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:51:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:22 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDQwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11777,Microsoft.Compute/GetVMImageFromLocation30Min;72577" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "64739ebf-c622-4177-8a6d-cc0d76cc29de" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0d716acc-625e-4dc1-b747-a63e68a7d8b9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b4a505d5-9667-4127-a60e-e4b376dbd673" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:b4a505d5-9667-4127-a60e-e4b376dbd673" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CD31528E73954776AD609248C06488F7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:27 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2402.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ea8b34c5-491f-48db-bf21-b3503559f599" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12507,Microsoft.Compute/GetVMImageFromLocation30Min;73504" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "48a7753e-2353-46bd-984b-bd557f3832bb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d6c71d26-b1c3-4855-9f84-55e64d5daafb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a15292e1-ca5b-4bd8-a0ec-f40ca79fabc5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215122Z:a15292e1-ca5b-4bd8-a0ec-f40ca79fabc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8D5AB87A18E9442E8771AF5E6F4DA746 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:51:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:22 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2402.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2402.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11776,Microsoft.Compute/GetVMImageFromLocation30Min;72576" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "80bd0031-3b61-49c2-9a94-b224413cb55f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3a1a6422-1669-4e8a-99d4-39c564bb4ccd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "969d65c2-0153-4535-aa27-e8c34e174a8d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:969d65c2-0153-4535-aa27-e8c34e174a8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D54D2D38B8944A2CA0BA8F22AFA570FE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:27 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2402.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2402.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "590cb59a-1233-4581-9229-22fade03b828" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12506,Microsoft.Compute/GetVMImageFromLocation30Min;73503" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "22e87b1a-d5b9-4a28-85ea-7834364bb005" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5a3e8369-55ab-438a-aeeb-3aeb271f71c7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e88db6b1-db51-4bca-98c3-5a0f12809689" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215122Z:e88db6b1-db51-4bca-98c3-5a0f12809689" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 149A188096E245BD8402C39F785E7486 Ref B: MNZ221060609025 Ref C: 2025-06-02T21:51:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:22 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2402.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2402.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11775,Microsoft.Compute/GetVMImageFromLocation30Min;72575" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "10100947-0487-411f-b7ea-8df01909f777" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/69aa12c4-cc5f-497e-9a0f-c8f3c8259c76" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "757241be-bda4-4f7a-a9e8-6d7db6522b5b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:757241be-bda4-4f7a-a9e8-6d7db6522b5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B5DC1997AA66427BB375782C24FB94C4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:27 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2402.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNTgyLjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2cb9d814-b93d-46b4-802a-f7f758ec4589" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12505,Microsoft.Compute/GetVMImageFromLocation30Min;73502" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ff2ea3e9-95e5-4a45-a357-da789f9eae27" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6d0688b0-89c9-463d-b706-ff94d9a205e5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f3c0e370-0d16-4570-8778-6fb2b8284f3b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215123Z:f3c0e370-0d16-4570-8778-6fb2b8284f3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 93C9EBEDA7704F2782F5A67CC662CC12 Ref B: MNZ221060609025 Ref C: 2025-06-02T21:51:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:22 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNTgyLjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11774,Microsoft.Compute/GetVMImageFromLocation30Min;72574" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5e714125-a0a7-4e02-85da-75a7ad057643" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/168d3aa1-1d30-4d79-b75a-0311113e3fa9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b950103c-a1f4-4d3b-91d9-9b42acec3b65" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:b950103c-a1f4-4d3b-91d9-9b42acec3b65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B99E1C9FFC43493A96012E4F49EE01E1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "18918327-88c8-4d33-bfd1-50889007182f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12504,Microsoft.Compute/GetVMImageFromLocation30Min;73501" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f7c03b97-4c0c-4b93-bb8e-6bcb555ecca3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a086c2cc-8e14-4726-860e-e57977806704" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "ada8ba10-279c-4192-9241-305a8387c414" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215123Z:ada8ba10-279c-4192-9241-305a8387c414" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B66CFD5F9FCC49AD8DA56A4D8EFEF275 Ref B: MNZ221060610025 Ref C: 2025-06-02T21:51:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:22 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11773,Microsoft.Compute/GetVMImageFromLocation30Min;72573" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ee8fdc40-ae55-461e-abf2-f3010cd841c1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b953c44a-aa4d-4c90-9593-27a5e622285f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "de21f193-e150-4a06-9a61-cb791bc14c99" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:de21f193-e150-4a06-9a61-cb791bc14c99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5D942729FF8E454980D51D8DFD8EECBE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2655.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "52bcf45e-d09c-443f-b0ba-1774e41e08d1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12503,Microsoft.Compute/GetVMImageFromLocation30Min;73500" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "542a16da-e12c-4298-b19a-bc5e9eb1e253" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2ba75b96-9739-48bd-b299-722a997b14af" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e4542abd-ecb5-4616-a2c1-c72951346e48" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215123Z:e4542abd-ecb5-4616-a2c1-c72951346e48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D020367BD4754E40B6A18107B26F1840 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:51:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:22 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2655.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2655.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11772,Microsoft.Compute/GetVMImageFromLocation30Min;72572" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bdc0f169-d0b4-4734-a5ee-586f9622740d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3dae8988-877a-4caa-8734-c0af67b262b3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "cd4d8ac6-cc1c-409f-9b61-f4f4182c7c9a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:cd4d8ac6-cc1c-409f-9b61-f4f4182c7c9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FAB8DC224EAE49E7803A471A368F5C3B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2655.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTAwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6bb5891a-cd7f-421a-8d45-4732df38a7d0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12502,Microsoft.Compute/GetVMImageFromLocation30Min;73499" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "23418d90-7ece-499a-9bfc-15f55e3ad80f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2610caf8-1531-4413-8249-0c7e8da716db" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "88f40005-22cd-4fcb-abb3-5000b7bc34ef" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215123Z:88f40005-22cd-4fcb-abb3-5000b7bc34ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3E12DC7E089248DDAAEF7C2A041FD43C Ref B: MNZ221060619053 Ref C: 2025-06-02T21:51:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:22 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTAwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11771,Microsoft.Compute/GetVMImageFromLocation30Min;72571" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5aa1d85e-2666-4d51-b5cb-85adae89a49c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/82dafe46-103e-4126-a8f3-c15b49bf1266" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ae9d505c-b840-4f0e-80c2-ed5fc21ee93c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215328Z:ae9d505c-b840-4f0e-80c2-ed5fc21ee93c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 61C07D2AE9374283825C508F4928AC3E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2762.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTEwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "694279e1-3b23-42b9-889b-7d8f33798760" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12501,Microsoft.Compute/GetVMImageFromLocation30Min;73498" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c1fff25e-359b-4fde-845c-4e95e6c6d87a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/52637043-ad98-4f7b-ad84-846bce57804a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5a6b1b3b-22d0-40cd-be53-a2aae7aa94a1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215123Z:5a6b1b3b-22d0-40cd-be53-a2aae7aa94a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6A14BE5CEC224CC7842B3DF65A46D8F8 Ref B: MNZ221060619045 Ref C: 2025-06-02T21:51:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:23 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2762.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2762.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTEwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11770,Microsoft.Compute/GetVMImageFromLocation30Min;72570" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "586e09b0-5678-4786-8f1d-caaa1d1a84be" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2c472164-acd1-470a-88b1-133fd253f52d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b52b7372-99d9-48d3-8ae4-8a06e4a9b675" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:b52b7372-99d9-48d3-8ae4-8a06e4a9b675" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F2ECE509FCB341108FD36C974CDFCFBA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2762.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2762.241204?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTIwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "68854b74-347f-4f21-8359-02dc6c00737f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12500,Microsoft.Compute/GetVMImageFromLocation30Min;73497" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ce1f4a85-a2a3-453a-b8e4-fcd8c65ab00b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/318a9cf5-dfe2-425e-9b26-edfba5e7a56e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "24fcc98c-e71d-43ad-89c0-f0592df5f32d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215123Z:24fcc98c-e71d-43ad-89c0-f0592df5f32d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4D593BEBC5674DF7B7761EA77A79D207 Ref B: MNZ221060608045 Ref C: 2025-06-02T21:51:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:23 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2762.241204\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.2762.241204?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTIwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11769,Microsoft.Compute/GetVMImageFromLocation30Min;72569" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c9b2d438-284b-4ba6-b715-cbebb9a5324d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4def81c1-443c-4467-8cf8-ddebfabfb214" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2fa1fc10-a571-4d6f-bb46-9df5320d99cd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:2fa1fc10-a571-4d6f-bb46-9df5320d99cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 64AD9B1B34FF465995E439FAFC7920A4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.2762.241204\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5d795dfd-eb29-4d8b-bcae-3ef9f8a567c3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12499,Microsoft.Compute/GetVMImageFromLocation30Min;73496" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6667da3b-8a18-40e5-8317-9672c1c4decf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/143d2dc7-99e1-4f91-8f91-22e96b783a49" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0a34c1b7-3b53-4351-8bd0-5441c0bedd95" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215123Z:0a34c1b7-3b53-4351-8bd0-5441c0bedd95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5250E92AD4A2419FBE5E7842DD07C612 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:51:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:23 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11768,Microsoft.Compute/GetVMImageFromLocation30Min;72568" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e3a87eac-48d1-408a-8d4d-50d26f4ae48d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/26df21a0-e784-4b5c-8580-5aea7ce7a694" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7fc007bd-f549-48ef-a20b-c8c777bc7b8b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:7fc007bd-f549-48ef-a20b-c8c777bc7b8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 516ECE0BE56A40288BAB5A8F081B8053 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.3091.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "97bc896a-4909-4306-9ea6-b3dbddeff384" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12498,Microsoft.Compute/GetVMImageFromLocation30Min;73495" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "708bda50-2967-48de-8791-a497ff3b7380" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fcb26b64-3085-49f5-8735-ff0e4ab9e826" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "903ddb97-93d0-464d-8d40-c29e22a2504b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215124Z:903ddb97-93d0-464d-8d40-c29e22a2504b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 121829727A224D1BAE4DDE167835BC11 Ref B: MNZ221060609021 Ref C: 2025-06-02T21:51:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:23 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3091.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.3091.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11767,Microsoft.Compute/GetVMImageFromLocation30Min;72567" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "eddbd97f-d886-43ba-b582-5815217859d4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/13a6320f-d558-499d-a3b7-6b72429cd4dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "82b2d97c-8aba-483b-b868-fe3934bea1f9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:82b2d97c-8aba-483b-b868-fe3934bea1f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 33874457998C433BBC7A58A22F5217FB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3091.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.3091.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDMwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "abda8681-5137-4852-aaee-1a57113db277" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12497,Microsoft.Compute/GetVMImageFromLocation30Min;73494" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c7309137-6dca-42ec-90c4-77a343f17827" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/384e5a85-ef60-4d7e-a2d4-2afc3c2f1da0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9cfbf72c-3d9c-45d2-b649-0c01ce572ef6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215124Z:9cfbf72c-3d9c-45d2-b649-0c01ce572ef6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D2D816861F604DBF9416C6F49AD81FB3 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:51:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:23 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3091.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.3091.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDMwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11766,Microsoft.Compute/GetVMImageFromLocation30Min;72566" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "17571537-2844-4616-9631-a6a22389464b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7070287e-29f9-44a8-bc28-e84ec7cb02bc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "145c2e95-6604-41f3-9e9e-d6f7ce1f2cc4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:145c2e95-6604-41f3-9e9e-d6f7ce1f2cc4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2630B4BC62FE4EDD8456D04AFC5F5638 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3091.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4zNTYxLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "23c03786-4c7d-4e15-a481-1e297dec0885" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12496,Microsoft.Compute/GetVMImageFromLocation30Min;73493" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "40056eb8-963d-4304-8157-6820c2f8e5b3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a19fceea-1073-4b0a-a84f-667b3de05075" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "188aa14b-4d9b-43c7-b00d-cf81a7f2008c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215124Z:188aa14b-4d9b-43c7-b00d-cf81a7f2008c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 32AA6EEED2B743C49A85436E13A8F096 Ref B: MNZ221060610027 Ref C: 2025-06-02T21:51:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:23 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4zNTYxLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11765,Microsoft.Compute/GetVMImageFromLocation30Min;72565" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e3818102-cdb4-4f1f-b282-942083446581" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/31b0bf52-82b0-4b62-8727-b7cb93428b48" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c592da26-c602-4fd8-8c41-9d1c40f3b93d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:c592da26-c602-4fd8-8c41-9d1c40f3b93d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7AEC1458447B403C833851EFA9DF81CC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.3562.250404?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4zNTYyLjI1MDQwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d8b10687-af2f-48cb-b446-6a42c90e21ba" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12495,Microsoft.Compute/GetVMImageFromLocation30Min;73492" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1ea8049e-11dd-4955-83b9-dcdace142097" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bc1f8976-4b96-4f6d-956c-936b0e624e0f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2d873aa4-9e22-46d2-a425-3aa96acfa3f2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215124Z:2d873aa4-9e22-46d2-a425-3aa96acfa3f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9677C947C68C45EAB76FD74B88FD0210 Ref B: MNZ221060609049 Ref C: 2025-06-02T21:51:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:23 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-27T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3562.250404\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.3562.250404?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4zNTYyLjI1MDQwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11764,Microsoft.Compute/GetVMImageFromLocation30Min;72564" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "057c402a-a5a2-4bec-82f4-f05174f92b6e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/61182422-950c-4921-8663-25c5641fb1eb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "0c1eb58f-2f75-4ff1-a33c-ee8efda207b6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:0c1eb58f-2f75-4ff1-a33c-ee8efda207b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F5108D31958F4BAEB2204838375F1B6D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-27T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3562.250404\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.3562.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4zNTYyLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "28e90ce4-9392-42db-a6a1-7c0c8adde50b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12494,Microsoft.Compute/GetVMImageFromLocation30Min;73491" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d36fd3fc-d6f2-4bdf-940e-4208ba77d1af" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7d50dd40-df4c-4e9e-beb2-5529de071c23" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "083871ae-f473-4ec0-b51e-fc336b5b1466" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215124Z:083871ae-f473-4ec0-b51e-fc336b5b1466" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D706AF46F65B4F10A54A2755DE70448A Ref B: MNZ221060608023 Ref C: 2025-06-02T21:51:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:24 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3562.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch/versions/20348.3562.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucy8yMDM0OC4zNTYyLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11763,Microsoft.Compute/GetVMImageFromLocation30Min;72563" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f1c6ba3c-ff4d-48cd-8f57-e9ef9c6c7194" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/473fbccd-f472-4d6f-b469-705df187fc95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "cb1f5f11-b047-4e18-91d1-5daddd722de8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:cb1f5f11-b047-4e18-91d1-5daddd722de8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4046C5028EFE4CB1AD4990955AA57F04 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch/Versions/20348.3562.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "65620196-cb0b-4cc8-9911-79158693dbf7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15946,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43940" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8d0a9346-1947-4a66-93f7-099163351e45" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7ecfce90-8f7a-4e7b-81af-89a2b6b66695" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d1a7563a-a7f5-4202-b5d5-243fd7694135" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215124Z:d1a7563a-a7f5-4202-b5d5-243fd7694135" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8AB7BC7EED6945F8B3CE4EB07E1C3D49 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:51:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:24 GMT" + ], + "Content-Length": [ + "6123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2227.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2227.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2227.240301\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2402.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2402.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2655.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2762.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2762.241204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3091.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3091.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3562.250404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3562.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15872,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43839" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a8602ff1-efc7-40d4-878e-33ca0235d75d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c5ea13a6-92c1-46e2-938b-0beceaa0b4d0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3714fe26-c813-4843-8508-f9d61ac1880f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215329Z:3714fe26-c813-4843-8508-f9d61ac1880f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 91B7BEFA15264E7E94F58AE8417F74FE Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "6123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2227.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2227.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2227.240301\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2402.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2402.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2655.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2762.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2762.241204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3091.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3091.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3562.250404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3562.250509\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2227.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjIyNy4yNDAxMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2929a3e6-f54d-4632-b0f5-c62776150382" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12493,Microsoft.Compute/GetVMImageFromLocation30Min;73490" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "de6ae6fb-104f-48e8-824a-bc25be12a43b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4782a569-eddf-43d8-b1f2-3c2c321dfb59" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "55345781-d5ab-489a-831f-834b2b2e21ef" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215125Z:55345781-d5ab-489a-831f-834b2b2e21ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 70D4702168AA49FFB3324C76F872EA8E Ref B: MNZ221060618027 Ref C: 2025-06-02T21:51:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:24 GMT" + ], + "Content-Length": [ + "1294" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2227.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2227.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjIyNy4yNDAxMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11762,Microsoft.Compute/GetVMImageFromLocation30Min;72562" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6d035a1c-b446-4bc9-93eb-4e28b59dcb96" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ed161934-fa81-4e5a-9591-f3436ce5c973" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "8ee3c213-3c18-4ef4-8224-670846de1fae" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:8ee3c213-3c18-4ef4-8224-670846de1fae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2D3C8A8BDCA846E49E7463702AA53857 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1294" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2227.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2227.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjIyNy4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c0841d43-6799-4376-8ca4-513d11395f41" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12492,Microsoft.Compute/GetVMImageFromLocation30Min;73489" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "37e6f45a-793a-4e66-baf2-83e08da06764" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cf7e4747-4129-4a33-8dfd-ba19ed4f205c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9b4b5c9a-9e6e-4022-b6e8-f1ffb534af85" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215125Z:9b4b5c9a-9e6e-4022-b6e8-f1ffb534af85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1175B4738076482082B5A4B1F5AAFF1D Ref B: MNZ221060608037 Ref C: 2025-06-02T21:51:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:24 GMT" + ], + "Content-Length": [ + "1294" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2227.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2227.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjIyNy4yNDAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11761,Microsoft.Compute/GetVMImageFromLocation30Min;72561" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4034fe1e-f0e9-4373-89e2-db35dd5089ec" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f2d9d205-9bba-4f7e-9672-024be7c7ab3b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2c3f4cd2-a4a0-4700-aa56-adf7dc226f9c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:2c3f4cd2-a4a0-4700-aa56-adf7dc226f9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F54E013096A743C18A0033FB8ECDF153 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1294" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2227.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2227.240301?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjIyNy4yNDAzMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "199596c6-c040-4905-95be-249837ed878e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12491,Microsoft.Compute/GetVMImageFromLocation30Min;73488" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "508623e4-362b-4600-bafa-cf8cc409e124" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b1254af2-10c7-4649-ba95-f7068817f893" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "327d4f64-17fb-4331-91a5-8b095faa6455" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215125Z:327d4f64-17fb-4331-91a5-8b095faa6455" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7112B535399F4778A0094677B75C44B1 Ref B: MNZ221060609049 Ref C: 2025-06-02T21:51:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:24 GMT" + ], + "Content-Length": [ + "1294" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-27T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2227.240301\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2227.240301?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjIyNy4yNDAzMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11760,Microsoft.Compute/GetVMImageFromLocation30Min;72560" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9d35ec74-f19d-405f-9faa-1b9ec493aebd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8bd976bd-a90e-4a33-9eff-4f89ff4a8805" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "5e64d142-45a3-4452-9378-2481a314ff11" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:5e64d142-45a3-4452-9378-2481a314ff11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C0B92716063543ED8E277B178496A551 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1294" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-27T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2227.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2227.240301\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA0MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dddd0ebe-91d2-4ab2-9231-327aa052c762" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12490,Microsoft.Compute/GetVMImageFromLocation30Min;73487" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ff5117ac-b982-4508-998b-fd4f309f53fe" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/14b37b71-bb64-4d4b-9ce5-ab24fa9995f9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c6e00af3-2b69-4e6a-8873-658cda56694b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215125Z:c6e00af3-2b69-4e6a-8873-658cda56694b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CA152561F726462CA91C0B930A1ABA57 Ref B: MNZ221060609029 Ref C: 2025-06-02T21:51:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:24 GMT" + ], + "Content-Length": [ + "1294" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA0MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11759,Microsoft.Compute/GetVMImageFromLocation30Min;72559" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "10b760b7-a0fe-4cd0-a5dc-54c4986c9fe7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4739ff38-1158-416e-b6d8-7720efae9c1b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "e360c91a-5ffe-4424-ba0c-a028820d2904" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:e360c91a-5ffe-4424-ba0c-a028820d2904" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F6731677346427A985DDE31A4C0FDB4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:28 GMT" + ], + "Content-Length": [ + "1294" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2402.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cad90051-ae21-4c10-954e-8bc4df36cce4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12489,Microsoft.Compute/GetVMImageFromLocation30Min;73486" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a2c885d5-b5c8-4ae5-a88a-51d6f64ade39" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0199a465-23cd-4c3b-b821-56e7efb19a90" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3f2702c5-9adc-448b-9f3e-fa89fd319f34" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215125Z:3f2702c5-9adc-448b-9f3e-fa89fd319f34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 318F9C9AF8F94AF8BDAA5745235074C9 Ref B: MNZ221060610027 Ref C: 2025-06-02T21:51:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:24 GMT" + ], + "Content-Length": [ + "1213" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2402.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2402.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11758,Microsoft.Compute/GetVMImageFromLocation30Min;72558" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a3be7ff3-0aea-4824-8105-0c33f66c4a04" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f2b6e237-ea6a-4ca0-abf0-702a086df092" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "64919117-ab9b-4197-aebf-7a25814bb114" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:64919117-ab9b-4197-aebf-7a25814bb114" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41033844415440CAA91C66E3C65694AC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1213" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2402.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2402.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "96d73b10-b30b-489e-aae7-23cfb989b1ea" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12488,Microsoft.Compute/GetVMImageFromLocation30Min;73485" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "994c478b-06bd-4dfd-adef-e50aa1d99901" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7c5013b2-534f-4210-87aa-f4d71f3e35de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "59ebf75b-dee4-4c07-a981-59ada615678b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215125Z:59ebf75b-dee4-4c07-a981-59ada615678b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD860F032B0C4224A87097F7F69E1DC2 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:51:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:24 GMT" + ], + "Content-Length": [ + "1213" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2402.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2402.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11757,Microsoft.Compute/GetVMImageFromLocation30Min;72557" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c0fc0415-ce9e-49f5-b8b0-0662ace1d16d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/63383962-c41d-4ab3-9829-4ed590c78f95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "127423c9-8f2a-472a-b78a-5eabdc09cc83" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:127423c9-8f2a-472a-b78a-5eabdc09cc83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F1FAADF557F04267A6A05C476885E606 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1213" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2402.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjU4Mi4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a50995e8-e179-4c59-aed5-b3a88f65ff65" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12487,Microsoft.Compute/GetVMImageFromLocation30Min;73484" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3bab77f5-5c96-46ca-89a3-7c2fef29219a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d956e273-f531-4839-bad8-834b381ed44f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "becb8680-b919-41e6-88bd-f6e05c0fae47" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215125Z:becb8680-b919-41e6-88bd-f6e05c0fae47" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B1527692AF72449DAC48123D2F02BB59 Ref B: MNZ221060608037 Ref C: 2025-06-02T21:51:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:25 GMT" + ], + "Content-Length": [ + "1213" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjU4Mi4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11756,Microsoft.Compute/GetVMImageFromLocation30Min;72556" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2310c7ea-1a3e-4548-bc0d-0aed3366ee26" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9bcd1e95-ba52-4003-99d6-82d128712829" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "4fa8ab99-57e3-4111-a04e-1e634c0d6d40" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:4fa8ab99-57e3-4111-a04e-1e634c0d6d40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4926E771FD174955B204F6BE7F0C9B66 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1213" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA4MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f5470c37-e417-42e9-a591-e42d903edd8d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12486,Microsoft.Compute/GetVMImageFromLocation30Min;73483" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "842099fd-efc4-41f5-a938-30b6aaa31e05" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/588cdbb9-7fdc-42fa-9b85-929a2b79ec3e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4ede1ece-3bab-4476-a175-6672c2b731af" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215126Z:4ede1ece-3bab-4476-a175-6672c2b731af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 02D7B9D8DD784DCD9F0AADB3AC13EADA Ref B: MNZ221060609011 Ref C: 2025-06-02T21:51:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:25 GMT" + ], + "Content-Length": [ + "1213" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA4MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11755,Microsoft.Compute/GetVMImageFromLocation30Min;72555" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cff79075-abb4-46e5-8d76-6b6d4710286d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bc62ab89-02d5-41ab-b236-2cf57851f154" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "87ae7d15-0152-4526-b009-370ce19be49d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215329Z:87ae7d15-0152-4526-b009-370ce19be49d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3FB5273F67BA499ABE625FE587C11F91 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1213" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2655.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ef983bbb-eabd-46ba-8e08-5cff6a2147ae" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12485,Microsoft.Compute/GetVMImageFromLocation30Min;73482" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7b7b59bb-2e2c-4975-9386-b9340f4c82e6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/89be526a-d715-4d76-9ccb-09fc8365cd60" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fd8498dc-3eac-4618-9677-d5b6011770ce" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215126Z:fd8498dc-3eac-4618-9677-d5b6011770ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 06E6ECA56F6C4FA78E09C8580F50E49E Ref B: MNZ221060610007 Ref C: 2025-06-02T21:51:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:26 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2655.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2655.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11912,Microsoft.Compute/GetVMImageFromLocation30Min;72554" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d407f001-301f-4ec2-9c10-abb54bc0fe82" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4ebab171-3b92-40ee-8391-f0e412485aae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "851a94eb-0731-424a-92d2-9f8f5545af85" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215330Z:851a94eb-0731-424a-92d2-9f8f5545af85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B8C19A66B8924D3FA11352456CB44C32 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2655.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "879ae487-cd74-497a-82af-3ee6fd4525cb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12484,Microsoft.Compute/GetVMImageFromLocation30Min;73481" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a4fba3dd-1a78-481d-bc3a-f76883e68325" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ead647e8-beed-4255-8bc2-beb72de93d9f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "74c93d72-2624-48d9-9423-65f8a434af65" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215126Z:74c93d72-2624-48d9-9423-65f8a434af65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A629BE0CC9C3488F8BB3D1166D8E5B30 Ref B: MNZ221060610039 Ref C: 2025-06-02T21:51:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:26 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11911,Microsoft.Compute/GetVMImageFromLocation30Min;72553" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7a294261-cbbb-4d40-a6ea-541a0417536b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0f43b602-c8fd-4a61-b32f-8659724897a5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "1a16932e-f0d0-4083-8d8a-f51bc4e0e14a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215330Z:1a16932e-f0d0-4083-8d8a-f51bc4e0e14a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C1F3792B94694A8A8C40242E0DA55F98 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2762.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6e495ffa-a9c6-4b80-ba4b-e967ffb6459d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12483,Microsoft.Compute/GetVMImageFromLocation30Min;73480" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6c13c96f-85a8-43d2-9340-9fe79d446486" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/56774656-3bf3-4d02-8960-215ab2448e0e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "21e3b275-9d80-460a-9a34-5a3c35c15d24" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215127Z:21e3b275-9d80-460a-9a34-5a3c35c15d24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8D73138287BC4A88B0A77E25DC0B4624 Ref B: MNZ221060608009 Ref C: 2025-06-02T21:51:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:26 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2762.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2762.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11910,Microsoft.Compute/GetVMImageFromLocation30Min;72552" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e184d95f-addf-4a61-9e98-a485f917a923" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1f6cc954-717d-49f1-a198-6f9051446592" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "5264e6e2-8c1d-4449-a037-b514cef180ff" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215330Z:5264e6e2-8c1d-4449-a037-b514cef180ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B47CECE00FEA45AE863D5B680E2BCAF2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2762.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2762.241204?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEyMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4bbd0894-d7fd-4a99-8011-595a0c33d174" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12482,Microsoft.Compute/GetVMImageFromLocation30Min;73479" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "39d3aa63-0875-4408-8981-edc2e2bb264a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/84477f1e-69f2-4639-bda3-db2f3fc12528" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7839c5a8-be0c-4e25-8165-f0352f72bba8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215127Z:7839c5a8-be0c-4e25-8165-f0352f72bba8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BBA9A2479006418CA6F0B2A8EAD97F0C Ref B: MNZ221060619019 Ref C: 2025-06-02T21:51:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:26 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2762.241204\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.2762.241204?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEyMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11909,Microsoft.Compute/GetVMImageFromLocation30Min;72551" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0bdfd75c-a700-4865-af41-5d6940f2b509" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2e2d1ce9-e672-4d26-9ef1-837357c1c9d5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "dc178742-96b9-409f-a947-48133bbdc2fe" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215330Z:dc178742-96b9-409f-a947-48133bbdc2fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9007E6C522B14FEDB5BEC73FF71F9BB9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.2762.241204\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "56f07e74-2035-4f6c-a27e-a5dce3897392" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12481,Microsoft.Compute/GetVMImageFromLocation30Min;73478" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "05403686-4bb3-4ce6-bd9d-0412548db50e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/42387e22-24da-4553-957d-702a2ef236bc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6b4e340a-4e50-4feb-a733-043b6d4fce6b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215127Z:6b4e340a-4e50-4feb-a733-043b6d4fce6b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C6D5DFA00019442399E963D4AB47E694 Ref B: MNZ221060619047 Ref C: 2025-06-02T21:51:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:27 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11908,Microsoft.Compute/GetVMImageFromLocation30Min;72550" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9462f2bd-9bfd-4eff-9c91-7b57db2b2423" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9caec363-152c-4581-90c1-a1918b96b432" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "f4300b66-5bb2-4e3d-b3c5-a8ff36c61341" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215330Z:f4300b66-5bb2-4e3d-b3c5-a8ff36c61341" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2F05D8A90285479D8B2E1DA7B632140D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.3091.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0bed6437-e70a-4d0d-a2bf-f139b6f53715" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12480,Microsoft.Compute/GetVMImageFromLocation30Min;73477" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f90af6fe-0b78-486f-96ea-8c0c9c9d6e1b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/823f2b79-220b-451f-8f88-4c1cbecad5c1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3f108aa7-b7e5-4c83-9b26-e0661148284b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215127Z:3f108aa7-b7e5-4c83-9b26-e0661148284b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4B580B29808B46A6B59A85D14F686526 Ref B: MNZ221060609021 Ref C: 2025-06-02T21:51:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:26 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3091.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.3091.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11907,Microsoft.Compute/GetVMImageFromLocation30Min;72549" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ea0a8ee7-6b72-4dc6-9fe5-f59275661475" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1b606965-466e-4f8c-9e8a-6244d93e84ee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "70c4eea9-aa4e-475c-870e-8c9f426298d1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215330Z:70c4eea9-aa4e-475c-870e-8c9f426298d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 96DA44B2FCDA41E89BDA88B697674043 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3091.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.3091.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3dc4929f-8628-47aa-a4ef-f0056ef73358" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12479,Microsoft.Compute/GetVMImageFromLocation30Min;73476" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fe82de22-47ce-4588-87f5-1b50cf0073af" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/77fe51e1-4211-4344-8364-dde345bd1cb2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "71ff3399-7652-47d7-9912-25d258d40fd3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215127Z:71ff3399-7652-47d7-9912-25d258d40fd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2BA502A39C24BE1A85923A8DE7FC06A Ref B: MNZ221060618047 Ref C: 2025-06-02T21:51:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:27 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3091.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.3091.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAzMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11906,Microsoft.Compute/GetVMImageFromLocation30Min;72548" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e3404639-3441-4ef0-9317-e034e80beb28" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/632e4da6-665f-450f-afcf-698ee1093adc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ec7c6377-362b-41ce-8c15-6f5a1291feac" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215330Z:ec7c6377-362b-41ce-8c15-6f5a1291feac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1411E8DFADD74AEBB4828A12C6DEFE54 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3091.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d322de73-8b26-4ff5-8161-f260c8ae5504" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12478,Microsoft.Compute/GetVMImageFromLocation30Min;73475" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e7e1f199-765e-4657-a945-d88b07c45cd4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6cc622f8-9125-4e4f-bcfc-88ab93bd3211" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "67d91647-bc97-44bb-ae1e-b7aff71f3cb5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215127Z:67d91647-bc97-44bb-ae1e-b7aff71f3cb5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 431A6D22BC98482F9EBBF0637B962546 Ref B: MNZ221060609053 Ref C: 2025-06-02T21:51:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:27 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11905,Microsoft.Compute/GetVMImageFromLocation30Min;72547" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2cca8d00-2503-4930-82a1-8f91d5fac831" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/45d560e0-691a-4516-a3f5-cce223229bab" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "af15b89a-618a-4e2d-98e2-f49bbc112869" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215330Z:af15b89a-618a-4e2d-98e2-f49bbc112869" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1D6B205FC14E4981BF43CDC004469C26 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.3562.250404?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzU2Mi4yNTA0MDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1a199708-822b-4342-91d8-845b31bfda88" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12477,Microsoft.Compute/GetVMImageFromLocation30Min;73474" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f02b195f-e95e-46d3-8ee6-227a2471b6ce" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/91a12849-a9c5-4980-91c2-9619428a037e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8efdf8b2-2966-4349-bb88-87af25c2a7d8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215127Z:8efdf8b2-2966-4349-bb88-87af25c2a7d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BFB60571A9D7439599BA3DEE04612B0E Ref B: MNZ221060609019 Ref C: 2025-06-02T21:51:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:27 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-27T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3562.250404\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.3562.250404?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzU2Mi4yNTA0MDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11904,Microsoft.Compute/GetVMImageFromLocation30Min;72546" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "00fc03d8-f271-4a07-9293-1feaeefb77c5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6a01d27b-8f9d-499f-a922-80c538b7f8ed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6e5260c7-713f-4dbd-8414-77b3e7489723" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215330Z:6e5260c7-713f-4dbd-8414-77b3e7489723" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B3CD5434F72E4970A470F22F82652A31 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-27T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3562.250404\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.3562.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzU2Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f60c5b2a-4cd7-42fc-b992-e72216ed6161" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12476,Microsoft.Compute/GetVMImageFromLocation30Min;73473" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fff59d67-933d-4512-a2e2-abcbff34291a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b57a9648-c64b-4303-959f-010a2b4015ba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a94324a9-b455-4273-b9c7-d960717a0626" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215127Z:a94324a9-b455-4273-b9c7-d960717a0626" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FD289831FF3E497AA3EA2B4E5F5276BE Ref B: MNZ221060618033 Ref C: 2025-06-02T21:51:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:27 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3562.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-hotpatch-smalldisk/versions/20348.3562.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzU2Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11903,Microsoft.Compute/GetVMImageFromLocation30Min;72545" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "17471b76-808d-45e0-ba52-2780b4d4c6f0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/915087cc-71ad-48b8-80fa-8255953ca463" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "79185157-c055-4c35-b081-c316e25480b9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215330Z:79185157-c055-4c35-b081-c316e25480b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 605E7A14358247D4B6C5BE704BD60C34 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:29 GMT" + ], + "Content-Length": [ + "1261" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3562.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-hotpatch-smalldisk/Versions/20348.3562.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0147d7c2-9c76-47fd-ae21-077e3fcf84cb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15945,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43939" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2837183c-5b79-44ec-8c69-4dea4da32c2d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/90a2ae55-6f2a-4803-bb5c-d67d97832875" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3b7354e4-f6dc-4327-9a8a-2a25d8cfa752" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215128Z:3b7354e4-f6dc-4327-9a8a-2a25d8cfa752" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EDB375D66FA5447F9D03A4E348FBCE29 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:51:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:27 GMT" + ], + "Content-Length": [ + "5961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15884,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43838" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "20ec669a-a9f5-4611-953b-f6c723832fbd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/87ee75b1-45ab-47bf-bb15-8b3b9b6156ea" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "213545d4-3566-4313-b6c9-2203b96f0278" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215330Z:213545d4-3566-4313-b6c9-2203b96f0278" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 82BBC129435640C2AEF6CB10ED31CD80 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:30 GMT" + ], + "Content-Length": [ + "5961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjMyMi4yNDAyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ac72cd8f-0f78-484e-b51f-1622c274904b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12475,Microsoft.Compute/GetVMImageFromLocation30Min;73472" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "53749c38-e958-4c6e-b158-1387e4c50a48" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0a88a4ab-5949-4b7e-b733-caf837e5899e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dc63350c-65e7-48e6-a464-24402d24fe80" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215128Z:dc63350c-65e7-48e6-a464-24402d24fe80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6956415DD00B434A83C618110F034BB3 Ref B: MNZ221060619031 Ref C: 2025-06-02T21:51:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:27 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjMyMi4yNDAyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11902,Microsoft.Compute/GetVMImageFromLocation30Min;72544" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "15c53532-8974-4355-a8e0-bc0b3a7b45b2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b0129a9b-0176-42dc-b56f-1afb147cc560" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "ec1b4c50-18be-411b-945b-84ab72b1e88a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215330Z:ec1b4c50-18be-411b-945b-84ab72b1e88a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5CCECBF0EAE64ED2824AF56CAAA3E0C9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:30 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjM0MC4yNDAzMDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d962a6da-cc86-4b58-bb9a-2a23019856aa" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12474,Microsoft.Compute/GetVMImageFromLocation30Min;73471" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "500f5f74-4980-436d-9834-537850e04801" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/af60409f-e4d0-4447-b3cc-21ecb8707855" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "737b841a-457d-4e61-bf14-bd90ec80f1f2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215128Z:737b841a-457d-4e61-bf14-bd90ec80f1f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F334D8FC43C143F088A09A115E2F7B5F Ref B: MNZ221060619011 Ref C: 2025-06-02T21:51:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:27 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjM0MC4yNDAzMDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11901,Microsoft.Compute/GetVMImageFromLocation30Min;72543" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2ad209cb-d94b-44a3-9347-02cb3332f29f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bfd05f64-2548-4f8e-90c6-22c22a46d5ec" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f619073a-8b5a-47cd-be3f-cccd5a5de058" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215331Z:f619073a-8b5a-47cd-be3f-cccd5a5de058" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EA2F4EFE903A4BD09C645A477EDEE95A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:30 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA0MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "85934444-1a18-4954-88d7-0d5c59d48cb6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12473,Microsoft.Compute/GetVMImageFromLocation30Min;73470" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2043363d-0ddd-4e26-af41-374c53322605" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/836270e0-148c-4436-95b1-1122b5a178d0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "48c0ef15-fee0-485f-86a9-741c4450c8f6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215128Z:48c0ef15-fee0-485f-86a9-741c4450c8f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C4D969DFA1414DD590E5F19ADE56C0BC Ref B: MNZ221060608007 Ref C: 2025-06-02T21:51:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:27 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA0MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11900,Microsoft.Compute/GetVMImageFromLocation30Min;72542" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "761e4e48-1322-4a45-a8c6-572af006bef8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/06979fc4-3a91-4c87-b757-74fec7ab67c9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "65f95a18-4f92-40d2-a410-372a78b70b90" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215331Z:65f95a18-4f92-40d2-a410-372a78b70b90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5A6D0EE99B2745258095649DD8825EEE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:30 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQ2MS4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d2fa7b12-1676-4333-889b-03bc49841006" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12472,Microsoft.Compute/GetVMImageFromLocation30Min;73469" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "db084213-b5f2-48e3-97e4-ec680e815fa6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/60ebc9d2-31f7-4b98-a7db-9b9659b8b109" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b9eb2571-5b5a-4403-861a-75694012ac1c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215128Z:b9eb2571-5b5a-4403-861a-75694012ac1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 633B748A750647A6B1AD7A8162ABE948 Ref B: MNZ221060619031 Ref C: 2025-06-02T21:51:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:27 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQ2MS4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11899,Microsoft.Compute/GetVMImageFromLocation30Min;72541" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "eb991f1f-e2f6-4fc3-a27d-7f453a17fbb5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a104be39-073a-4746-9998-3478726002ab" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "7ba26cce-0fad-4138-9711-5716526fc64f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215331Z:7ba26cce-0fad-4138-9711-5716526fc64f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 079D6EF63986411AB001F5E180292F5E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:30 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjUyNy4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "175bfa6e-32c8-43b3-a838-b38a5d2fb8cf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12471,Microsoft.Compute/GetVMImageFromLocation30Min;73468" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f69d0683-5bca-4694-b31e-c05e4dc3e107" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bdb3fd42-7ece-4788-9787-1ceb3f949ea5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1b392628-a036-416d-8398-9bc11366a076" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215128Z:1b392628-a036-416d-8398-9bc11366a076" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 809E0AFB8545487D82AE4CA98B952933 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:51:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:28 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjUyNy4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11898,Microsoft.Compute/GetVMImageFromLocation30Min;72540" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c492d12c-8ff8-46f3-8493-f4ac99d89557" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0c74c0c0-386f-4b59-a81b-719d6bc2c221" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f41a1c5c-18c1-4647-bc83-047825d0d80d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215331Z:f41a1c5c-18c1-4647-bc83-047825d0d80d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B26F8239EE945549FFD176B34ABF24B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:30 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjUyOS4yNDA2MTk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fcc5febd-12d6-4eca-a83d-a7654fc96222" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12470,Microsoft.Compute/GetVMImageFromLocation30Min;73467" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d837c0b1-084f-4011-9f08-c03c9ff72718" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/68da8831-2051-4663-a850-7c3c40715566" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "59bd0d4d-27b6-4e05-a1fb-1b840d38e496" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215128Z:59bd0d4d-27b6-4e05-a1fb-1b840d38e496" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E310C520BFB349DCAA704F41C90246F8 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:51:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:27 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjUyOS4yNDA2MTk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11897,Microsoft.Compute/GetVMImageFromLocation30Min;72539" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "eb683ca0-5cd1-4ea1-9bb2-2b5b56761ff9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/547a22e7-c498-4a58-b8a5-91d75ee723f5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "45a4d6f0-a62c-4d95-8ac7-51515103becd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215331Z:45a4d6f0-a62c-4d95-8ac7-51515103becd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 88F2693D5F4E46F18335427BDD0CD64F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:30 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjU4Mi4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b2ec8cad-c6fe-4ffd-bb29-766d73063a24" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12469,Microsoft.Compute/GetVMImageFromLocation30Min;73466" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9b141759-b9e3-49b2-82b0-4c4e4e6d6345" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b0922787-7bac-402d-a80c-274ef4dcb250" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "42b472d3-07a1-44bd-9e10-2a12d8bbfb2b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215129Z:42b472d3-07a1-44bd-9e10-2a12d8bbfb2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 71A6E6E080484DD586FE72145A3EDF9A Ref B: MNZ221060610027 Ref C: 2025-06-02T21:51:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:28 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjU4Mi4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11896,Microsoft.Compute/GetVMImageFromLocation30Min;72538" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b3ce156a-6b8e-417a-9ca0-8a19375328bd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c810ad73-ef0e-4ce9-a951-416413658bc4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "599018c0-c1d7-4739-8d27-0bdd53553700" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215331Z:599018c0-c1d7-4739-8d27-0bdd53553700" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ACB9D267FF50422A85C6A56CD59461F8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:30 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA4MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d620d108-bb46-494b-810b-4911d74491e6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12468,Microsoft.Compute/GetVMImageFromLocation30Min;73465" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ef2c20a7-ca47-4745-8fb1-8e6bb3e6505c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ae8944f3-1a68-441b-b2a1-56e45b2497d0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c0cdfcee-71d1-454c-8887-a19b404b9e8e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215129Z:c0cdfcee-71d1-454c-8887-a19b404b9e8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D95DCF4F22084A03B91DC5C9F97C2149 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:51:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:28 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA4MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11895,Microsoft.Compute/GetVMImageFromLocation30Min;72537" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fada4fc5-7198-4398-bd63-7b7880ae1ee4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4ccd5c91-649b-49cc-983f-046be8d2f8c4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d6aa674b-6044-42ad-b10f-8c3e468618e2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215331Z:d6aa674b-6044-42ad-b10f-8c3e468618e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 79149269324A4EE1BF2EC69C294BB2A0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:30 GMT" + ], + "Content-Length": [ + "1204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjcwMC4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1271a43d-199e-43a8-8104-e7525745ef1a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12467,Microsoft.Compute/GetVMImageFromLocation30Min;73464" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e8f0510a-e910-49ea-8ebc-3fcd74937275" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/16b0ca31-21e4-43f7-84f9-772b5eafd059" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5a60fe0a-125a-4658-b9c7-1baad7250c5f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215129Z:5a60fe0a-125a-4658-b9c7-1baad7250c5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D00D386458F543A184AC2D91CAC152B6 Ref B: MNZ221060619029 Ref C: 2025-06-02T21:51:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:28 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjcwMC4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11894,Microsoft.Compute/GetVMImageFromLocation30Min;72536" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "73e338ec-fe44-46a6-8543-2e4ed929ac94" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2488e3c5-712a-4cc2-bcaa-f5668474e42f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "41db90f2-d259-4cf4-9fe4-11f9c82fe2f6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215331Z:41db90f2-d259-4cf4-9fe4-11f9c82fe2f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9DC441DABCE348E3B1F8789108329D79 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:30 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0c9a1d90-d08e-44fb-8ea0-d2240bbe8900" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12466,Microsoft.Compute/GetVMImageFromLocation30Min;73463" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9ed64f43-d7f5-432a-96a4-5f8bda547e35" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f0816e2c-d800-4a7d-9ea6-41f576ab9585" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fcf4c743-477d-4e08-9680-4cf7f8777100" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215129Z:fcf4c743-477d-4e08-9680-4cf7f8777100" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FDE1530B06E940E99AE111EE4DACDC0D Ref B: MNZ221060609017 Ref C: 2025-06-02T21:51:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:29 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11893,Microsoft.Compute/GetVMImageFromLocation30Min;72535" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8c7b3e66-48f5-490c-8bb3-b2fcaba7750b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/66d81dde-863f-4509-8dd7-012374bd6697" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "934e88a1-f44e-422e-9dda-d5814ea7cda7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215331Z:934e88a1-f44e-422e-9dda-d5814ea7cda7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1741F1EBD4374259B32E8AE9C4148A8E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:30 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjg0OS4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d28131e2-05a7-4539-b236-32bf82a08770" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12465,Microsoft.Compute/GetVMImageFromLocation30Min;73462" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7bd5807d-ff14-483c-b607-4cc3a896ac8c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/78b57842-1862-4b59-b05d-24c51d0125e7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a09026ab-b6b6-4605-a3c0-9ffc309006cb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215129Z:a09026ab-b6b6-4605-a3c0-9ffc309006cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 77D4467C30174445842211E0262B519E Ref B: MNZ221060619049 Ref C: 2025-06-02T21:51:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:29 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjg0OS4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11892,Microsoft.Compute/GetVMImageFromLocation30Min;72534" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "72e3dfe0-d081-4c94-bcc6-e04eb2051e1e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ab9dc32c-2e8b-4f82-a2e2-d53720276918" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ea54361f-598b-4d00-9f1f-dcabbc8426f6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215331Z:ea54361f-598b-4d00-9f1f-dcabbc8426f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DBA4CCF6AACD47F18044BD3F973A6263 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:31 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjk2Ni4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3faa8cbe-0664-48bd-8609-b9b243d7e2ae" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12464,Microsoft.Compute/GetVMImageFromLocation30Min;73461" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e826fae6-0819-467a-9600-08ce06ef636a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a580ae5f-5f8d-4ded-8448-a13b2c9feb9c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3e11e6fd-8df5-4f33-8524-9a160db4d85a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215129Z:3e11e6fd-8df5-4f33-8524-9a160db4d85a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5867F930869440758D38D68413D45BE6 Ref B: MNZ221060610033 Ref C: 2025-06-02T21:51:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:29 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjk2Ni4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11891,Microsoft.Compute/GetVMImageFromLocation30Min;72533" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e14c2ee1-6942-4a68-acfe-b507513e693c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ce9bcc1f-b253-4fd7-bf40-62a48c83e7bc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "7e0c55f1-6ef0-4292-85e8-e813e5033a8c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215331Z:7e0c55f1-6ef0-4292-85e8-e813e5033a8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E0AE73EC18B4D69BE3650844476C2F3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:31 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "53285803-f8e9-4c3d-802c-e2087fd6cb55" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12463,Microsoft.Compute/GetVMImageFromLocation30Min;73460" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "93b0ffae-930b-4e31-aa6e-db20b81abcb1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c49c5ab5-2bd8-426c-8580-189b069db9f5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2b7b8492-9d59-44cc-a7f9-09c5d6a87fbe" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215129Z:2b7b8492-9d59-44cc-a7f9-09c5d6a87fbe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A28CACC4F8044378BC37C82DD2AFCD7E Ref B: MNZ221060618033 Ref C: 2025-06-02T21:51:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:29 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11890,Microsoft.Compute/GetVMImageFromLocation30Min;72532" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "518eb0ce-a335-4c15-8b49-48f904dad502" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c43c83a3-3984-47cd-bf63-ed3a1b245d1a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "56de5173-bfb7-4b51-a55d-a4269e83db49" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215331Z:56de5173-bfb7-4b51-a55d-a4269e83db49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 034FA6438A3342439CBA0DB293C0FA17 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:31 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzIwNy4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "681b2f08-a50e-4dd7-b067-0d0d78fc5532" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12462,Microsoft.Compute/GetVMImageFromLocation30Min;73459" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a99313f4-cf5c-454b-b546-305b764d0a99" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/27d4a87c-3ba4-4b7a-83a3-04aaff4d5f50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e8f0e8be-8b14-4cfd-9b4d-5f7728465b48" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215130Z:e8f0e8be-8b14-4cfd-9b4d-5f7728465b48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 479D7B5799C84C168CB3EDE35BCE6F25 Ref B: MNZ221060608037 Ref C: 2025-06-02T21:51:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:29 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzIwNy4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11889,Microsoft.Compute/GetVMImageFromLocation30Min;72531" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c6a49c92-2c86-4ec2-bff1-17aca4e2b8dd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/377d7bec-73f2-4446-8f41-ecbd3dd5b893" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a7ed4b73-eefc-429c-9987-625ae02895cb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215332Z:a7ed4b73-eefc-429c-9987-625ae02895cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4F947AF0AB384E5CAF38802BBB34D654 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:31 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzMyOC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "79f15e10-0d50-4bb2-a91d-5d9e0accbf6c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12461,Microsoft.Compute/GetVMImageFromLocation30Min;73458" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "63cc7cf8-59c0-49de-8a03-9ad211b477b0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b464b713-7269-4ce1-b1e0-f046180efba9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4714eeaa-603f-4b32-892e-cc82e07e1b67" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215130Z:4714eeaa-603f-4b32-892e-cc82e07e1b67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 42ACC761BAC44C26B2C6A393AB7ADA9A Ref B: MNZ221060619029 Ref C: 2025-06-02T21:51:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:29 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzMyOC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11888,Microsoft.Compute/GetVMImageFromLocation30Min;72530" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "55ecb532-5641-45a6-9c84-f2251f735d05" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8be3fb56-678b-4a89-be70-ec0cdd3705c0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "80576d48-1720-497f-b8a9-709c96c5e13e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215332Z:80576d48-1720-497f-b8a9-709c96c5e13e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AE0A7EA508F840B1B7F82055B39408AC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:31 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9cd79c9a-e4f1-4c90-8d25-a92991d7475a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12460,Microsoft.Compute/GetVMImageFromLocation30Min;73457" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "527e754e-3bdf-4036-81e4-c094ac4ffb0c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bf2e051d-5b7f-4f80-9a02-5ceb2df221e6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7b75745d-b282-4750-9e2f-63b56b229626" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215130Z:7b75745d-b282-4750-9e2f-63b56b229626" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DAC0270877CA439EBBAC9EF0A6CDD447 Ref B: MNZ221060610033 Ref C: 2025-06-02T21:51:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:29 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11887,Microsoft.Compute/GetVMImageFromLocation30Min;72529" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "019ac4dd-8104-48a8-8871-3fcc038cdad3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9b9c596b-325e-45ee-9a84-6e6089fbe825" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "cd096727-e108-44e0-ac0d-acffe284f7e8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215332Z:cd096727-e108-44e0-ac0d-acffe284f7e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2404DC910A554C36ACACA8CD14044B17 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:31 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzY5Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a1662e17-a550-4ca2-b2b3-7d1729e43a79" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12459,Microsoft.Compute/GetVMImageFromLocation30Min;73456" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9651af0f-e8c4-4a57-8a94-35a7028af846" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1c1821ae-8259-4d8d-aa2a-4bfddc5dc918" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "50fa75e0-e352-4ef2-a9ad-ce997d72fe30" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215130Z:50fa75e0-e352-4ef2-a9ad-ce997d72fe30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9884352BDDF445B9B41C7E245165A5EC Ref B: MNZ221060608051 Ref C: 2025-06-02T21:51:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:29 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzY5Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11886,Microsoft.Compute/GetVMImageFromLocation30Min;72528" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4e99da57-4151-46e0-b404-b97159cf7bf9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6ba3a7ba-cde6-475e-a74d-48b8e73e8c85" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "1947bd34-64c9-4571-bb06-f9b633a259ef" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215332Z:1947bd34-64c9-4571-bb06-f9b633a259ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DEA3FE41866346E288D1EA4186F7A913 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:31 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzY5NS4yNTA1MjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0b5b9942-9193-4584-86cb-ae9585464576" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12458,Microsoft.Compute/GetVMImageFromLocation30Min;73455" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cc32625c-9b49-409f-972b-b2003fa79aa5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d9341efc-ac07-409d-87e7-f32f86f2b36e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c7de1362-8c52-4eb2-b835-010eb94ab24a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215130Z:c7de1362-8c52-4eb2-b835-010eb94ab24a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DF1E1E699C0141DABE18D4E16CD2989E Ref B: MNZ221060610029 Ref C: 2025-06-02T21:51:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:30 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-azure-edition-smalldisk/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzY5NS4yNTA1MjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11885,Microsoft.Compute/GetVMImageFromLocation30Min;72527" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "41c980ad-6126-4590-8ab6-b325a9b8d705" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5e9d9602-7bc3-42fa-9b0a-be67b7bec61f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "157ece7e-c376-4e89-a864-febc4ddab455" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215332Z:157ece7e-c376-4e89-a864-febc4ddab455" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E55AC2D116EC47558647D8360A8D4516 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:31 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-azure-edition-smalldisk/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d29b3233-0cbd-4425-b509-62fa4d4546bc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15944,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43938" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "de4c5d12-1d31-44da-a453-e643aff7b7c1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8c535735-c05b-4a60-bb94-5067a7e52336" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fd8dc2a5-bea3-4f11-9cbf-5aa0081787ba" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215130Z:fd8dc2a5-bea3-4f11-9cbf-5aa0081787ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5061FECA927E4E15AAD6353D2E78B2B9 Ref B: MNZ221060609019 Ref C: 2025-06-02T21:51:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:30 GMT" + ], + "Content-Length": [ + "5619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15883,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43837" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "27bf67e6-366d-4bbf-a37f-437faeb87fe8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a07aed70-7893-4ede-8298-c623eec1814b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5656a879-23b0-461c-bb96-d6486859f411" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215332Z:5656a879-23b0-461c-bb96-d6486859f411" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BD934CD980DA4859A57C38D59ED80602 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:31 GMT" + ], + "Content-Length": [ + "5619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yMzIyLjI0MDIwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "78337745-53c5-4b69-ac12-e52fdc116c67" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12457,Microsoft.Compute/GetVMImageFromLocation30Min;73454" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "043c0d69-21ca-4e44-841a-ac45200147a5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/22e9bfec-f145-48f7-9c6c-073ee142f82f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "def06478-021e-4397-9ad4-dc2de1aa2248" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215130Z:def06478-021e-4397-9ad4-dc2de1aa2248" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7F0D3BDD64C44443AAE06C3A0CD98BB9 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:51:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:30 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yMzIyLjI0MDIwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11884,Microsoft.Compute/GetVMImageFromLocation30Min;72526" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "abdb7b85-4d57-4ea6-b732-b57f0780312b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3173c601-6423-4374-b8ca-5c0fa9010b25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "0e5f863f-d340-4bc9-8781-8ffd3b89580b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215332Z:0e5f863f-d340-4bc9-8781-8ffd3b89580b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F58DA30D83B04D95A90350E3AB5D8480 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:32 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yMzQwLjI0MDMwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6f68b6c3-c911-4e58-8e4f-4e2780d55047" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12456,Microsoft.Compute/GetVMImageFromLocation30Min;73453" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "36a2c0b6-8ce0-4d95-9c43-b2d2819592a5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2797a40a-fdd6-429a-a367-ef9fc766b14e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "aaac8a27-d94d-437c-9270-19d885747902" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215130Z:aaac8a27-d94d-437c-9270-19d885747902" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 45C3014B83EE4D13A3927001F0CF1F4D Ref B: MNZ221060619035 Ref C: 2025-06-02T21:51:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:30 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yMzQwLjI0MDMwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11883,Microsoft.Compute/GetVMImageFromLocation30Min;72525" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8f3ef082-1e4b-47b7-9075-71df96bd249c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/88aa3e5a-f4fe-4466-ba74-c3db18d33791" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "f6cc80f1-8053-4f53-a774-57d52b12fc78" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215332Z:f6cc80f1-8053-4f53-a774-57d52b12fc78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3CFEA19597E44C3A807899710942604F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:32 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDQwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ac541f1a-09e7-43f4-bd94-e06a11aa2647" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12455,Microsoft.Compute/GetVMImageFromLocation30Min;73452" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2b6ce186-162c-43b6-8771-131101c7716a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f5e37333-795c-4891-85f7-31182c7529e7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8b6c6060-cee9-42f0-a342-32e5b7bb90d5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215131Z:8b6c6060-cee9-42f0-a342-32e5b7bb90d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F853AF51F3E54944AD86C83F0F355932 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:51:30Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:30 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDQwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11882,Microsoft.Compute/GetVMImageFromLocation30Min;72524" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a0ff175a-0b44-4fcf-84b6-f80d8f0c7bdb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ff26bd2e-6321-4655-bc87-ee38a4e0a654" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "01153b0d-a66b-4bad-8184-430d747f9362" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215332Z:01153b0d-a66b-4bad-8184-430d747f9362" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5258A8CCBF0244B0B5BD2C974C0D2556 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:32 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNDYxLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d6c9291f-678f-44b0-9325-217f09a347a0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12454,Microsoft.Compute/GetVMImageFromLocation30Min;73451" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cde05ff5-1fd6-4275-90e7-bf4b395f0ff8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7f74a7da-1d84-49c3-9272-ee7736747ee2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3b579e75-4344-4db4-94f0-f1cdd205784a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215131Z:3b579e75-4344-4db4-94f0-f1cdd205784a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8172C811DD8F44CE96F92D706675FEF5 Ref B: MNZ221060618035 Ref C: 2025-06-02T21:51:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:31 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNDYxLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11881,Microsoft.Compute/GetVMImageFromLocation30Min;72523" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8f669650-bbd7-45bc-82b3-3f3623d4c134" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4f9afebd-ccd0-4019-a2d8-aa09afa8354a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "07c3a632-df01-4104-b330-4b6c8295b5fe" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215332Z:07c3a632-df01-4104-b330-4b6c8295b5fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD505C92F48841CAB0F01F25B92E1B07 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:32 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNTI3LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d93b3f8d-8ed2-47a2-a203-961af847e2bd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12453,Microsoft.Compute/GetVMImageFromLocation30Min;73450" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6784d2b0-84af-418f-b033-8ce1051e6cb8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/574a6fc1-ce97-4196-9e8a-4b945716c990" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "40406675-3433-43f3-bb08-a9f722b0b79b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215131Z:40406675-3433-43f3-bb08-a9f722b0b79b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 85926D423CA740DA9D957AE8CC366E34 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:51:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:30 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNTI3LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11880,Microsoft.Compute/GetVMImageFromLocation30Min;72522" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cbc3291a-86d8-4555-a6d9-74d5942424c8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/485ea4fb-c0e4-4811-b7c1-39b7d5aea2c5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "80d546ca-b45e-40bc-b37f-beec555278d8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215333Z:80d546ca-b45e-40bc-b37f-beec555278d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A2C64327C9A040F38DCEEAE7B46A84E7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:32 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNTI5LjI0MDYxOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ac455918-281a-4362-a4f8-3dfc352b9ea9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12452,Microsoft.Compute/GetVMImageFromLocation30Min;73449" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "035706fe-4179-4012-b2ad-6cc1f4f262ed" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5535a976-d16f-4c58-8414-5a867dbb9e56" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3fc666ec-29d8-43d8-9e55-587f6e70fc6d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215131Z:3fc666ec-29d8-43d8-9e55-587f6e70fc6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7E795E82E73A4687A9097E0E7BEC40D8 Ref B: MNZ221060619025 Ref C: 2025-06-02T21:51:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:30 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNTI5LjI0MDYxOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11879,Microsoft.Compute/GetVMImageFromLocation30Min;72521" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "96ce923d-77f2-437a-ba4e-e7cf68744ea3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e80aceeb-fb8c-441b-883a-ea76765dc0fa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "7dab1e60-7f4a-48b7-83b5-d7b8a8a919c9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215333Z:7dab1e60-7f4a-48b7-83b5-d7b8a8a919c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BB402C1153A347609502DB702665F12C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:32 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNTgyLjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "629fabcb-313c-4897-9282-de02c6d9d36d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12451,Microsoft.Compute/GetVMImageFromLocation30Min;73448" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "686b25bb-a907-4c9a-b02e-1ffe17cb3995" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7814a9d6-58fa-40fc-ae67-e5e66173f08f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b3ecd924-2423-4603-be6c-fbfb247e592c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215131Z:b3ecd924-2423-4603-be6c-fbfb247e592c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 59BB161E43FB452EA2701BDF1AB90E60 Ref B: MNZ221060609049 Ref C: 2025-06-02T21:51:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:30 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNTgyLjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11878,Microsoft.Compute/GetVMImageFromLocation30Min;72520" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "94912bbc-944e-45b3-80db-d4b4e176db0a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3ae970f0-5874-46be-9086-49cff9cfd94b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "dfc8da39-213a-4201-b902-65cb531f9080" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215333Z:dfc8da39-213a-4201-b902-65cb531f9080" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7D6FF8CE27454D1DB04EDE31C9F5BF3E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:32 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a039b399-3fc5-4360-8f55-615a342f8500" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12450,Microsoft.Compute/GetVMImageFromLocation30Min;73447" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8425faca-6db8-4f22-95b0-2f6efaa0872e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/28f16f4b-9ff2-45be-a99f-748513144654" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7ac995e5-4b15-4c4b-9f8a-945fbbaa306f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215131Z:7ac995e5-4b15-4c4b-9f8a-945fbbaa306f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BA4C365F58C448BCB3114E8536FA8399 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:51:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:31 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11877,Microsoft.Compute/GetVMImageFromLocation30Min;72519" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e81ced98-7c1a-4483-86fe-bdeff69fa9b9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6084ba01-1862-4f11-ade1-391762111db2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "cbde5298-ba14-4515-a149-3148315a1087" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215333Z:cbde5298-ba14-4515-a149-3148315a1087" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EB04013C5AE64D5A9348F73B8CC05695 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:32 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNzAwLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eaa9dd1c-72c0-4172-b779-37dfa95b8636" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12449,Microsoft.Compute/GetVMImageFromLocation30Min;73446" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e1945005-0247-4471-b8cd-a2a9126b006f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fa62f76c-4ef3-458e-95f0-ddbdf28e688d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f8c8f437-54c9-48c1-a42e-67ee72cde598" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215131Z:f8c8f437-54c9-48c1-a42e-67ee72cde598" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2837FEEECAC744A5ACAD9E536CB8D9E3 Ref B: MNZ221060619047 Ref C: 2025-06-02T21:51:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:31 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNzAwLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11876,Microsoft.Compute/GetVMImageFromLocation30Min;72518" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6b90ca35-58f1-45ff-b87c-a45af75833ae" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c8244a83-e0bb-42d9-837d-8b5b433c028b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "75d4a9db-bc16-4dcb-8a1e-32cf5ff236e8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215333Z:75d4a9db-bc16-4dcb-8a1e-32cf5ff236e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0930E14E8BB6492B998DFD2D5F500738 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:32 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTAwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eb0603a0-5289-4866-ada3-7fb0dcc01e79" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12448,Microsoft.Compute/GetVMImageFromLocation30Min;73445" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a2daee1c-6ca7-4090-926c-7ec97c3a1dcf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/99eaf8d7-1520-45f1-bdb4-6717a356323d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b1b802bf-8dff-4f65-859b-d911258c72f2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215131Z:b1b802bf-8dff-4f65-859b-d911258c72f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FEC29CCEBCA74F55B22BF1E44963FDFD Ref B: MNZ221060609025 Ref C: 2025-06-02T21:51:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:31 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTAwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11875,Microsoft.Compute/GetVMImageFromLocation30Min;72517" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "051bf562-7d26-4701-9967-e2d5ed110314" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b15f8e00-4d5b-42d1-9d62-43c951194897" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "21b7ad13-edcf-43e4-901f-75fe5b2d8528" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215333Z:21b7ad13-edcf-43e4-901f-75fe5b2d8528" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 631E89B45AEB48A881BB0D6D229C7116 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:32 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yODQ5LjI0MTEwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dba78113-8be8-4b01-954d-8597d8c9a145" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12447,Microsoft.Compute/GetVMImageFromLocation30Min;73444" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "333b7619-db74-4359-b83e-a9f318da3b5a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6a92e319-1e05-4a98-b172-91fda9e78f90" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0d3bacb7-c306-41f3-807d-b4c1d52c04fd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215132Z:0d3bacb7-c306-41f3-807d-b4c1d52c04fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CA4F8CEC3CD3487E98F1CE2436DA629C Ref B: MNZ221060610035 Ref C: 2025-06-02T21:51:31Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:31 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yODQ5LjI0MTEwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11874,Microsoft.Compute/GetVMImageFromLocation30Min;72516" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f7fd21f3-ecea-44a9-92ee-167907d74821" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e446fee1-e541-4844-8410-8a0d8de7a257" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7e8ccb93-6479-4c86-9b4c-c99e5d421084" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215333Z:7e8ccb93-6479-4c86-9b4c-c99e5d421084" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6ED547445C5747A1A88AEDB621770CDF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:33 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yOTY2LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2e5e4a27-bec7-4f04-902b-011e58101f22" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12446,Microsoft.Compute/GetVMImageFromLocation30Min;73443" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "821e386a-0070-45a0-9bb2-7f7926a2c8b4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3f93f2e8-01bf-40b4-87f4-4353a6a24f1a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0c2c826f-ac46-4791-8b11-6b2815aa8442" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215132Z:0c2c826f-ac46-4791-8b11-6b2815aa8442" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0D2EE553F9954DB2963997A256EDEB60 Ref B: MNZ221060619047 Ref C: 2025-06-02T21:51:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:32 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4yOTY2LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11873,Microsoft.Compute/GetVMImageFromLocation30Min;72515" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "59893705-40c3-4f73-9c4a-7febbdf304d9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f0aa4fa4-db05-439b-bca4-449aecc98699" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0136aef0-a90d-498e-a1ab-6beb15368fef" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215333Z:0136aef0-a90d-498e-a1ab-6beb15368fef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A840A0A2E4DD4ADDB92EE4E1AD0B0D54 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:33 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b892500e-32e6-43cb-915f-2e722b094100" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12445,Microsoft.Compute/GetVMImageFromLocation30Min;73442" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0bfb1339-4469-4c99-b1d8-4be0ddddbaed" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bae90623-118b-4167-b11a-3e61b4cd9862" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b1fe2caa-8a7b-4a39-a107-103b9cc2b2b5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215132Z:b1fe2caa-8a7b-4a39-a107-103b9cc2b2b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 495D7CF4CAA94FD597579684AA1CD910 Ref B: MNZ221060608049 Ref C: 2025-06-02T21:51:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:31 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11872,Microsoft.Compute/GetVMImageFromLocation30Min;72514" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e6e7b5ab-f2a4-4bf0-8365-fae6bc7baa3a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5ffee6f6-ae02-4afa-92ea-e83e430917cc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "3a38de33-a803-4e9c-8e30-544c074ed934" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215334Z:3a38de33-a803-4e9c-8e30-544c074ed934" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 993B30F8257D446287A02B0132657A8F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:33 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4zMjA3LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "85aa89a1-d8ad-4db0-80b0-fb2306f6de8b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12444,Microsoft.Compute/GetVMImageFromLocation30Min;73441" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0583d4d6-6dc3-4c89-9ba2-37df6ac6a2c0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/42181185-f161-4e5f-a074-d18cf1193cec" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f3816753-0970-41a3-82d8-ef5d98b2b590" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215132Z:f3816753-0970-41a3-82d8-ef5d98b2b590" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6896CB741EB644E09C92AB9167538989 Ref B: MNZ221060609027 Ref C: 2025-06-02T21:51:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:31 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4zMjA3LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11871,Microsoft.Compute/GetVMImageFromLocation30Min;72513" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c0a8937f-9822-4e47-9903-650b438d0aba" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d56320f6-45b4-4099-95cb-41e23ccdcee8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "565b210b-7c04-4d9e-b830-fa4706c61141" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215334Z:565b210b-7c04-4d9e-b830-fa4706c61141" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 097CF252BF794184B422FAA1775946CF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:33 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4zMzI4LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7b6f0689-8d95-4737-a6bb-00787ac1315b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12443,Microsoft.Compute/GetVMImageFromLocation30Min;73440" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4da1c80c-3ff9-4efa-8e03-5616394e8440" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/eb6ae160-5667-4b08-beb6-2d4a6dddd747" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a3cf13e9-edfb-426c-8191-2acf400a01fd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215132Z:a3cf13e9-edfb-426c-8191-2acf400a01fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3A3827B995C541DA9C69A723969CEA12 Ref B: MNZ221060610019 Ref C: 2025-06-02T21:51:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:32 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4zMzI4LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11870,Microsoft.Compute/GetVMImageFromLocation30Min;72512" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c2ae91fd-156e-4c31-8878-b20ca4bb006f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5db8cb52-0f82-4308-870b-a098d8ca4b80" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "a9e81486-e472-426e-9362-3c7414f5f1c2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215334Z:a9e81486-e472-426e-9362-3c7414f5f1c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A1372608DE2945BA9F560C657C5A837E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:33 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4zNTYxLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "40d49b2f-435a-48cd-b185-553795d75c25" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12442,Microsoft.Compute/GetVMImageFromLocation30Min;73439" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f7399f8a-57c7-4771-9b49-3c4fad812484" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5e82e3b8-f01f-4dcd-bb71-b010dfb3baa1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "844ec686-8b8a-43c8-bef4-282d2103b088" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215132Z:844ec686-8b8a-43c8-bef4-282d2103b088" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4DC0FBD861C2425EAD20EA246ECB01DF Ref B: MNZ221060618035 Ref C: 2025-06-02T21:51:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:32 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4zNTYxLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11869,Microsoft.Compute/GetVMImageFromLocation30Min;72511" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "da10f53a-0006-4054-9515-7906095dfa9c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b33458f3-3f4f-4bd9-9c81-780ec9a1f698" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "baa62872-5f02-4b0a-966c-13316812084e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215334Z:baa62872-5f02-4b0a-966c-13316812084e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 152E6E54B8D44FF89AABE91D6B10381E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:33 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4zNjkyLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c4eb7c5d-a5bd-4b92-b527-7b51fcca0702" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12441,Microsoft.Compute/GetVMImageFromLocation30Min;73438" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "12d131cc-91e6-47bf-b5bf-e723c672c91d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/24b0a03c-6051-4f6b-bed6-cc662864ad9c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "47458600-77bd-436e-9363-80fd6f658849" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215132Z:47458600-77bd-436e-9363-80fd6f658849" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9C19F792B5DC4A039805A8B13B1FEFF3 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:51:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:31 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4zNjkyLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11868,Microsoft.Compute/GetVMImageFromLocation30Min;72510" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "14093405-80ad-4b94-b0e4-5b990f4ec544" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e69c4867-1b18-43f8-b05f-a1a309dc08bc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1092" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16492" + ], + "x-ms-correlation-request-id": [ + "7bf43cba-eac0-464e-b95b-6ba24befca20" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215334Z:7bf43cba-eac0-464e-b95b-6ba24befca20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 03E143CB44D84133B4C4EB210A5F15A7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:33 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4zNjk1LjI1MDUyMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1ae1c0cb-e7c4-4bd1-93bb-904d6697a0e3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12440,Microsoft.Compute/GetVMImageFromLocation30Min;73437" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6518b570-a7a4-4ae5-9c93-8e3e73eb98e6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f31439e2-9669-43ec-b61a-ee14b98e08fc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "39e8b921-0c85-42bb-adae-a2d698db8d35" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215132Z:39e8b921-0c85-42bb-adae-a2d698db8d35" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB4E37516DC4472D9097DB3901B4EAA5 Ref B: MNZ221060610045 Ref C: 2025-06-02T21:51:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:31 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yMDM0OC4zNjk1LjI1MDUyMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11867,Microsoft.Compute/GetVMImageFromLocation30Min;72509" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "406bd302-0600-4471-82ec-13ff73529e38" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/769786cd-85b3-4a2e-af26-bc187b3cea3e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1091" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16491" + ], + "x-ms-correlation-request-id": [ + "531e6fc4-442b-4ff4-9024-cdebd94e3c80" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215334Z:531e6fc4-442b-4ff4-9024-cdebd94e3c80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DE14F14DF2B7422FAFB3AC640B6EFDEB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:33 GMT" + ], + "Content-Length": [ + "1100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7590e53d-73d2-476c-83bc-41bb1cdb9724" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15943,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43937" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b5dc9894-4462-4caf-a50d-a39303f70b0a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7b344a70-8596-4125-b87c-9b6e3c5ec1fe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bfd9b971-d870-413c-8aa0-fd719c868b6f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215133Z:bfd9b971-d870-413c-8aa0-fd719c868b6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3F8776F870BE4357A7343AEA415C8BB8 Ref B: MNZ221060609031 Ref C: 2025-06-02T21:51:32Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:32 GMT" + ], + "Content-Length": [ + "5673" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15882,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43836" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ee356691-b4c0-4388-892c-c6ef13d4ed94" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bca4fee3-c309-42c4-8198-a1c78abc8128" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "193b5354-8171-4a06-9c18-741a4a56be98" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215334Z:193b5354-8171-4a06-9c18-741a4a56be98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A6DA41C9BDD246269EEED68337A9709F Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:33 GMT" + ], + "Content-Length": [ + "5673" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yMzIyLjI0MDIwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6b6968ae-5d9a-4621-af93-71a932261ec8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12439,Microsoft.Compute/GetVMImageFromLocation30Min;73436" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e885bba0-36a1-433b-89b0-4111dec61cbd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ab2cc0c7-ae88-42f6-89c4-b43c1656b601" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c51a2099-e1d2-436b-a1cb-41bb6dba4fe7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215133Z:c51a2099-e1d2-436b-a1cb-41bb6dba4fe7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B7FEC10D9F649ECA8F600234418E343 Ref B: MNZ221060608019 Ref C: 2025-06-02T21:51:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:32 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yMzIyLjI0MDIwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11866,Microsoft.Compute/GetVMImageFromLocation30Min;72508" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b5bb2b9f-9e1a-4068-8753-59b46b3c1d0c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/73226124-6683-4d1a-a5a4-9eb3375a94dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "a863d79a-3157-4317-a92d-aeaaa1078847" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215334Z:a863d79a-3157-4317-a92d-aeaaa1078847" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BFE2955868144664B88D2C30982017AD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:33 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yMzQwLjI0MDMwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c01b72d9-7abe-49fa-b6bf-89da0ea6edd0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12438,Microsoft.Compute/GetVMImageFromLocation30Min;73435" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e00706b4-5972-4963-b27e-779c398034c4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ee2cfcd7-699c-4fcd-a308-728231ce17df" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ca29c064-b1d2-44e2-9569-339b37ab47dd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215133Z:ca29c064-b1d2-44e2-9569-339b37ab47dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0E207252A92E430180AA3CE75B58EB26 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:51:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:32 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yMzQwLjI0MDMwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11865,Microsoft.Compute/GetVMImageFromLocation30Min;72507" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4ea3e875-6ccc-4712-bdee-1e257b09bc3f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9308ff37-72a4-4a3e-bf0c-3ac826e747a4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c7340b88-e45e-4ffb-af1e-0cd7afce11b3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215334Z:c7340b88-e45e-4ffb-af1e-0cd7afce11b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 777AA0802EE84A988C8F05B0CD323F8F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:33 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDQwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d216496d-1635-4910-ab76-6bf1a661f10c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12437,Microsoft.Compute/GetVMImageFromLocation30Min;73434" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b0409f17-5bd1-46a6-b82a-9566f5db10d2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/36f8a8c0-9e13-4dbd-b7b2-23e4de9db77f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "bf661bcb-193e-4122-a943-10c00197c927" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215133Z:bf661bcb-193e-4122-a943-10c00197c927" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EA61200669BA4B08956531C48F481324 Ref B: MNZ221060608009 Ref C: 2025-06-02T21:51:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:32 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNDAyLjI0MDQwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11864,Microsoft.Compute/GetVMImageFromLocation30Min;72506" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "484ecc62-fe54-42f7-b33a-88d92cac6d7e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c053bedb-6afa-4248-b339-00c069ebb5d5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "99cef1d4-9674-447e-8c2e-b70db909bd73" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215334Z:99cef1d4-9674-447e-8c2e-b70db909bd73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 914FEBF9E70F4246B77AA6F6872D274B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNDYxLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "235d4857-5b24-42ee-b436-553579804f40" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12436,Microsoft.Compute/GetVMImageFromLocation30Min;73433" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "48c94006-21b4-4d5a-b315-5c865126dc31" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/08266b7b-a3c3-4cda-8470-f7cf97d660c4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c3769544-4cb3-4115-93c7-6a88605c1b4a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215133Z:c3769544-4cb3-4115-93c7-6a88605c1b4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6045A55108074A95BBB0537C023448E0 Ref B: MNZ221060608029 Ref C: 2025-06-02T21:51:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:32 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNDYxLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11863,Microsoft.Compute/GetVMImageFromLocation30Min;72505" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "67adf4f3-f82c-4064-936b-d8aab25381ec" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/538cbc3e-11c1-4d72-9a19-1afeac823dbe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "cf8e3351-11b9-4795-9689-60cfdcb188c0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215334Z:cf8e3351-11b9-4795-9689-60cfdcb188c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 84A13394C6724525BC50299042CEDF45 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1270" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNTI3LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "18f181fb-7152-4a6e-bf97-e776a1c15c8f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12435,Microsoft.Compute/GetVMImageFromLocation30Min;73432" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a1b6e9ab-93bb-4837-b0f7-f493de63d7ec" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cd5c71cd-ebbd-415d-a57e-9cdb625597af" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "269a707a-9cd2-43c1-9628-a25b435aa850" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215133Z:269a707a-9cd2-43c1-9628-a25b435aa850" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C73D79E634A5410096E809FA51E4774A Ref B: MNZ221060609045 Ref C: 2025-06-02T21:51:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:32 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNTI3LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11862,Microsoft.Compute/GetVMImageFromLocation30Min;72504" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "850b31fa-35c1-40bc-a276-08b4bcb11c89" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f0adc804-5d81-4a34-8d9f-6fede7098518" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ca11368f-fddf-473b-bfae-141123330922" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:ca11368f-fddf-473b-bfae-141123330922" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E643ADFB5F6422192E5E9064085E0AD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNTI5LjI0MDYxOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "97b6f35b-d9b6-4fe0-9a80-01162304e1ba" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12434,Microsoft.Compute/GetVMImageFromLocation30Min;73431" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f26992e7-26a0-4815-85fc-0faa27bf6645" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f625528e-e5f2-4cea-801e-3110cf63192b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ab6478db-5361-452e-a680-ed7e14c90357" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215133Z:ab6478db-5361-452e-a680-ed7e14c90357" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F61BA986DD33499EBE5A1993B8F4F6D9 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:51:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:33 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNTI5LjI0MDYxOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11861,Microsoft.Compute/GetVMImageFromLocation30Min;72503" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ebed4541-4b99-4491-b272-63d692f11eb0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/64a1236e-7674-4e50-868f-2770214b7350" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "c5e4283d-0457-4f81-a6e2-26d69941096f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:c5e4283d-0457-4f81-a6e2-26d69941096f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7B7FF0111A0D4F95A740290E0FBB11FB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNTgyLjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "449fed0a-03c8-4402-84da-5a92cb4716d6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12433,Microsoft.Compute/GetVMImageFromLocation30Min;73430" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "61edb002-33fa-4af8-98d7-2aed00ce6b67" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3fc73fe1-91a3-407e-9c39-c1211405bac5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "648fe98d-7210-4cb9-9d5b-880d624d6f7e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215133Z:648fe98d-7210-4cb9-9d5b-880d624d6f7e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C6962E45893D45BEBEE5BD9FD29BF910 Ref B: MNZ221060609027 Ref C: 2025-06-02T21:51:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:33 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNTgyLjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11860,Microsoft.Compute/GetVMImageFromLocation30Min;72502" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "17a66113-876a-4dbb-86ed-0e34f5717739" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1fa7c4bd-0182-4afa-a245-c9950070080e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ec04d886-91a5-4aed-9122-9c1deb5748e3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:ec04d886-91a5-4aed-9122-9c1deb5748e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 027AFD2AEC4546F59EA447B6217198E9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "da70597a-1016-4436-9844-56a42f82c460" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12432,Microsoft.Compute/GetVMImageFromLocation30Min;73429" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4d302298-f1a5-4f33-9bec-d29a5a99f6f7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6be7e206-ccad-4fc2-8422-3c9af0505934" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5a27fd1c-36cd-4421-9c46-fd5d3f257a66" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215134Z:5a27fd1c-36cd-4421-9c46-fd5d3f257a66" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C15B1C0362044FB885B17B05EA0062F4 Ref B: MNZ221060610025 Ref C: 2025-06-02T21:51:33Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:33 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNjU1LjI0MDgxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11859,Microsoft.Compute/GetVMImageFromLocation30Min;72501" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "225d8f03-a143-418a-803f-8cafbbcd1775" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/659e3f32-2aad-4417-9860-d7f9ae1f2119" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "fd511f1a-af0b-4bc0-8c72-541c6bec3710" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:fd511f1a-af0b-4bc0-8c72-541c6bec3710" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 350840B42B0D44C7B66392CBDA401BA8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNzAwLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4b21d725-6262-4e3e-8ff6-47a961029796" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12431,Microsoft.Compute/GetVMImageFromLocation30Min;73428" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "333a2d83-e718-4461-ba00-409692d6e34d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0bf53c39-045c-459f-acb6-3fe31f391c5e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6027680d-3928-48a8-b528-cea136df814c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215134Z:6027680d-3928-48a8-b528-cea136df814c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B176AFA6F5584CF8BDEC060528FB6B63 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:51:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:33 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNzAwLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11858,Microsoft.Compute/GetVMImageFromLocation30Min;72500" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c6ad3cf8-8571-4510-92e6-b5cb9ab34405" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ffc63c2e-d265-4fcd-883b-2b587a35b69a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "04f8158d-3c03-46e4-8be5-099d532f571b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:04f8158d-3c03-46e4-8be5-099d532f571b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DE82FA0C2A4E4079836F08A8BF4D4753 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTAwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1d12bcff-1992-4d41-8ec9-743a9852d7fd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12430,Microsoft.Compute/GetVMImageFromLocation30Min;73427" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "de842549-be1e-4a1d-9d6c-9d89318a1105" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0e79a0a7-539e-4843-ac71-ee3c95c7d80b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "54712ba9-052f-4fd1-8a99-40df54057ec2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215134Z:54712ba9-052f-4fd1-8a99-40df54057ec2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6325D03FCDA7453C939B280B3BA8C936 Ref B: MNZ221060610049 Ref C: 2025-06-02T21:51:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:33 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yNzYyLjI0MTAwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11857,Microsoft.Compute/GetVMImageFromLocation30Min;72499" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "51cbe109-ff5c-467b-8250-2360d8248b89" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/54bea052-c015-467f-b287-c0e56d31a197" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "9a1013d3-ad10-4c69-a85f-044669be54cf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:9a1013d3-ad10-4c69-a85f-044669be54cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ADA866A853D34AA48E1F475AE42859FA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yODQ5LjI0MTEwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "141de114-fd57-4dfe-abe7-6c25175a9535" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12429,Microsoft.Compute/GetVMImageFromLocation30Min;73426" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "69a41c4d-18f7-4c1a-b27e-945a1ec404f0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/97d3690c-408d-4ae5-b97e-3fb846c9e2f6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cf99c334-d5e4-4c1f-9850-8f8f1fa1f563" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215134Z:cf99c334-d5e4-4c1f-9850-8f8f1fa1f563" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CF31A14D85FF488181339873C5D72459 Ref B: MNZ221060608009 Ref C: 2025-06-02T21:51:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:33 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yODQ5LjI0MTEwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11856,Microsoft.Compute/GetVMImageFromLocation30Min;72498" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "64b2bbe1-92c5-4b6b-8fed-142bc861de04" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c0c21ab8-f1ed-4d5c-bdfe-74fa814ef2b0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "37ab68cd-4aa1-41c6-8376-73c2be11cf83" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:37ab68cd-4aa1-41c6-8376-73c2be11cf83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D60A62B65370481082CABF7945EE45F7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yOTY2LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ab8ada2a-23a9-41a2-b741-f9d398c6331e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12428,Microsoft.Compute/GetVMImageFromLocation30Min;73425" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d3b7483b-dda4-4e87-9855-762bccc3cf52" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1dda2923-a8f1-4043-8336-b5d46dfc0178" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e5826b19-c541-4d82-823f-bf4e6d171c69" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215134Z:e5826b19-c541-4d82-823f-bf4e6d171c69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3FB340FEEE1A46DFABEF4F804FF6F019 Ref B: MNZ221060610047 Ref C: 2025-06-02T21:51:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:33 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4yOTY2LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11855,Microsoft.Compute/GetVMImageFromLocation30Min;72497" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "454cddba-4bc0-4983-9ce2-898146130475" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/32d5790b-f967-4056-85f7-510b8faa0011" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4e324882-d0ca-4b76-a6a9-5bde99119e51" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:4e324882-d0ca-4b76-a6a9-5bde99119e51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FCCA5172103A4992A13FC22192914770 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2e4f95e8-052f-4f8f-9402-1f158d1783f6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12427,Microsoft.Compute/GetVMImageFromLocation30Min;73424" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87784c81-b63e-4f77-a939-3b2b1755517e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8a9c2034-d3b6-4ea4-921c-da74934ddc6a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bef95cb8-f1d4-45a5-98ad-88eb1bd42fae" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215134Z:bef95cb8-f1d4-45a5-98ad-88eb1bd42fae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F49451D4132B4E99BF85AD928FC4F6AD Ref B: MNZ221060610017 Ref C: 2025-06-02T21:51:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:33 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4zMDkxLjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11854,Microsoft.Compute/GetVMImageFromLocation30Min;72496" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fe2f332a-b56f-4bea-9ffe-e3ad7f311aed" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/feb99e4c-5842-44b2-b6d7-4f37d3171b9b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "601959d1-b094-44a3-b00b-054757c839ac" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:601959d1-b094-44a3-b00b-054757c839ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A01CE63DFA9A4B91BB45CAB746D8C4A1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4zMjA3LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "83e8034c-a5d2-4ab2-a170-d4592eb19b56" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12426,Microsoft.Compute/GetVMImageFromLocation30Min;73423" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "889e3341-6e4b-4e6d-922a-c822adc79d7c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4ac12ff2-b74b-4bf8-a170-99104e6d7188" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "98821dc0-2ee4-4da0-a53b-ebde11d8dece" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215134Z:98821dc0-2ee4-4da0-a53b-ebde11d8dece" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E23F7F67EE514D598A60375A64409655 Ref B: MNZ221060619011 Ref C: 2025-06-02T21:51:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:34 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4zMjA3LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11853,Microsoft.Compute/GetVMImageFromLocation30Min;72495" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c544b188-59dc-46a9-ab1f-e6feea9805c8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d7304dc4-8567-426d-ae02-0cc0e975a9f5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "09be9dd1-1076-463e-9a62-7409ab84bf83" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:09be9dd1-1076-463e-9a62-7409ab84bf83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 93EA083B583B40A5A94C69B78F723022 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4zMzI4LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2dad26b4-5774-4443-be2c-00e82fdd1601" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12425,Microsoft.Compute/GetVMImageFromLocation30Min;73422" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7dca9cf1-61db-477a-bc06-f468bb38bb97" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/514223c3-1097-4d53-ad83-50db60dcfe0e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e99dd271-cae0-45e8-9de5-85eb220047a3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215134Z:e99dd271-cae0-45e8-9de5-85eb220047a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D67213D8B423457CA3A1995DDF7868B7 Ref B: MNZ221060609029 Ref C: 2025-06-02T21:51:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:34 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4zMzI4LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11852,Microsoft.Compute/GetVMImageFromLocation30Min;72494" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5d039ba2-4f67-4d59-a4f7-01be07574357" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dac69eac-ecd7-4670-bfbc-0f77fc0bd483" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bf01b9fb-f677-4d66-b778-bb0895942710" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:bf01b9fb-f677-4d66-b778-bb0895942710" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 823E396AC5CA4C39B4698614AC6D252B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4zNTYxLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ccc0a76a-cf37-4589-b269-71a58e25073f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12424,Microsoft.Compute/GetVMImageFromLocation30Min;73421" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "877a7fee-d05f-4d95-b043-e1864b4cee2b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/12dd4090-16a6-43b0-afb5-1e4ca5863e01" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "47bf335f-3428-4c73-9adc-a34040cdcdc6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215135Z:47bf335f-3428-4c73-9adc-a34040cdcdc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B5D8560E06114164B5EB0D12B246C567 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:51:34Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:34 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4zNTYxLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11851,Microsoft.Compute/GetVMImageFromLocation30Min;72493" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f8d75b1d-f128-4ced-ab67-8cfd4126f2cf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5afb8a01-42c6-4359-b7d2-17a61394afd5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6f55d5e2-2ba6-4b83-9cf2-563c4a0ada27" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:6f55d5e2-2ba6-4b83-9cf2-563c4a0ada27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2B091B3A5F774600B2C8EFBF5601DD6A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:34 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4zNjkyLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3b9c16a3-42be-4227-a46b-b88ae29ad49c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12423,Microsoft.Compute/GetVMImageFromLocation30Min;73420" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fd8feaba-acb6-4d21-8391-2c2c94b111c2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fd5ecd57-90e3-45e3-b805-63cdd01ec09a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "513405b8-ad82-4bd6-93ac-57a0e01c7b85" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215135Z:513405b8-ad82-4bd6-93ac-57a0e01c7b85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8A2EF649DCCE4AD1BDE06A3CA7BA3B80 Ref B: MNZ221060610045 Ref C: 2025-06-02T21:51:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:34 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4zNjkyLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11850,Microsoft.Compute/GetVMImageFromLocation30Min;72492" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "886545a3-f8a3-45d1-bde1-67484c51c6f2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c8b0206e-68fe-4a06-a3d7-37e8a6bea9b4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1090" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16490" + ], + "x-ms-correlation-request-id": [ + "5ebb1b5d-bf96-41ea-bb70-f3f386c707cb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:5ebb1b5d-bf96-41ea-bb70-f3f386c707cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B5496001028E46D2A67D19DB8A99DDBE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:35 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4zNjk1LjI1MDUyMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b70a7a81-09a5-476b-8d26-23011c3bbfa4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12422,Microsoft.Compute/GetVMImageFromLocation30Min;73419" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9b8f33a4-aeb3-4f92-86c1-db2ef8156f56" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b17566c1-9361-4175-aff4-8cd4e73efc6f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cd880109-10a3-4857-872d-67cc628dc7c0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215135Z:cd880109-10a3-4857-872d-67cc628dc7c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 27522EE3DE0E40D3B65995E323C65B65 Ref B: MNZ221060619037 Ref C: 2025-06-02T21:51:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:34 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-g2/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yMDM0OC4zNjk1LjI1MDUyMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11849,Microsoft.Compute/GetVMImageFromLocation30Min;72491" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9f55fc68-e035-469a-a0d3-053d1b91e2b9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/93a6e87f-9693-4ec9-905b-161485964798" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "ce74fa46-fa76-4b8d-a1fa-e6c9e52320e9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:ce74fa46-fa76-4b8d-a1fa-e6c9e52320e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5917BC108D1142ACACB4F938CA6E7815 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:35 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-g2/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "78397b60-d93d-41ec-9748-487aa5dc3110" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15942,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43936" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bb13a798-49e9-42bf-b807-d2175fb8756e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e97edf06-43f7-4cc6-bbb3-43a294ba7156" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "de20ac45-d454-4588-8f47-91b9dd825919" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215135Z:de20ac45-d454-4588-8f47-91b9dd825919" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E5EB738E093C4D2492942F68E993347B Ref B: MNZ221060610031 Ref C: 2025-06-02T21:51:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:34 GMT" + ], + "Content-Length": [ + "5799" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15881,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43835" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "95a22d19-8479-448e-b3b8-78b271b6c3e4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/598ac6c1-c5d9-4218-b782-0fea19002d16" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "7f225a00-62fd-4ed4-b464-61febaadc669" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215335Z:7f225a00-62fd-4ed4-b464-61febaadc669" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B44DA807F74040528CC043429DC80A54 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:35 GMT" + ], + "Content-Length": [ + "5799" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjMyMi4yNDAyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b076561d-1956-4b30-b05e-70771890f392" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12421,Microsoft.Compute/GetVMImageFromLocation30Min;73418" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0a33c103-47f8-4fbe-8f8b-734e77b00e1f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/63895c0f-8ff4-4f2d-8b51-b39efeaf18e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "79def02f-ac22-49b6-8a37-9d35fba5e9bb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215135Z:79def02f-ac22-49b6-8a37-9d35fba5e9bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 25F14907B11740A8B876E39D23C03154 Ref B: MNZ221060618039 Ref C: 2025-06-02T21:51:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:35 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjMyMi4yNDAyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11848,Microsoft.Compute/GetVMImageFromLocation30Min;72490" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "67a93a57-77f1-47b5-9894-cf7d123c7b7b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ecbb32c5-26e2-4d91-b618-304323c90d40" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "df743532-cbbe-4b6d-8dff-b9c828bd6364" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215335Z:df743532-cbbe-4b6d-8dff-b9c828bd6364" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CCC980522CD843C8891E4CDF8FE37CE3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:35 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjM0MC4yNDAzMDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "20da6dfa-bd3c-452b-a807-ca9b84a3086d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12420,Microsoft.Compute/GetVMImageFromLocation30Min;73417" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "169df083-9387-4e7e-a58a-0422e6cbe168" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7571ccef-ebcd-408c-a165-c45b7f060398" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e673d627-fee7-4287-9186-744a28c673b9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215135Z:e673d627-fee7-4287-9186-744a28c673b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A7F550F79CEB41D59721FDFA32D6650F Ref B: MNZ221060610011 Ref C: 2025-06-02T21:51:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:34 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjM0MC4yNDAzMDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11847,Microsoft.Compute/GetVMImageFromLocation30Min;72489" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "304e5d3b-b1d5-4bc8-8bbe-508c63c79399" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cb4ba03b-6035-4cc1-bad9-1816487acc8a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "117a79bc-8e75-4a1f-84b6-610ad8186920" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215336Z:117a79bc-8e75-4a1f-84b6-610ad8186920" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2BE806DD7E92423487F551559378DDCA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:35 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA0MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ceaa6d79-8ca1-4a32-8d65-ff232d641913" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12419,Microsoft.Compute/GetVMImageFromLocation30Min;73416" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7f178024-3347-425f-8466-9eb270229ef8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/141b8d3b-d515-46a6-9c27-31fb3111dc7c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d1a6da0d-4a1c-4fa5-adfa-e3487890cc9b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215135Z:d1a6da0d-4a1c-4fa5-adfa-e3487890cc9b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2600D7C5FC0E4E29B970CA32E181F650 Ref B: MNZ221060608019 Ref C: 2025-06-02T21:51:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:35 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA0MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11846,Microsoft.Compute/GetVMImageFromLocation30Min;72488" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "950aa124-4cfe-4a9c-b0bb-c2f3d537ced8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/56a44a5f-4397-4eb3-a7b5-9a670be80460" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "97208f40-2b1a-41a8-b0c8-b22ee2ad6756" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215336Z:97208f40-2b1a-41a8-b0c8-b22ee2ad6756" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EDA842D2360D4A3B9E8D783701F7EE18 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:35 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQ2MS4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2ce348b6-94ff-470b-a8d6-102f0970d12d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12418,Microsoft.Compute/GetVMImageFromLocation30Min;73415" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ccfc1f86-a237-410b-9b63-688b76c1879b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3d60bb6d-31ca-4c63-862b-b022cd0bc4a5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "21177ca4-ba5a-4444-b6f3-c749a935a64b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215135Z:21177ca4-ba5a-4444-b6f3-c749a935a64b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F8CB949F861642AF9721A75B8CE10860 Ref B: MNZ221060610051 Ref C: 2025-06-02T21:51:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:35 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjQ2MS4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11845,Microsoft.Compute/GetVMImageFromLocation30Min;72487" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "477a227a-d4b1-485f-ad42-d703338cf84a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7038be12-c0f8-4912-be2e-24f53f334419" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "c033113b-059d-40fe-b827-a2a6aa1513f3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215336Z:c033113b-059d-40fe-b827-a2a6aa1513f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B1A1056F624443E88D56EB4796D7881E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:35 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjUyNy4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a5dacb56-916e-4772-8e7c-fe9f074338ff" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12417,Microsoft.Compute/GetVMImageFromLocation30Min;73414" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3fc65ec1-e8cd-41a1-aed4-ae40d4aca217" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e3cdf66b-3451-40f3-b5ff-34c8b556d24c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6bee1e41-0c99-434a-973a-8988b0a6a541" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215136Z:6bee1e41-0c99-434a-973a-8988b0a6a541" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2ACAB37E920D480BA4E05C503A81D1F4 Ref B: MNZ221060610019 Ref C: 2025-06-02T21:51:35Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:35 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjUyNy4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11844,Microsoft.Compute/GetVMImageFromLocation30Min;72486" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "75d29993-5661-4c74-9194-9dfd47a5a960" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9fded81e-1027-48c9-9a0c-93b3109316b5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "e8b1855c-29bb-4f16-8295-a1537f10c569" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215336Z:e8b1855c-29bb-4f16-8295-a1537f10c569" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 605AF8F54E44451FBC751F2480C8FA11 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:35 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjUyOS4yNDA2MTk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c4d99c44-ec16-43c1-b08d-38959ad5512a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12416,Microsoft.Compute/GetVMImageFromLocation30Min;73413" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3ae87f06-18f8-416b-95c5-a45042398473" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/15cfd124-1622-4048-af3b-ec34da742ee6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8a759890-38cb-43e3-af2a-5b1dafc915b3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215136Z:8a759890-38cb-43e3-af2a-5b1dafc915b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 97248D3E474349F497670549C4561B08 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:51:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:35 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjUyOS4yNDA2MTk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11843,Microsoft.Compute/GetVMImageFromLocation30Min;72485" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "72571433-6188-4ec1-a6c9-8d1a8d9c01be" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ad2f4492-004a-48cc-a866-94d4e2c83608" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9f10362a-a6a9-48a5-b318-51efe2285576" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215336Z:9f10362a-a6a9-48a5-b318-51efe2285576" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DF1BEA94E2524E80897C3C3F923292F9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:35 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjU4Mi4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6f6023b0-8020-4d80-8543-5c3b5693220c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12415,Microsoft.Compute/GetVMImageFromLocation30Min;73412" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "79d95dba-2f39-43cd-b831-b8316d824ead" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5df8d83f-f32c-4158-9ef1-01ca691c5830" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "22f44d21-5958-4028-9cd4-26b797a23e3a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215136Z:22f44d21-5958-4028-9cd4-26b797a23e3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C6C82F6AF8B94E97A990140756955215 Ref B: MNZ221060608009 Ref C: 2025-06-02T21:51:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:35 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjU4Mi4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11842,Microsoft.Compute/GetVMImageFromLocation30Min;72484" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "055fc767-b27c-4e50-83b2-f62dafb4f9d6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/db1b3c5c-f63c-45ec-91a3-98afa0e6b3ba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2df2caa4-d081-4bd8-a975-7e8f70b2c524" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215336Z:2df2caa4-d081-4bd8-a975-7e8f70b2c524" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 101442C1650A43FBA46AFA9D2648F440 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:35 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA4MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f34cdf47-e345-4fec-baac-62dd5f251102" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12414,Microsoft.Compute/GetVMImageFromLocation30Min;73411" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f0f3d0f2-7a55-46b2-a2b3-7c1df012231d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5d36c3f6-f878-4e73-85ab-97ac055a233f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d0a69189-3710-4aa5-93e0-c1cfb565bc1b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215136Z:d0a69189-3710-4aa5-93e0-c1cfb565bc1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 512DDC58C3974A33AD483796E7594A67 Ref B: MNZ221060619031 Ref C: 2025-06-02T21:51:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:35 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA4MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11841,Microsoft.Compute/GetVMImageFromLocation30Min;72483" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "61f4b4cd-6141-4b3e-9656-8f618674d6bf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6cfc8878-31bc-4bef-897d-0cda384365e9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3259e386-91f5-4859-8fa7-b0a8941f3731" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215336Z:3259e386-91f5-4859-8fa7-b0a8941f3731" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7A89C508356B4107BAABC68CC0524B81 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:35 GMT" + ], + "Content-Length": [ + "1061" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjcwMC4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b3cb7b04-9e47-4920-a09c-a0a0eb5d2cdf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12413,Microsoft.Compute/GetVMImageFromLocation30Min;73410" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "92330a4f-0d0d-4f5c-85da-2eece989193e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/716c03d8-1da4-4237-8be0-d2a151dd615a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6ecf8cb8-60f3-4a71-bc08-b971e3abf133" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215136Z:6ecf8cb8-60f3-4a71-bc08-b971e3abf133" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 499762618B0C4770947F3BD3BCA6C837 Ref B: MNZ221060608037 Ref C: 2025-06-02T21:51:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjcwMC4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11840,Microsoft.Compute/GetVMImageFromLocation30Min;72482" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4e181749-5ab2-41c1-896c-2141c4fb3356" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c83ffdcd-95ca-4281-8076-386389c1db0f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "2f75a947-5b51-4814-b2d3-f4f680263857" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215336Z:2f75a947-5b51-4814-b2d3-f4f680263857" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C07D487042AF42B6B2C10DECF0CD804A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:35 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d12ba0a4-b90c-4ac2-9699-891407ce3ec0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12412,Microsoft.Compute/GetVMImageFromLocation30Min;73409" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "28154715-714b-4c4a-82c9-c4c384097e80" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f939d660-20ad-4d59-b26c-f237446706ce" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2ea1f572-464b-40e1-9c83-39f6f6d9db9a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215136Z:2ea1f572-464b-40e1-9c83-39f6f6d9db9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A3B4D0CA95794F93BE03B700DF800BB3 Ref B: MNZ221060619029 Ref C: 2025-06-02T21:51:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11839,Microsoft.Compute/GetVMImageFromLocation30Min;72481" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "621c88e4-2fdb-4d56-8f48-ff40fb7425c6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e4d92a65-ad6e-4731-819e-656a5ca79840" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "781d5478-11e7-4b84-b086-d3293ba9355c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215336Z:781d5478-11e7-4b84-b086-d3293ba9355c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4768D6CAD56C4CCA981EAB2A22E7F202 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:35 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjg0OS4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "824af4d7-1b4c-4ea9-a076-2be8bbd28fc3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12411,Microsoft.Compute/GetVMImageFromLocation30Min;73408" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "863db74a-b62d-4853-84bf-fa4622fd32fc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/38000370-8795-4d3d-a874-06de532ca521" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e3fdfadb-72d9-4eac-b16b-844fbe07c9a6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215136Z:e3fdfadb-72d9-4eac-b16b-844fbe07c9a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 446B10251DC4430D8C12473867FD02F8 Ref B: MNZ221060618037 Ref C: 2025-06-02T21:51:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjg0OS4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11838,Microsoft.Compute/GetVMImageFromLocation30Min;72480" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "18899e5d-5927-4b1a-aa1e-d808227a11d0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1db1e440-f6eb-42a9-8112-c97a8557d8f7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "bcfc7a3c-47fe-4dfc-b4b9-78001335b23c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215336Z:bcfc7a3c-47fe-4dfc-b4b9-78001335b23c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2ED8789C9207434F813D32D2EAF162D5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjk2Ni4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2052d9fb-21dd-44a5-a3ea-684aef57b033" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12410,Microsoft.Compute/GetVMImageFromLocation30Min;73407" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "36b95b90-99b5-4ec9-8011-3a1166a6336c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/df245bbb-6d20-4819-8b26-1c699cb4a689" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f749740a-7fa3-40cd-8b65-8bb3a5b9b7ef" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215136Z:f749740a-7fa3-40cd-8b65-8bb3a5b9b7ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0C47B6F848C54C99BF968F2BA609829B Ref B: MNZ221060619023 Ref C: 2025-06-02T21:51:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMjk2Ni4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11837,Microsoft.Compute/GetVMImageFromLocation30Min;72479" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d800ef9d-3b16-47a9-89bf-12de947ca605" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b7521178-e3a4-4436-83d5-e08bfcd24521" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ab01e7b8-0eb4-4e51-88cb-521ff45216fe" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215336Z:ab01e7b8-0eb4-4e51-88cb-521ff45216fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 10CBD3A489BB426182EA9B276EA77B1D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5bf4fd03-1a02-4a1c-acae-f6645b19bfc2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12409,Microsoft.Compute/GetVMImageFromLocation30Min;73406" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8bd1b443-6772-4135-bf1e-0263a9a4525d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c8b4776a-34de-4941-8b00-93b34751acb5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "002c097c-a0f6-41c9-bb4e-c1f1de8a19ea" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215136Z:002c097c-a0f6-41c9-bb4e-c1f1de8a19ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 817528007AEB4E30B6D5A92AC80CBF0D Ref B: MNZ221060618029 Ref C: 2025-06-02T21:51:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11836,Microsoft.Compute/GetVMImageFromLocation30Min;72478" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "61e298cb-29e6-4e79-b9a4-4616948efde9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/27f55218-933b-4329-888c-7402b51b7757" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "9595ee35-295b-46f7-a886-c34e24179a31" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215336Z:9595ee35-295b-46f7-a886-c34e24179a31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D3F13E929CB54FB3B7D634F6953FE70E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzIwNy4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "02b16c45-9883-45dd-ac60-7bce452e74c4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12408,Microsoft.Compute/GetVMImageFromLocation30Min;73405" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f7b91ce3-d88f-410b-90d9-c81eae8986f8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0cbfe7a9-f56c-4aca-9f98-b9919b42398a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ca7de8c8-4029-48ca-986d-794a063513f5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215137Z:ca7de8c8-4029-48ca-986d-794a063513f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 42B55D1D30914B61ACC03920047629E8 Ref B: MNZ221060610019 Ref C: 2025-06-02T21:51:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzIwNy4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11835,Microsoft.Compute/GetVMImageFromLocation30Min;72477" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4e885ce1-8c73-432d-aad6-c920758f4ed0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/06d09830-978b-4d99-a502-3d4bad7a6248" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9b3a3fbc-b32a-4b48-915d-73aec8e6ff14" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:9b3a3fbc-b32a-4b48-915d-73aec8e6ff14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A1B179CEAB4945DC8D1C4573D152C0E7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:36Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzMyOC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5c366f7c-726c-4c09-a650-e11abf39ae7b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12407,Microsoft.Compute/GetVMImageFromLocation30Min;73404" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7d57e403-e671-4f26-9366-7c3a04641140" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b5011db6-0509-4991-bcbe-b97a020f9cbb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "29c2b384-3a1b-4466-ba91-aaf551880cee" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215137Z:29c2b384-3a1b-4466-ba91-aaf551880cee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C6E0F6C5C7D14025A0162EDFA819B143 Ref B: MNZ221060619045 Ref C: 2025-06-02T21:51:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzMyOC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11834,Microsoft.Compute/GetVMImageFromLocation30Min;72476" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "75e8acfc-4079-43fa-a17d-7aa2835eef82" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/82e4be24-5cdb-4a6c-8685-a05f83d63393" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "c3cbe157-75f0-41c7-9278-9f946e0c0018" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:c3cbe157-75f0-41c7-9278-9f946e0c0018" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4A3153CC95C747A78FE5036E2780A8EE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "42f2beec-a55f-45da-8b5b-12a7f598efad" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12406,Microsoft.Compute/GetVMImageFromLocation30Min;73403" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d70950fe-1672-4b72-8009-afb7e4606121" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fa4252ce-ec4e-4aef-b5f4-6751e786c1d0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a719dc55-135d-42e2-ad47-7e992b242818" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215137Z:a719dc55-135d-42e2-ad47-7e992b242818" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7547CA20488542A9909F6251CDAFC3A7 Ref B: MNZ221060619011 Ref C: 2025-06-02T21:51:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11833,Microsoft.Compute/GetVMImageFromLocation30Min;72475" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d4508139-7888-46e5-9ccd-502064b4a6e2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3f199aea-5f57-4e3b-97f1-9da03b8881a7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e1adc408-1bfa-4ba4-bd33-e2a9e457e998" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:e1adc408-1bfa-4ba4-bd33-e2a9e457e998" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 597AB261A1D64925AE1A04D2F9E96498 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzY5Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "43b93941-062b-44de-abfc-94b745561bfa" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12405,Microsoft.Compute/GetVMImageFromLocation30Min;73402" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6b3f6ba1-a385-4767-b31d-d21f8cd4b48f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5dc3736e-c4ab-4d81-9fc3-6e458e34cad2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c97c27a6-70be-422a-8dd3-b20b2f89d0bb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215137Z:c97c27a6-70be-422a-8dd3-b20b2f89d0bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FEC5C89A4BC6421B80FC26DC600AD9CB Ref B: MNZ221060608035 Ref C: 2025-06-02T21:51:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:37 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzY5Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11832,Microsoft.Compute/GetVMImageFromLocation30Min;72474" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "47269647-e2df-4e87-8e12-d3354493e216" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e40afef6-d495-4141-8d41-e8ab192da134" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "ced732f0-ee57-4a1f-a6d2-baf49cbe10f7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:ced732f0-ee57-4a1f-a6d2-baf49cbe10f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 19244D77904D433BADBEDC47FA5EED25 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzY5NS4yNTA1MjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ac337bba-41e5-4eb2-be3d-b03709944b6d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12404,Microsoft.Compute/GetVMImageFromLocation30Min;73401" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e7630da1-19a4-4dd8-8f74-f39efa040db9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fe2e36be-fc33-4f2f-a7d1-1d1338020b71" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e9c91250-cb01-4348-adfc-d8eea58460c9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215137Z:e9c91250-cb01-4348-adfc-d8eea58460c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 12701161FB5642A3BCFCEE9F2FECB3C2 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:51:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:37 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjAzNDguMzY5NS4yNTA1MjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11831,Microsoft.Compute/GetVMImageFromLocation30Min;72473" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "127dffd6-5ac7-4d69-93ad-1cbfa73c12be" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fd921141-ca49-490a-b25b-3c597855dc5f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e7c9290a-728e-49a5-bc89-8b0cc2ab45b4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:e7c9290a-728e-49a5-bc89-8b0cc2ab45b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C798CA5E506048178003D29EAC02FD82 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "72fc341f-a127-4f58-b4e1-f714b0d7c40f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15941,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43935" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c5c36d8b-b8cb-40e2-95ad-bec5f474622f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/18bd9ad1-db5f-47dd-b3a5-a07a21583495" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7b1a60e6-7af6-42f4-b4d4-56253b5c6821" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215137Z:7b1a60e6-7af6-42f4-b4d4-56253b5c6821" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2F4B72388D9F452F82806D6784090D4A Ref B: MNZ221060609011 Ref C: 2025-06-02T21:51:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:37 GMT" + ], + "Content-Length": [ + "5853" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15880,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43834" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4d24c534-f8b8-4565-a554-c2d2c8ce76ac" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/60159b86-25e3-41fa-b787-4946b62a6bd4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "624e7998-2f5a-4213-97f6-9ed623011e54" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215337Z:624e7998-2f5a-4213-97f6-9ed623011e54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 509314FC41194AC3B5FD24AAECB6D89C Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "5853" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjMyMi4yNDAyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "085f684a-cacb-480d-9aee-7615be4c9550" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12403,Microsoft.Compute/GetVMImageFromLocation30Min;73400" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cc620e44-9ac1-44da-b6f7-1babcf0c9484" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7637b7e7-6119-491c-a639-104d09aee667" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "02027de7-ca0c-4274-b0f7-b6e8a4656eaa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215137Z:02027de7-ca0c-4274-b0f7-b6e8a4656eaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BF0FDE1B46F344C8B7A6DAFB047A3214 Ref B: MNZ221060610025 Ref C: 2025-06-02T21:51:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:36 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjMyMi4yNDAyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11830,Microsoft.Compute/GetVMImageFromLocation30Min;72472" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "51d81a90-1f8e-410f-a2aa-7d410addf22a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/132adc07-748e-473e-acea-164e2fa3a32c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "15b4ab17-7fdb-4e58-82be-c6f745d7c397" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:15b4ab17-7fdb-4e58-82be-c6f745d7c397" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5B0AB8703B1F44C3A4DB4A33912A62DC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjM0MC4yNDAzMDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1a003680-3274-4922-8e3a-f3d4e72f8cd9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12402,Microsoft.Compute/GetVMImageFromLocation30Min;73399" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aea5003f-b451-42d6-838a-45be8e64f7fe" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1c9738ea-5458-466e-a165-157ccd15641f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5b66cf83-4ab4-4a16-8dcc-415258038ebe" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215137Z:5b66cf83-4ab4-4a16-8dcc-415258038ebe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E993E35140D44B3A8C0392671271F5E0 Ref B: MNZ221060608045 Ref C: 2025-06-02T21:51:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:37 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjM0MC4yNDAzMDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11829,Microsoft.Compute/GetVMImageFromLocation30Min;72471" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5445db45-f52e-4cda-845e-ac4600048fe4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e8756d05-e5ab-49fe-9a56-d2886b938900" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "3b326fda-fb8b-4826-8256-07f0c3d94d23" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:3b326fda-fb8b-4826-8256-07f0c3d94d23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 634F1E04E3024DACA7FEA2718ABEF18A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA0MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bdf5881d-f12b-46f2-9f43-fe5f8c19430c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12401,Microsoft.Compute/GetVMImageFromLocation30Min;73398" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "01d1c00a-7182-4081-83d4-5911782a4cb6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2d3f3a87-2c03-47a0-a7ff-f270d7027922" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2a68da2e-6773-4d32-a4a6-162267bebd5d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215138Z:2a68da2e-6773-4d32-a4a6-162267bebd5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C3A30BCE34EB4156AA966CB4ABB8FECC Ref B: MNZ221060619011 Ref C: 2025-06-02T21:51:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:38 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA0MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11828,Microsoft.Compute/GetVMImageFromLocation30Min;72470" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "67402391-794c-4f03-a225-2fb84db218eb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fcd7448c-1913-494c-be45-f08921b5ca5f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "b0a43614-8d4d-4d8c-bf6a-95f8fa9e6b85" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:b0a43614-8d4d-4d8c-bf6a-95f8fa9e6b85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 91F029796CA14EAAB34FC609039773F2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjQ2MS4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9e94b710-2fa5-48eb-ae1f-fff90b5a7fee" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12400,Microsoft.Compute/GetVMImageFromLocation30Min;73397" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "921408db-0f19-4630-83b7-2712769570fb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e8b44844-bd5b-4807-a71a-e5da578c459f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b233882f-1360-4def-b482-eec1f420a053" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215138Z:b233882f-1360-4def-b482-eec1f420a053" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E1E9A2336986417A880E4E872898CB16 Ref B: MNZ221060619011 Ref C: 2025-06-02T21:51:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:38 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjQ2MS4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11827,Microsoft.Compute/GetVMImageFromLocation30Min;72469" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4b71529e-e4b9-473c-b09a-658674f192f6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7a8ad3ea-c6d9-41e5-99f7-46608be65a27" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7b116c60-79da-4ede-bb96-f73a1c49a14d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:7b116c60-79da-4ede-bb96-f73a1c49a14d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 48511412BF2A4ACBAB59D21C460E9FF9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjUyNy4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "12d89348-6ff2-47cc-8d6e-eb344f022252" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12399,Microsoft.Compute/GetVMImageFromLocation30Min;73396" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a249c835-69f6-4f57-966b-2a012cbb8d89" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3ec302ad-9799-4ec5-9719-e55f72195c40" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a9e223b9-fdbc-4162-aa82-fee1e2dfccce" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215138Z:a9e223b9-fdbc-4162-aa82-fee1e2dfccce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8822B9AF1B564AEF998AB3314FD3EBD3 Ref B: MNZ221060619045 Ref C: 2025-06-02T21:51:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:38 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjUyNy4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11826,Microsoft.Compute/GetVMImageFromLocation30Min;72468" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "69c773df-2dfe-41db-a0d1-51cbf1607abb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1c1baa8e-3042-4444-87a5-4bed973946a2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "48e984b4-4248-4a84-837a-e5f70aa5f990" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:48e984b4-4248-4a84-837a-e5f70aa5f990" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 66C7725F2A2B4297BA74FDAB5C61D0B3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjUyOS4yNDA2MTk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5597d6a0-97ce-40c1-bdba-c84d21b079b9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12398,Microsoft.Compute/GetVMImageFromLocation30Min;73395" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "078bf5db-16a3-4eba-88fb-38a101a7cde0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7b437af5-ba1c-4f59-8785-f0293633eb79" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ebd6804b-c893-44fa-a3cf-9a3d2b090ccb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215139Z:ebd6804b-c893-44fa-a3cf-9a3d2b090ccb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C2DBDEDE5AC43E3925ED63B670FA2C2 Ref B: MNZ221060618029 Ref C: 2025-06-02T21:51:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:38 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjUyOS4yNDA2MTk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11825,Microsoft.Compute/GetVMImageFromLocation30Min;72467" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "09ca0898-e8ce-493f-937d-8b99c6cbea4c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/caacf6b1-65e3-430b-a605-b0a0bff3fe87" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "c64d03cb-7089-4a49-912b-900a44000af0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:c64d03cb-7089-4a49-912b-900a44000af0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A586BA80C3C14C3AAB0F43901554568D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjU4Mi4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6ee44d00-97dc-4b96-a8b5-0cafb727e197" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12397,Microsoft.Compute/GetVMImageFromLocation30Min;73394" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f2fc1b92-bb1b-4038-959e-45a3c090a49f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/53f633ea-f0fb-4fdb-aaea-3ead268e11b6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "650acd72-d51c-4655-8258-2811425335b0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215139Z:650acd72-d51c-4655-8258-2811425335b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2953B9235D044CE4A541F4BF8FC6742C Ref B: MNZ221060610017 Ref C: 2025-06-02T21:51:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:38 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjU4Mi4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11824,Microsoft.Compute/GetVMImageFromLocation30Min;72466" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c8d0b052-f7a0-4e54-a90f-8adb397b22fe" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/13722ff5-f041-4a5c-a8e2-00f140dc12d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "106932c3-51c6-4a22-92d9-ee8728d15318" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:106932c3-51c6-4a22-92d9-ee8728d15318" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 19E337EAE8244AA3B0666F669AFEDB3C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:36 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA4MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e0b4469f-a1be-4429-8f1b-5a57813c6f60" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12396,Microsoft.Compute/GetVMImageFromLocation30Min;73393" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a99da91c-9c05-4fbe-9bc2-8db435c6e8e7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fbb228c8-68c3-441e-a990-030d80e6fd6e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "58626f3d-a5f8-45f9-a8e1-e4baef153ff8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215139Z:58626f3d-a5f8-45f9-a8e1-e4baef153ff8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 363B269BA3F940DC9B115D2D72F9DAAE Ref B: MNZ221060610045 Ref C: 2025-06-02T21:51:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:38 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA4MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11823,Microsoft.Compute/GetVMImageFromLocation30Min;72465" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8d15f907-ec2c-43c3-97e8-b132fc11db3c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ffee9323-ef44-4cdf-9d5e-213dd57efef2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "62960874-f814-4f16-9b8f-dabea50f5096" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:62960874-f814-4f16-9b8f-dabea50f5096" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D51A2925A70E4C7CB40FE31C33F3396D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:37 GMT" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjcwMC4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e5555799-a2d1-4a4f-b888-7c524e8d8fed" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12395,Microsoft.Compute/GetVMImageFromLocation30Min;73392" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "60af4d49-2e73-4b8b-957e-d9c317e50918" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a2fd9bf1-484e-453c-a0ca-e2537eff81a4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0384d6bd-7c1d-45f5-9285-3f93c036fea0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215139Z:0384d6bd-7c1d-45f5-9285-3f93c036fea0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1C15FAA0FF28408BBDEA2BEAE550E104 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:51:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:38 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjcwMC4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11822,Microsoft.Compute/GetVMImageFromLocation30Min;72464" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "feb14369-9496-41da-8300-3976709491b2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a9421e1c-ea6c-41bc-8cf3-29597343d1bf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8707ddac-cd58-40f8-9e16-9fec9951dc17" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:8707ddac-cd58-40f8-9e16-9fec9951dc17" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2348EE949A924F369022C4C0594F428F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:37 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bb3f64dc-1b2b-4c71-8548-8f035050d6f7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12394,Microsoft.Compute/GetVMImageFromLocation30Min;73391" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "92936afd-69f2-446f-94e2-42cae9a4334f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/76232a4d-a600-4c7a-8876-1a2b24fce2e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "432dc9e1-d308-49c5-bb02-26288750969e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215139Z:432dc9e1-d308-49c5-bb02-26288750969e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E18131DE92245AAB416806EB20EE315 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:51:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:39 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11821,Microsoft.Compute/GetVMImageFromLocation30Min;72463" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0a9fe003-30b9-4608-b807-a4d954ccd309" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5bf2d9de-225a-41bb-b973-4b0920357dfc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "a896c659-c447-4f3b-85d9-fcde4ba84aa8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215337Z:a896c659-c447-4f3b-85d9-fcde4ba84aa8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 61CEAFA0D0A4413D949873DF4A604172 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:37 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjg0OS4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "335b5634-f2d6-43da-a7da-b69a28454ef2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12393,Microsoft.Compute/GetVMImageFromLocation30Min;73390" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f53c1b4e-7f42-4ed2-ac7d-ea6329a9fde0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/aae0b495-1c9e-456a-a275-cf028c305a14" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f7275bbe-ebb8-4053-a79e-76ed0f68acc3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215139Z:f7275bbe-ebb8-4053-a79e-76ed0f68acc3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 91925C0698E042D79EB4B685C7A216E6 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:51:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:39 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjg0OS4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11820,Microsoft.Compute/GetVMImageFromLocation30Min;72462" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5f566e24-1ac8-4882-86f1-27302b691fe5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cc5f97fc-2b84-431f-adf4-4f108934755f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "010647a6-72c4-4805-8c9f-af86de3fec6f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215338Z:010647a6-72c4-4805-8c9f-af86de3fec6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D3C2B53712744F0AA5C62306EEF61ECA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:37Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:37 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjk2Ni4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b83f9117-6cbf-4b5b-8cb5-71d8dc4a3de5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12392,Microsoft.Compute/GetVMImageFromLocation30Min;73389" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ec7e5727-8510-484c-84dd-23b1a4bbe366" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a199f822-11f2-4d09-8f27-957633d6b7b9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8f3173ad-a2ac-4c64-8e46-b3ae673f94bf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215140Z:8f3173ad-a2ac-4c64-8e46-b3ae673f94bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CE269FE6640A4C41B29FA4E774D3240E Ref B: MNZ221060610045 Ref C: 2025-06-02T21:51:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:39 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMjk2Ni4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11819,Microsoft.Compute/GetVMImageFromLocation30Min;72461" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fd2911f3-3639-4320-810b-03738734bbf4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/49bddcb2-7f52-48f9-bddd-73e7446b8392" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "ab3bec2d-fa3f-496d-88a3-9ac8552a4ec6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215338Z:ab3bec2d-fa3f-496d-88a3-9ac8552a4ec6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C87F68910A04C4AADD3153A342EE886 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:37 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fc884039-07fb-4bb1-8f13-274aa7231bf9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12391,Microsoft.Compute/GetVMImageFromLocation30Min;73388" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "742114e2-04b7-412d-bb80-f9f82be24bcf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/89dd1362-1efc-4549-b7ae-58bec8682abd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2e7b1881-3cec-446e-b521-43834d9cc3c0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215140Z:2e7b1881-3cec-446e-b521-43834d9cc3c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5B28DE299CAA45AC910BF7891E90F138 Ref B: MNZ221060610051 Ref C: 2025-06-02T21:51:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:40 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11818,Microsoft.Compute/GetVMImageFromLocation30Min;72460" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9d3e6f81-a901-4624-aa24-d3f11ee575c3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9cb79b36-b657-4a88-b6b6-5abc86928853" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "1dbe033d-e509-4671-851f-f71e1ccd5ed9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215338Z:1dbe033d-e509-4671-851f-f71e1ccd5ed9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7BEAB510F62F4D13818AA6A1201FC623 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:37 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMzIwNy4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4139db34-7aa3-4a9b-aa8d-b9bd9f2a03a4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12390,Microsoft.Compute/GetVMImageFromLocation30Min;73387" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d5ec6a71-7bdf-40a8-ae9a-308f25954e60" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cf866dd7-6a17-4cb0-a3bd-ded2c5ce3401" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "18ebd88b-af1d-446e-b37c-b4f22e3cc712" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215140Z:18ebd88b-af1d-446e-b37c-b4f22e3cc712" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 644869A02BEA40B88A4B686103A3907B Ref B: MNZ221060619027 Ref C: 2025-06-02T21:51:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:40 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMzIwNy4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11817,Microsoft.Compute/GetVMImageFromLocation30Min;72459" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "eaa975fc-1d0d-4818-a7e6-132b2208044e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/236c190a-4d64-40e3-8fdc-0ef4feec6066" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fabf2874-7621-4e8d-a28e-ca457d154591" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215338Z:fabf2874-7621-4e8d-a28e-ca457d154591" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E64346E343F6438193DAD0A3F83D5652 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:37 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMzMyOC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1cb275e6-9fd2-448d-91fd-ad489b4e82ed" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12389,Microsoft.Compute/GetVMImageFromLocation30Min;73386" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1dafc62d-e607-4cb7-bebd-3ad806090788" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9ee31057-e6c8-41a9-b155-16fdd2da0567" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "004e498d-3222-4b19-aae2-c224d88a95f7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215140Z:004e498d-3222-4b19-aae2-c224d88a95f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 46CF0AB255F24E439E0B415617B258CB Ref B: MNZ221060609019 Ref C: 2025-06-02T21:51:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:40 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMzMyOC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11816,Microsoft.Compute/GetVMImageFromLocation30Min;72458" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "de8e8655-b97e-445b-8a98-aa6a6c9d286e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a05e6039-7d7b-417a-96de-516ef5ea612c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "876ae30e-cb4a-4d55-a110-ffd748dbd50f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215338Z:876ae30e-cb4a-4d55-a110-ffd748dbd50f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F2B1E37F473A43ACA17761C033F029AC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:37 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "259ca38d-fffc-4a1f-939e-fb999654ebfa" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12388,Microsoft.Compute/GetVMImageFromLocation30Min;73385" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "42701ce9-ed0f-4c02-a353-51ad113f3112" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/60a4b7f4-e44f-4db5-8af0-c075f64258e7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a4b9233c-5591-4ccb-9000-67dbe22dd878" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215140Z:a4b9233c-5591-4ccb-9000-67dbe22dd878" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E8EC2B1D91B947A2B15B732A4A2071EF Ref B: MNZ221060618023 Ref C: 2025-06-02T21:51:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:39 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11815,Microsoft.Compute/GetVMImageFromLocation30Min;72457" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fc92973e-1731-498b-8568-77532aed5e6e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8b2cfc49-f43e-42bb-8690-71f3c7a7f070" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "31db2585-3e80-43bc-9aa2-ab731bb367b4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215338Z:31db2585-3e80-43bc-9aa2-ab731bb367b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7A0AE662D4804CFF81C0CC763FBA4E53 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:37 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMzY5Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4dc2de89-86da-4d25-95c1-f955f53d8e35" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12387,Microsoft.Compute/GetVMImageFromLocation30Min;73384" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2dec30c7-f1c2-4062-9ce8-80032443d443" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e664b36a-8363-477e-b758-6db07c7a114a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9140c015-a7a2-4d34-94c6-0750baf01212" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215140Z:9140c015-a7a2-4d34-94c6-0750baf01212" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 44FE693D65E64A3EAF0966A44591C7C1 Ref B: MNZ221060610035 Ref C: 2025-06-02T21:51:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:40 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMzY5Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11814,Microsoft.Compute/GetVMImageFromLocation30Min;72456" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "492e010b-95a9-40e9-bfd4-02290bdebd8c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8963e434-741d-4db5-bed3-440f4195cf79" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "2ebd3255-2bb8-45aa-a65e-7ab90c7dd2b6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215338Z:2ebd3255-2bb8-45aa-a65e-7ab90c7dd2b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A6D03A1E3EDD4F8AA2D969FEE3C2AFE2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:37 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMzY5NS4yNTA1MjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6757db77-d918-4795-94d8-3bb745d1e9dc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12386,Microsoft.Compute/GetVMImageFromLocation30Min;73383" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b72314bf-ccd9-4a49-aa6b-4ad21ad90b1e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c260433b-9912-4316-b10e-e21bdecc8094" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "35590e02-4c51-453c-a6d4-b515041dc1c1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215141Z:35590e02-4c51-453c-a6d4-b515041dc1c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2C39110A5858470BA1BABAFBFCF6CF9C Ref B: MNZ221060619011 Ref C: 2025-06-02T21:51:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:40 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-core-smalldisk-g2/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjAzNDguMzY5NS4yNTA1MjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11813,Microsoft.Compute/GetVMImageFromLocation30Min;72455" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a1792732-945f-4e65-a6d9-61d292d54f16" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/15e56c19-e83b-49ab-b13d-aad8ae89324f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c37a7163-ea93-4dac-9b24-adcefa53dc96" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215338Z:c37a7163-ea93-4dac-9b24-adcefa53dc96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E2560A14E92C43CF99ABEA4C4959FFD4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:37 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-core-smalldisk-g2/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9bd4aaf2-eaf8-4f5d-8d91-0e97f9cd70eb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15940,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43934" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f44bf355-d6c4-4007-8fd9-dab2c8c3b574" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5d4a6cb0-5527-46cb-aaf6-688bbaf9e94e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "18d62c68-8327-4675-ba1e-ee800e7b3b20" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215141Z:18d62c68-8327-4675-ba1e-ee800e7b3b20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 90B5EC2F02094591AC82D235F28E3861 Ref B: MNZ221060610049 Ref C: 2025-06-02T21:51:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:40 GMT" + ], + "Content-Length": [ + "5583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15879,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43833" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fc9c8f75-96cb-4e71-b5cf-172f45784106" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1ce9d484-0500-4308-af01-8bc92528a9e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a23a182d-1bd3-4854-9a62-d960781874f4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215338Z:a23a182d-1bd3-4854-9a62-d960781874f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9A463FFB2270484A91521526C9CBA898 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:37 GMT" + ], + "Content-Length": [ + "5583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjMyMi4yNDAyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "87356ad0-76c4-4cec-950a-bec4b098088f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12385,Microsoft.Compute/GetVMImageFromLocation30Min;73382" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ca25183f-e066-4429-bf0c-6b0d9cfd9496" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2025eb5b-33b7-4d48-b00f-1bf96958b5f8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "016b41a0-0d04-4a8f-b169-4b872232c1d0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215141Z:016b41a0-0d04-4a8f-b169-4b872232c1d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 994598F24278461A946C3964B046F0FB Ref B: MNZ221060609019 Ref C: 2025-06-02T21:51:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:41 GMT" + ], + "Content-Length": [ + "1265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjMyMi4yNDAyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11812,Microsoft.Compute/GetVMImageFromLocation30Min;72454" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "506918ad-a3d0-4de0-b2cd-ee2a9423428e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/72150c2e-cc9e-4a14-8272-8fee11188d4e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "41a123f4-f5dc-4410-b137-dfe2f3e90feb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215338Z:41a123f4-f5dc-4410-b137-dfe2f3e90feb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 48AACF28111440FBB750A405DE2B01BB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:37 GMT" + ], + "Content-Length": [ + "1265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjM0MC4yNDAzMDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e5d74954-32f6-4789-bf8e-9230254374a4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12384,Microsoft.Compute/GetVMImageFromLocation30Min;73381" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f8ccf80e-0413-4969-b38c-8e3e7e0a263d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5f145631-20e3-44cd-bc69-784cf67babe1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "926f8a44-5228-431d-aed5-471a2cf613b6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215141Z:926f8a44-5228-431d-aed5-471a2cf613b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CAC89C21774945388D8143B1557D2862 Ref B: MNZ221060610047 Ref C: 2025-06-02T21:51:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:40 GMT" + ], + "Content-Length": [ + "1265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjM0MC4yNDAzMDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11811,Microsoft.Compute/GetVMImageFromLocation30Min;72453" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ee1f372a-51df-4dc2-8ba9-6ef4268c6c6c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b8a02eef-ef86-4b29-9919-3cff60cf22e8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "8bef40f4-7807-4a5c-bd8f-6079c6210f1b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215338Z:8bef40f4-7807-4a5c-bd8f-6079c6210f1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB4286AD4A85496AB164BBCE36CFD7B0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA0MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e5d28d19-cf8e-402d-a0f7-f2343e534678" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12383,Microsoft.Compute/GetVMImageFromLocation30Min;73380" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2b251420-3cf3-4969-aed0-15d34ad2a867" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8faf0b51-2202-4aa3-9b33-50709bffd4d2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ca7d9d63-f6be-43de-8e7c-60289263e34d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215141Z:ca7d9d63-f6be-43de-8e7c-60289263e34d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A89B2AF65A72417989160407381EEC09 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:51:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:41 GMT" + ], + "Content-Length": [ + "1265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjQwMi4yNDA0MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11810,Microsoft.Compute/GetVMImageFromLocation30Min;72452" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "44f9a93a-c6e7-4395-a49c-52d2b524c5da" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/04a41ccd-4be8-4ba6-86c1-de3d64593034" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "097eda44-2f87-4f09-bdc4-7c57934e774f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215338Z:097eda44-2f87-4f09-bdc4-7c57934e774f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8DD9EBC80B58429F827C5E2080590559 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjQ2MS4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "214e4e98-3027-43ad-ad6a-d891c9f700a2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12382,Microsoft.Compute/GetVMImageFromLocation30Min;73379" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f7e420b3-aed4-4613-b6c9-7c74ff364097" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d4551a1b-9292-4a50-8ae7-14d3392814b2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8f726a12-2c7c-47e0-bb7b-7b912f8279d9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215142Z:8f726a12-2c7c-47e0-bb7b-7b912f8279d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2C6CF4C7D6A24155B19C50345BA3D6AA Ref B: MNZ221060618021 Ref C: 2025-06-02T21:51:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:41 GMT" + ], + "Content-Length": [ + "1265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjQ2MS4yNDA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11809,Microsoft.Compute/GetVMImageFromLocation30Min;72451" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bf74d098-533e-4dd0-8d1b-2c0cc431eaa7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/83e9958b-f09b-4ed5-ae9c-e3f8743043ad" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "1c42fa2b-1c8f-42dd-9c92-3c9b4ef3ac75" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215338Z:1c42fa2b-1c8f-42dd-9c92-3c9b4ef3ac75" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A30E51305B4B49988908CC5D256527CA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjUyNy4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "02360366-29f1-4137-88a3-131b537533d2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12381,Microsoft.Compute/GetVMImageFromLocation30Min;73378" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8f0988fb-89ed-4c59-a48b-ddca77ff1c44" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/24c3c9e0-0f47-44c1-8c35-1987717f6392" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ca0cf4db-3206-4b8f-b0e1-176eca65a9c7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215142Z:ca0cf4db-3206-4b8f-b0e1-176eca65a9c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2419199CC2F1488B9EC025A83CA397E3 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:51:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:41 GMT" + ], + "Content-Length": [ + "1184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjUyNy4yNDA2MDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11808,Microsoft.Compute/GetVMImageFromLocation30Min;72450" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2a91de5f-2a0e-4593-abb6-dc9b9328aa5f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6c9dab3f-e273-4fc4-8a09-84c57b2d5560" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "88740641-f0f8-4253-9a2f-a2742383c07c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:88740641-f0f8-4253-9a2f-a2742383c07c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 542CA76B9470493E910B1269EBF83511 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:38Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjUyOS4yNDA2MTk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "82bc50ab-7a04-4aac-87ed-c9f90d6b54d2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12380,Microsoft.Compute/GetVMImageFromLocation30Min;73377" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "be5d4be2-1dd6-4930-93f7-8ce105fd6dc0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6b7fee78-d957-443d-b55d-e242959cd5ed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a82a6e0b-3e5c-48d2-86ea-add015e9d18c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215142Z:a82a6e0b-3e5c-48d2-86ea-add015e9d18c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 12EDB7FF391D4CAA9BD5D5B228A8B4C2 Ref B: MNZ221060610035 Ref C: 2025-06-02T21:51:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:41 GMT" + ], + "Content-Length": [ + "1184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjUyOS4yNDA2MTk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11807,Microsoft.Compute/GetVMImageFromLocation30Min;72449" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3119a112-7ef4-416f-9939-ea3dc9389d22" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/156615f3-e46b-4209-9817-0076fa21f884" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c6706015-aa30-4c8c-ac6e-0718ab319df8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:c6706015-aa30-4c8c-ac6e-0718ab319df8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3A496827409C4F3B8BA48611C0C2010C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjU4Mi4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3ceb5616-7123-4805-98bd-5db8ae625da5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12379,Microsoft.Compute/GetVMImageFromLocation30Min;73376" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3a722e4f-2bc0-46c6-a53c-c9e341278b81" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a15d32e5-89d3-4a86-bc42-d0f6ca5ee73b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "5bdcd5db-4772-49c9-a670-724c30e01696" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215142Z:5bdcd5db-4772-49c9-a670-724c30e01696" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 52B4139F15624875AAC06100F37B7C1C Ref B: MNZ221060619011 Ref C: 2025-06-02T21:51:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:41 GMT" + ], + "Content-Length": [ + "1184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjU4Mi4yNDA3MDM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11806,Microsoft.Compute/GetVMImageFromLocation30Min;72448" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2f526af2-4b5f-4f81-98a9-a84b4c7686ce" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f2560af7-9e9b-490b-b53b-b12b5d4880a7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "f21dbed1-c849-41b9-9629-28837452dd0d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:f21dbed1-c849-41b9-9629-28837452dd0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F7758DAAFFB74EF4BB3FDA11DCCD3A75 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA4MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "669b31ea-81ef-4f1d-921e-e96f6e953b67" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12378,Microsoft.Compute/GetVMImageFromLocation30Min;73375" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1b29f2f2-6f96-46c6-9cf2-2dbf4220375c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/af1d81f1-88a3-4051-a124-b50bcdaaaed2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e7b1c71a-fc25-4284-a286-f2a1aa4e7aae" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215142Z:e7b1c71a-fc25-4284-a286-f2a1aa4e7aae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 390F24FBC4194853894F94DF60E4C289 Ref B: MNZ221060619025 Ref C: 2025-06-02T21:51:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:41 GMT" + ], + "Content-Length": [ + "1184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjY1NS4yNDA4MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11805,Microsoft.Compute/GetVMImageFromLocation30Min;72447" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d9c1682d-40e3-49d2-a443-f65000158722" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/640da78f-a568-44b5-8cde-4841d78461de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "0eeed676-a7a5-42d9-9088-1e8080e9ab04" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:0eeed676-a7a5-42d9-9088-1e8080e9ab04" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 06BA4894D5CC4B018472CC7570A7656B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjcwMC4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "42495b83-a695-4d60-be88-ae455422cfb3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12377,Microsoft.Compute/GetVMImageFromLocation30Min;73374" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5ed0a168-6710-45b6-862e-8ed9f50effd1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8139bb4f-e5d5-4fb3-a731-8b2181d030a3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "73b6ba84-f034-4940-ab3f-31c48dc1ac94" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215142Z:73b6ba84-f034-4940-ab3f-31c48dc1ac94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B94F025AA54944C492E2A582C0615B51 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:51:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:42 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjcwMC4yNDA5MDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11804,Microsoft.Compute/GetVMImageFromLocation30Min;72446" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c4c553e7-78d7-4043-a483-cd453585ef60" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d2552b16-b7a7-423c-a76f-d5244ba0ed47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "9e9fdf30-1f00-4b91-98fc-8b2e36097afa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:9e9fdf30-1f00-4b91-98fc-8b2e36097afa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D4258D01D8D94CE594F47A7E13B1A8EA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "453d895f-7993-42c9-a0c1-9f6b83244de5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12376,Microsoft.Compute/GetVMImageFromLocation30Min;73373" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7e80f485-e0ed-4775-8695-d6a3d0f0919c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4bf64869-abeb-4d11-90d9-51dde15b8549" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "979dd6d1-9053-4b03-8743-4f39cd40b508" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215142Z:979dd6d1-9053-4b03-8743-4f39cd40b508" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EBF933FD5D1A42718DA818C1EB55CD7B Ref B: MNZ221060618011 Ref C: 2025-06-02T21:51:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:42 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjc2Mi4yNDEwMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11803,Microsoft.Compute/GetVMImageFromLocation30Min;72445" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7fd0929f-c8a3-41b7-ae35-eedc90c77f66" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5f7021be-5211-4456-9220-1c367e1be1f7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e5dd17cc-3582-49ee-98dd-d704463736f8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:e5dd17cc-3582-49ee-98dd-d704463736f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A955E67B07074A04BC7804406CE5AA6E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjg0OS4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a915d171-0960-47a0-8912-3403eeac73d3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12375,Microsoft.Compute/GetVMImageFromLocation30Min;73372" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3590ad4e-a2f4-47b4-966d-72cdb7d05f09" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4235a804-9bc1-42d6-bc6a-2da7c5ec38e3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "df1c570e-338a-4512-ad16-d7ab38e1d361" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215142Z:df1c570e-338a-4512-ad16-d7ab38e1d361" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AEA957B34D9C40B48C57BF1646D1B8AC Ref B: MNZ221060609021 Ref C: 2025-06-02T21:51:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:42 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjg0OS4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11802,Microsoft.Compute/GetVMImageFromLocation30Min;72444" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2878741d-7403-4695-bdce-439fbcd7af98" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/14619244-4b3b-4c84-a69a-4c455180b775" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "a19e0c94-4b23-44f9-a58c-3b215323f2b1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:a19e0c94-4b23-44f9-a58c-3b215323f2b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2C9D5F3086C449269A804430959C8369 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjk2Ni4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "03180474-c6ee-467a-b92e-fc6c1dcf983d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12374,Microsoft.Compute/GetVMImageFromLocation30Min;73371" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "00c898da-0056-4991-afcd-870f031e61d5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ef4a7e15-ffaa-4b84-9991-25bfb8b5b81c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "07fa8d5f-9d8e-4976-a7b7-7ecb56fad0c1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215143Z:07fa8d5f-9d8e-4976-a7b7-7ecb56fad0c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6B920529559345948B10C602B19D5C24 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:51:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:42 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMjk2Ni4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11801,Microsoft.Compute/GetVMImageFromLocation30Min;72443" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ad96f657-6510-4f14-9502-67897d2b9375" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4c659428-a506-4022-9121-adb03806a68b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "5c3fd6e8-2386-4db3-8706-4e4f51e09229" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:5c3fd6e8-2386-4db3-8706-4e4f51e09229" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D818889B4879494896718D8EB2B27E62 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8506448b-a671-4b69-9c37-59cfa1f7b5d7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12373,Microsoft.Compute/GetVMImageFromLocation30Min;73370" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ac2c02c7-cfd8-4bca-8dcf-38170629941a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a96bca60-250b-4f4f-a29c-442dbb0ae35d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "60aab4db-c259-438e-af4c-04849e7e2f7a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215143Z:60aab4db-c259-438e-af4c-04849e7e2f7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E215C31B99C2472BA82CD0006D917844 Ref B: MNZ221060609049 Ref C: 2025-06-02T21:51:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:42 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11800,Microsoft.Compute/GetVMImageFromLocation30Min;72442" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "59abcd4e-90b2-45b7-be55-a5a63a6822c1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9bad9afc-e202-4ff1-a2e1-4c92c1f75af9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c33bcae1-ed76-41e4-9266-9acc6abef394" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:c33bcae1-ed76-41e4-9266-9acc6abef394" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 527B1A3D65BB4BE78343057C734A0BD2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMzIwNy4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7204c9d7-af77-476a-bd07-e5768b4b34d5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12372,Microsoft.Compute/GetVMImageFromLocation30Min;73369" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "36d63e88-5d4a-4156-b2c8-563a90421648" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/16c93d84-8ec2-427f-bfaa-f283fd7ce319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "83b00277-4123-4e98-be02-ac0178cbd218" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215143Z:83b00277-4123-4e98-be02-ac0178cbd218" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E2DF0F88DC54498099D9F73CB555F267 Ref B: MNZ221060610047 Ref C: 2025-06-02T21:51:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:42 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMzIwNy4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11799,Microsoft.Compute/GetVMImageFromLocation30Min;72441" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "90874902-4cb6-40f0-8de6-23669db80f66" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a9ca3e06-a8c9-49ea-9816-d2be326bb8ef" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "d81fff68-5539-48db-9591-49798fdeec89" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:d81fff68-5539-48db-9591-49798fdeec89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 95F651834B6B4E43AEC7C2012C86631E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMzMyOC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "abc63e84-21ba-463b-af33-b3e3bf5a0f04" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12371,Microsoft.Compute/GetVMImageFromLocation30Min;73368" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c8006f6-11ed-43f6-84fe-6a6279bd1b47" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/66a4e353-cf73-46ec-b3f7-a85e02e07ff8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1baf11ca-2aad-493c-b1a1-2bc9e1d39ca4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215143Z:1baf11ca-2aad-493c-b1a1-2bc9e1d39ca4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 11598FC68198411596AF27970617DCD9 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:51:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:42 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMzMyOC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11798,Microsoft.Compute/GetVMImageFromLocation30Min;72440" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "47fcf200-db7d-4f04-a7b5-2089e7ff49dd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ab75aff1-1bc6-45c0-8f98-d79b1b4bb87c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "f9c411cc-4ebe-46d5-a4ac-6a5655f03fee" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:f9c411cc-4ebe-46d5-a4ac-6a5655f03fee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A39AEA25729D4BF99962267B915229D2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:38 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3c04df86-f9c8-4e22-88ab-e0a483850a05" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12370,Microsoft.Compute/GetVMImageFromLocation30Min;73367" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a30822dd-8a11-42e0-adae-5038c707b5d4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/47a1a442-95f7-4ca1-abcb-f29d74f6c610" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f1444779-cf6d-478c-aeeb-56a222946ea3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215143Z:f1444779-cf6d-478c-aeeb-56a222946ea3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0CCFF65922AC48519E7C1056CB134CE1 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:51:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:43 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11797,Microsoft.Compute/GetVMImageFromLocation30Min;72439" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bfc9e6a7-52fc-4b84-b59c-f19ca0db7f29" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e7ec8447-84ce-4bdd-a195-73618bdb67f4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1050f45c-4331-46f5-8691-4cc834f5625a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:1050f45c-4331-46f5-8691-4cc834f5625a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0BAA06FC09584524B5B9DDE3A70A9085 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMzY5Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ab952f61-6f10-489e-8b29-ba67bb9f4b25" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12369,Microsoft.Compute/GetVMImageFromLocation30Min;73366" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7df27d2d-8fae-47f4-bfaa-0de4b5f95d52" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5a23ac5a-6c65-423c-a390-0d67b7a9875c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a65a531e-c6a7-4a64-aa70-677b71334f64" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215143Z:a65a531e-c6a7-4a64-aa70-677b71334f64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3F0F9E5076124C64A2C40ABD8CCB97E9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:51:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:42 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMzY5Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11796,Microsoft.Compute/GetVMImageFromLocation30Min;72438" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0e18be49-d367-4f2c-9d5e-bfec0bfaade1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b239708b-e1dc-4d91-88cc-b3a56bfaf9b7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "e7218fe7-36ef-455c-9191-ed5842bea74d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:e7218fe7-36ef-455c-9191-ed5842bea74d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4CE4731D01434CED8981EEE33638BE29 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMzY5NS4yNTA1MjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5205f042-9bcf-483a-befb-f23ef5a76ce3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12368,Microsoft.Compute/GetVMImageFromLocation30Min;73365" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "06e3c118-b743-41bf-ba1a-f65d4facd071" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/07892596-dfd3-468f-98ff-fb0964cff129" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b7ca3886-a5ae-44ce-8b65-2a5f9a0062e7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215143Z:b7ca3886-a5ae-44ce-8b65-2a5f9a0062e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CB90A287E55E473099F1A3C887E9C1AB Ref B: MNZ221060608035 Ref C: 2025-06-02T21:51:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:43 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjAzNDguMzY5NS4yNTA1MjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11795,Microsoft.Compute/GetVMImageFromLocation30Min;72437" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a39d5318-6572-4058-b84b-e419ab082ebf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/58ef7851-5a5e-46d5-ac5f-63e4528c4d95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4c8f42c9-8ed3-40b8-924c-f1fed4378036" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215339Z:4c8f42c9-8ed3-40b8-924c-f1fed4378036" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D89552013E1F44ABA590B877B41341E6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c8d1c687-b8a1-442f-bc8a-071579781947" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15939,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43933" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d9467141-32ef-41e7-b97c-9d1cdbefb760" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ea3e246d-351b-4821-bae6-76501b02e48c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "708a52bf-5270-4a2f-aadb-2b87d2495825" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215143Z:708a52bf-5270-4a2f-aadb-2b87d2495825" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E96137AB5952424E92F380F5A05342E9 Ref B: MNZ221060610027 Ref C: 2025-06-02T21:51:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:43 GMT" + ], + "Content-Length": [ + "5709" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15878,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43832" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "adc58fff-db6b-416d-a83e-bb260e0c119e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/983693b4-3cd7-4c16-9471-fbab22071e47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4c794f46-01f6-4fd5-90b6-1ac4424a3e5e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215340Z:4c794f46-01f6-4fd5-90b6-1ac4424a3e5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 607DC9284844491DBFC8CAF05C38DF23 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:39Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "5709" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjIzMjIuMjQwMjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "49c9f010-5886-464e-9bf7-161e1319b0dc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12367,Microsoft.Compute/GetVMImageFromLocation30Min;73364" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "64fcb641-5282-4403-9a3b-0b60c087805a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/adf0fda5-4065-494c-9d94-97dcb38dfa5e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c611a711-5bd4-4e30-8e58-e89814af4224" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215144Z:c611a711-5bd4-4e30-8e58-e89814af4224" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CE52333DE67046838D64AAAFE1EC6314 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:51:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:43 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjIzMjIuMjQwMjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11794,Microsoft.Compute/GetVMImageFromLocation30Min;72436" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2cc1cd82-f6af-4ef9-996f-39fbae2409e2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bd9c29ca-82bb-441a-aec4-0d2c9869a0f2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "e27e2dd0-a1f6-4718-b10c-f6ceae8e7c5d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215340Z:e27e2dd0-a1f6-4718-b10c-f6ceae8e7c5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 183E895917984C2E8C32A913952EBA9A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjIzNDAuMjQwMzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d32770c0-9755-4dff-a50c-e3241040da0d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12366,Microsoft.Compute/GetVMImageFromLocation30Min;73363" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "81a6634a-7cbb-40ee-bbdb-b2e27e47f193" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/abd37ed6-a7ea-4b50-b697-ca80d1a0d14a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b6b81165-cb2c-4357-9cab-1511f4fcfea1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215144Z:b6b81165-cb2c-4357-9cab-1511f4fcfea1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5B2C9970DBEA4354AA6F080D387DA3F6 Ref B: MNZ221060609029 Ref C: 2025-06-02T21:51:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:43 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjIzNDAuMjQwMzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11793,Microsoft.Compute/GetVMImageFromLocation30Min;72435" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f1f9483a-2956-4da3-9811-5d8147eaeab3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b939f2f1-5034-476f-9c6b-92b0080c5d72" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "96502ead-048f-4c55-b25a-f1d4d4732b8e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215340Z:96502ead-048f-4c55-b25a-f1d4d4732b8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E3D3C67EAFDD43FF9D79B6FCC8FF4CF3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI0MDIuMjQwNDA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5adfc195-fd8f-4210-94f7-2e06bd7e6f1e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12365,Microsoft.Compute/GetVMImageFromLocation30Min;73362" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dd7150be-9151-4947-a95c-cb21360b49a5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cbdc1875-f49a-452a-921b-a049fc88a686" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d19a237a-b1d3-465c-b6d6-2b12319c7e3f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215144Z:d19a237a-b1d3-465c-b6d6-2b12319c7e3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C9564D5414184B1A99EABC6DC2555EE5 Ref B: MNZ221060608045 Ref C: 2025-06-02T21:51:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:43 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI0MDIuMjQwNDA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11792,Microsoft.Compute/GetVMImageFromLocation30Min;72434" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6c743210-aa9e-47e9-ae9f-51e20c09402e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a766466f-e3f2-41c9-bb3a-cb051b6b8c64" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "7002859b-f682-49ec-be46-009f16f37e25" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215340Z:7002859b-f682-49ec-be46-009f16f37e25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2E934768591C4B7CA2A5B0A3F4A66E76 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI0NjEuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "29ce521d-b53f-4992-954d-bebed594e416" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12364,Microsoft.Compute/GetVMImageFromLocation30Min;73361" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b547a35c-f1aa-4fdb-9436-d8dd3fb5000a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/42decdee-c19e-4e49-b337-38ecfd67493c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "aca3328b-4e60-49b6-a624-688106bdd786" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215144Z:aca3328b-4e60-49b6-a624-688106bdd786" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EDA5099CE3F747D9A2EC43D26CD2861D Ref B: MNZ221060619021 Ref C: 2025-06-02T21:51:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:44 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI0NjEuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11791,Microsoft.Compute/GetVMImageFromLocation30Min;72433" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7c601414-2e02-4985-80bb-31b5827265ae" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/34d8efba-00b1-4414-862a-59017ebf3e13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "191fc62e-7353-438e-a30a-f5c520f636fe" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215340Z:191fc62e-7353-438e-a30a-f5c520f636fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FDE3EE63BCF24A428892D6C45ECEDBAA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI1MjcuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b102a120-fd91-4ccf-ad27-b107629bd1df" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12363,Microsoft.Compute/GetVMImageFromLocation30Min;73360" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c03352f4-76b1-45ac-affa-5610b42b3df3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6614b63c-e667-413d-a2e1-031aa16536dc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "54a67794-6ca2-4b19-ad8f-fd349dbf3700" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215144Z:54a67794-6ca2-4b19-ad8f-fd349dbf3700" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 03065BD68AEF47829610BF88058E3E62 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:51:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:43 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI1MjcuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11790,Microsoft.Compute/GetVMImageFromLocation30Min;72432" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a90c221c-70ba-4f56-b321-f826f569309d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/92f3d0ae-2fd9-4fdb-b645-95f39ec5e68b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "2c0944f2-4327-47bc-ac02-68d9a26d0661" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215340Z:2c0944f2-4327-47bc-ac02-68d9a26d0661" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8CE4E3832CD14E37AB7D02C97B58D594 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI1MjkuMjQwNjE5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2bf219c6-0d4b-4960-8d82-62605e90aafb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12362,Microsoft.Compute/GetVMImageFromLocation30Min;73359" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0b2dbe8f-0d4a-4f44-9e20-472fb46b8e5f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/02020d40-4167-47c1-ae23-a25771de4e6c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "87ef6027-ad60-4710-971b-c792787d12c3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215144Z:87ef6027-ad60-4710-971b-c792787d12c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5CBC665E8C2A4487A41F997628085B74 Ref B: MNZ221060610051 Ref C: 2025-06-02T21:51:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:44 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI1MjkuMjQwNjE5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11789,Microsoft.Compute/GetVMImageFromLocation30Min;72431" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a59161c9-fa7c-47f4-a4b9-f5365603dbb0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8faf897b-0f9b-4a8b-bcbf-4f5d48da8c55" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "6bf9f8bd-ff1e-42e3-84b7-d3a342f31c14" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215340Z:6bf9f8bd-ff1e-42e3-84b7-d3a342f31c14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 95C3A2AA7D9A45788708C226A6625C77 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI1ODIuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4db8adec-0fd0-40b9-80cb-27b2f4091c72" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12361,Microsoft.Compute/GetVMImageFromLocation30Min;73358" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c3d0fdb9-5800-4760-b636-f4177372b165" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ded723fb-6634-420b-b9b1-1497ee855362" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c2e1be2e-e118-4cd5-9df8-62e94b2ca895" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215144Z:c2e1be2e-e118-4cd5-9df8-62e94b2ca895" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 24026FA5386441A1B7A604BDE519BD84 Ref B: MNZ221060608039 Ref C: 2025-06-02T21:51:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:44 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI1ODIuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11788,Microsoft.Compute/GetVMImageFromLocation30Min;72430" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9564d5fc-71e9-419c-b624-47e740b0de75" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/28cc925d-b6ae-4a3c-ba99-05ba8998f805" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "ac983b59-5084-4cc7-bacf-cf2ed8eae7ee" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215340Z:ac983b59-5084-4cc7-bacf-cf2ed8eae7ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1AC54BDE1F234784A39A0B5DCC226EE0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI2NTUuMjQwODEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "02e2aa4d-b361-4fcc-aee9-e3756eac3a4b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12360,Microsoft.Compute/GetVMImageFromLocation30Min;73357" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e1f06588-9366-417d-862d-1e93c1cd6865" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/91161c3d-d61a-4628-87e2-7503d29c3423" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "985ae833-4336-4d40-aecd-8da60e9e8110" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215144Z:985ae833-4336-4d40-aecd-8da60e9e8110" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7E4E3E0CF6B845BDA5329E3F7E7AFCC5 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:51:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:44 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI2NTUuMjQwODEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11787,Microsoft.Compute/GetVMImageFromLocation30Min;72429" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "632d70be-b9c3-4035-8241-f6f9b6870225" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/58549d19-07b1-4472-b0a3-bf2c6600fed7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "6c2187d0-d49c-46c1-a911-4b95130a839a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215340Z:6c2187d0-d49c-46c1-a911-4b95130a839a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4F73775372CF471EB1842358BF8536CA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI3MDAuMjQwOTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "26ce90fa-41e7-40f8-86e5-5bc1f4971e4d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12359,Microsoft.Compute/GetVMImageFromLocation30Min;73356" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bce58338-2a26-4f39-973a-cc6ad5fb7f5f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8aa3fdba-d0a8-46e1-aa52-febcfdf9be65" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "730e68c2-c0b5-4861-8c79-3901e5bfd4e2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215144Z:730e68c2-c0b5-4861-8c79-3901e5bfd4e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0381541F3D5D47C19B73D4383318AC15 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:51:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:44 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI3MDAuMjQwOTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11786,Microsoft.Compute/GetVMImageFromLocation30Min;72428" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9703048b-e85c-4e6a-98ee-e846303ab5f8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9bf7a128-b1ae-4b16-abb4-747abe18406e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ee36d813-1fcf-4f3c-be54-c76ff7af0abd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215340Z:ee36d813-1fcf-4f3c-be54-c76ff7af0abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4CE5C236C3604075AE5B40E400D96615 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI3NjIuMjQxMDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "695adba0-0145-427d-97ff-270876696afc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12358,Microsoft.Compute/GetVMImageFromLocation30Min;73355" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f43c7b3a-73af-4a6c-b017-3a4cf200b08c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f88af336-c3f7-468e-9f74-d8238b39124d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "54bbc545-12fc-462f-96e3-c2cc34abd063" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215144Z:54bbc545-12fc-462f-96e3-c2cc34abd063" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 49040FBF9FA1403AB22E0CF53242310C Ref B: MNZ221060608035 Ref C: 2025-06-02T21:51:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:44 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI3NjIuMjQxMDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11785,Microsoft.Compute/GetVMImageFromLocation30Min;72427" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "be1800de-24be-4da4-9c0a-5324df17780a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ed0f78ec-8c39-4096-b9ad-1e1a8023b8e0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "fed96189-6c46-4dce-8842-bf8bb1d062ba" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215340Z:fed96189-6c46-4dce-8842-bf8bb1d062ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0EF5400A890E4603BC31C856B2BA7C2A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:39 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI4NDkuMjQxMTAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f4933d30-753d-487a-baef-64660c9c48ec" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12357,Microsoft.Compute/GetVMImageFromLocation30Min;73354" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dfb0b928-a157-48f7-b7f2-4fd272098a21" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/76df48af-9f1d-4779-a01b-bb55adb6820f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5cdc3307-c5f6-4fb9-aa5b-226c68d952b3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215145Z:5cdc3307-c5f6-4fb9-aa5b-226c68d952b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CF602B68295D4D17AF9F8521EC633DC1 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:51:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:44 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI4NDkuMjQxMTAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11784,Microsoft.Compute/GetVMImageFromLocation30Min;72426" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "83d1a022-bc6a-4f6f-a523-153d11219235" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7b1a1a03-14cd-4049-8361-8bbed0d064e3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "e59dc6a6-3d95-4895-8629-ab895be4fb9e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215340Z:e59dc6a6-3d95-4895-8629-ab895be4fb9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0FB46B9C359F4AE7AB7CC9236134EEEA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI5NjYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e74b72dd-f35d-4a67-8809-d88af60afc3b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12356,Microsoft.Compute/GetVMImageFromLocation30Min;73353" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1b2c5aef-6269-40f1-b40a-cd3b396c8b55" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b08082de-8dd7-459d-85ab-e628483e8339" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "021722bf-5faa-43f6-b4ba-23681c660885" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215145Z:021722bf-5faa-43f6-b4ba-23681c660885" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CADA0EEB551C4F8890AAD2C594D8CCAF Ref B: MNZ221060618023 Ref C: 2025-06-02T21:51:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:44 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjI5NjYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11783,Microsoft.Compute/GetVMImageFromLocation30Min;72425" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0aca3259-0d80-43dc-80ac-0c1c1b57f7b6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bd68f614-3c56-4fba-a1ae-66f0d83a5606" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8f270770-064c-4bc3-aa07-07601c0be17b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215340Z:8f270770-064c-4bc3-aa07-07601c0be17b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3C4B18359E9A421D83C3D711156CD87C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjMwOTEuMjUwMTEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "12af9f91-9b92-43a3-93f9-d4e985cb5cdb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12355,Microsoft.Compute/GetVMImageFromLocation30Min;73352" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b8e48f43-fe1d-43ea-8b06-2f7f71c113ea" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6997ae40-96c5-4c62-941a-fb78e2353c4a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e382ae6e-5574-4e5c-ac69-e3e509cf2f93" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215145Z:e382ae6e-5574-4e5c-ac69-e3e509cf2f93" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41E389D12F644D9AB9EDEEBA28D9FE5A Ref B: MNZ221060608023 Ref C: 2025-06-02T21:51:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:44 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjMwOTEuMjUwMTEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11782,Microsoft.Compute/GetVMImageFromLocation30Min;72424" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7f52d483-6ebb-4311-abd8-7d4c5231c764" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cee7e2e4-5273-40df-9d6f-f723da890911" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4c9e8e2d-758d-4b40-a82c-a092143e5eeb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215340Z:4c9e8e2d-758d-4b40-a82c-a092143e5eeb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A972281BF35A4BFABDA55912E1F45B2D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjMyMDcuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "67c98489-ad1a-444f-83da-064c0b6a7da2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12354,Microsoft.Compute/GetVMImageFromLocation30Min;73351" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "40634b09-399c-4f4d-a924-d98d0de4f08f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9a79db0b-9589-4c10-be1b-863838a59cc8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1ecac9c5-0b24-4f2e-acc5-9f37ef9f2e42" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215145Z:1ecac9c5-0b24-4f2e-acc5-9f37ef9f2e42" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 95BA3957252F4C899EC80FE469E627A8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:51:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:44 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjMyMDcuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11781,Microsoft.Compute/GetVMImageFromLocation30Min;72423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6c4a5c36-d015-420b-84df-bf7b21209daa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/82f76fed-9333-42e6-9d3f-d62827d67af4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "565e5c87-13ca-4e08-ba7b-8262abc3023d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215341Z:565e5c87-13ca-4e08-ba7b-8262abc3023d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D4F64CD1BAD24563B843F2C4B4CE30C0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:40Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjMzMjguMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ba9db0af-92f0-4c16-a591-39879fdb5e7c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12353,Microsoft.Compute/GetVMImageFromLocation30Min;73350" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "04dfb590-1098-4c8c-80dc-a48a7143c1ef" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c92adcfe-2b63-461d-856f-b31939bfbc12" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b924dedd-8255-4e85-840a-04906f4b9640" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215145Z:b924dedd-8255-4e85-840a-04906f4b9640" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1A00D8F8C57C4EF18EC7E8FA69FEDB56 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:51:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:45 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjMzMjguMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11780,Microsoft.Compute/GetVMImageFromLocation30Min;72422" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "91a24e52-5312-46d3-a4bf-203f9044ed90" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7d5547ac-58e6-4319-958f-3294bbe330ba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2f3ea073-4831-4d1c-bc4f-147023de6509" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215341Z:2f3ea073-4831-4d1c-bc4f-147023de6509" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B589EBEF7ED04AD081D4D160D1198334 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjM1NjEuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "adbffd4a-3a0f-475a-916d-a01e414e3924" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12352,Microsoft.Compute/GetVMImageFromLocation30Min;73349" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "658be267-527c-4f98-88ae-650ec6a52b4a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/526bc779-02d8-4d5f-b4fb-78cdc6db9f0b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c04d17ba-d37e-4d00-8d42-9dc303ca1040" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215145Z:c04d17ba-d37e-4d00-8d42-9dc303ca1040" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3AD0B6DC003A422BBC39068C7E7BE56B Ref B: MNZ221060609039 Ref C: 2025-06-02T21:51:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:45 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjM1NjEuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11779,Microsoft.Compute/GetVMImageFromLocation30Min;72421" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "48e1a041-c5ed-4084-bdc2-6fa0191b86e5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6ced8369-df7c-4113-96be-a7ec5fada591" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "73f3a426-7ff8-4487-b90f-ea1c78f71c0c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215341Z:73f3a426-7ff8-4487-b90f-ea1c78f71c0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 66511AA1F08244CAB87CE363FB00D84F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjM2OTIuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3f9f57fe-1f37-4f19-9587-a579a85d309d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12351,Microsoft.Compute/GetVMImageFromLocation30Min;73348" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5c66d50b-a3fa-483a-ba0c-047bb0cee72d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/109ec7d6-b997-4be8-acb0-75259b6cee59" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "79710c55-84fd-43d3-98da-cf0c492fbedc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215145Z:79710c55-84fd-43d3-98da-cf0c492fbedc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6A1C0D42B3754293BF1B7909C9FF1175 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:51:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:45 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjM2OTIuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11778,Microsoft.Compute/GetVMImageFromLocation30Min;72420" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "73d44ad6-3617-4387-919f-c3013cf03351" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/77305dca-a359-4dcb-849f-cc9e46528833" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "91f18ee5-a2cc-4bae-a747-59ad7c9b0ecc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215341Z:91f18ee5-a2cc-4bae-a747-59ad7c9b0ecc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E55D1E2A5BCA435B82F2027A7174BBD2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjM2OTUuMjUwNTIzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b2476bd3-7019-4b8e-94cd-315ac82a23f1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12350,Microsoft.Compute/GetVMImageFromLocation30Min;73347" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5b1b08e7-35b2-4319-8a24-a781aaaa1576" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/184518e6-2dee-4f8f-b5c7-b08eb8c70f6a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fc1f77d4-9000-4d90-a23a-15a2b06c7e1e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215145Z:fc1f77d4-9000-4d90-a23a-15a2b06c7e1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E43D73F9E2AF42FCB4F9E94DAD9CF878 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:51:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:45 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzIwMzQ4LjM2OTUuMjUwNTIzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11777,Microsoft.Compute/GetVMImageFromLocation30Min;72419" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d6f5b018-ee2b-4b7d-9e87-81d12f95054b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/27bc6988-c7ff-4bce-b886-830f2645faa1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "05250fd1-1014-4f70-a63a-4075f52a48b2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215341Z:05250fd1-1014-4f70-a63a-4075f52a48b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A1771EA63C37494AA1193656BA2DF360 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a183e06d-b076-4c6c-a465-e8734c280830" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15938,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43932" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6f8301eb-7c58-48c6-86a4-58260e1d3783" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a0bd4a33-fd67-4866-9de1-3343ec7a341d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b7d1da99-9785-4145-af2e-0c414ba79b8c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215146Z:b7d1da99-9785-4145-af2e-0c414ba79b8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 55D9BC9F24F04EC39816513DFD8BC3FC Ref B: MNZ221060610045 Ref C: 2025-06-02T21:51:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:45 GMT" + ], + "Content-Length": [ + "5763" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15877,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43831" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0e6958ca-4087-4b39-93b5-f6a56a880376" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/701a9bbe-b1f5-4baf-b28c-8b6867e2e0e6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "187ee639-c54c-4d3b-ab2f-63813cb113a3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215341Z:187ee639-c54c-4d3b-ab2f-63813cb113a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C86BCAFBBB2645D0B73C0873B91747B9 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "5763" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2322.240207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2340.240303\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2402.240405\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2461.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2527.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2529.240619\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2582.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2655.240810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2700.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2762.241006\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjIzMjIuMjQwMjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7174bd99-7e72-4c2e-94f1-561177452e74" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12349,Microsoft.Compute/GetVMImageFromLocation30Min;73346" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d6e1435f-bc30-45a6-af70-d8bb329fdf92" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ded5a795-843b-4c20-a01f-05e36227c90e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ddbc40f3-8855-4a4e-addc-9537d0638c35" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215146Z:ddbc40f3-8855-4a4e-addc-9537d0638c35" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EBC1F0E4CBB34275A9983B36674BB2FE Ref B: MNZ221060608011 Ref C: 2025-06-02T21:51:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:45 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2322.240207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjIzMjIuMjQwMjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11776,Microsoft.Compute/GetVMImageFromLocation30Min;72418" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "058bf9fe-7c99-438a-8709-9eac83049d21" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1d453b40-6e39-471a-ae8a-4ff52015ad11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "24a300ac-6f57-443c-8fe6-f2e1a7d6e392" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215341Z:24a300ac-6f57-443c-8fe6-f2e1a7d6e392" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 461A68A993C248C58A0A5E6481F7283D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2322.240207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2322.240207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjIzNDAuMjQwMzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4e3437a5-d509-4420-b554-c1471b97451d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12348,Microsoft.Compute/GetVMImageFromLocation30Min;73345" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d713545f-13c0-426f-9513-3e523fd1e36d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dc37032a-f771-47c9-9425-c5092c94f00b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c8e2f7c5-755b-44da-a552-8f9559666ab1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215146Z:c8e2f7c5-755b-44da-a552-8f9559666ab1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5EBA8EF7B63F42058E459E2FF6EF1E25 Ref B: MNZ221060609031 Ref C: 2025-06-02T21:51:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:45 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2340.240303?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjIzNDAuMjQwMzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11775,Microsoft.Compute/GetVMImageFromLocation30Min;72417" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e24998b6-ce20-4484-8492-3986175ab715" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/99210db2-845e-48bb-9d76-78c3ba9c8f3a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "a70391c1-5b67-4d59-9d18-bf9446e8131f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215341Z:a70391c1-5b67-4d59-9d18-bf9446e8131f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ED14CF8D817A455D80EB127F41E74C69 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2340.240303\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2340.240303\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI0MDIuMjQwNDA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0165a83d-4a9e-4a34-8631-118bf643e8f9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12347,Microsoft.Compute/GetVMImageFromLocation30Min;73344" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "22d5df08-3691-41c2-95c7-9660915d95e3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4e203f26-eb75-4abb-8340-7db2ec64d54b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "34944171-9a23-4636-9735-7623d8a31122" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215146Z:34944171-9a23-4636-9735-7623d8a31122" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 310E1134614E40FAAD3148CACD696B75 Ref B: MNZ221060618033 Ref C: 2025-06-02T21:51:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:45 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2402.240405?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI0MDIuMjQwNDA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11774,Microsoft.Compute/GetVMImageFromLocation30Min;72416" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "be4b1d58-a866-42ed-9ea0-2d57dfc821b5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bc479fb7-be49-42f6-9541-f332418cbe80" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "548c638a-b1c4-4c12-a079-4fe0d01f6c2b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215341Z:548c638a-b1c4-4c12-a079-4fe0d01f6c2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E6E6ADA8F014D7588D494CE16C76117 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2402.240405\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2402.240405\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI0NjEuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f06baea7-155d-45b7-b782-5d7e11f9d02a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12346,Microsoft.Compute/GetVMImageFromLocation30Min;73343" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6d70f722-5513-4857-a7c8-5c248d6acd29" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e73b00b0-3896-487a-baad-b3593c95ca74" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "58c32e36-3e5f-4bc4-b961-aa69ca2fa646" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215146Z:58c32e36-3e5f-4bc4-b961-aa69ca2fa646" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4565C7E17D9848178477C0887D04F393 Ref B: MNZ221060618051 Ref C: 2025-06-02T21:51:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:46 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2461.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI0NjEuMjQwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11773,Microsoft.Compute/GetVMImageFromLocation30Min;72415" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5eedb4b2-fe5e-4a65-a898-c31035424119" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/542c35f7-a39d-489b-b7e7-4cd33bfc8e2f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "076de63a-a06f-4823-9ac4-0b6b716c3284" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215341Z:076de63a-a06f-4823-9ac4-0b6b716c3284" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 71297906C1F544F08190424C7AD3BBA5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2461.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2461.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI1MjcuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f7c406af-b926-44e3-bcc3-a66b9792b955" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12345,Microsoft.Compute/GetVMImageFromLocation30Min;73342" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "24841144-0fb0-4941-9444-edf9ff45c582" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7e17647f-be97-44fd-9742-48d64d8d3a4f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "45ddeb75-6f59-4e30-ae24-3965481eb4a7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215146Z:45ddeb75-6f59-4e30-ae24-3965481eb4a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9E24DBB849604286AE000A795F57CCBC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:51:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:46 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2527.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI1MjcuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11772,Microsoft.Compute/GetVMImageFromLocation30Min;72414" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "789b3dcf-5b76-4a7f-999f-b902312c5bbf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7bb34b00-0660-4bd0-805a-b3a96c5478a6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "5df8fab7-2d2b-49b8-8322-ec2bdb391a2c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215341Z:5df8fab7-2d2b-49b8-8322-ec2bdb391a2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 45ACF26E51004934910B2EFD7B756D8B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2527.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2527.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI1MjkuMjQwNjE5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eab12641-0d98-4ab2-bd55-0bcd26c0baad" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12344,Microsoft.Compute/GetVMImageFromLocation30Min;73341" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "feafb529-85ba-4f1c-8f33-ef4144c6cec8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9efa26aa-00eb-49a4-8d56-37165527a3d6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c8670285-8c81-4299-b2a7-0f1f05cb86a5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215146Z:c8670285-8c81-4299-b2a7-0f1f05cb86a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 342E563DB264479780F047D805704949 Ref B: MNZ221060610007 Ref C: 2025-06-02T21:51:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:46 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2529.240619?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI1MjkuMjQwNjE5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11771,Microsoft.Compute/GetVMImageFromLocation30Min;72413" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fd9d1d29-e1fb-4f01-b714-7d808c8e4bc0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f6ebad5f-ee07-4052-bcf3-f3edc9701851" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "9b1961ca-334e-4032-a98a-49c92bcaf8b0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215341Z:9b1961ca-334e-4032-a98a-49c92bcaf8b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 748A35B6638248E0AA68187EFCA38CB0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:40 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2529.240619\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2529.240619\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI1ODIuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a21ee4e7-a1f4-43c8-856d-f683ce6a7c02" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12343,Microsoft.Compute/GetVMImageFromLocation30Min;73340" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c59a6478-2e27-40be-a067-319d2d595337" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a4310dea-28ad-47b1-9d1c-16bffc74c0e5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4052d805-3d7d-49c4-bcc2-5b4fd9754a20" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215147Z:4052d805-3d7d-49c4-bcc2-5b4fd9754a20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 81B40B41CA19444395D69969D39C4957 Ref B: MNZ221060609035 Ref C: 2025-06-02T21:51:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:46 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2582.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI1ODIuMjQwNzAzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11770,Microsoft.Compute/GetVMImageFromLocation30Min;72412" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7a7ed569-b1df-4600-9fca-a1723681c4d1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1e9e1a0a-05c3-4aab-9047-6c2383c74e26" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "9b9661f2-8a38-4bb4-a381-97869f04aa8e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215341Z:9b9661f2-8a38-4bb4-a381-97869f04aa8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C36D912DD5CF4CD8B35A90D4CA0E36C1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:41 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2582.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2582.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI2NTUuMjQwODEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "25668399-794d-4d1b-ac23-85892a87c1c5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12342,Microsoft.Compute/GetVMImageFromLocation30Min;73339" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "62240f2e-a80a-4bdb-a483-4800c506932c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4dfd69cf-1dcc-44e5-8111-94efee96809b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c927c3c7-2a7b-42fd-93f8-ea674d9056e5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215147Z:c927c3c7-2a7b-42fd-93f8-ea674d9056e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7B387A01421E45248FFC0533821E27E4 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:51:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:46 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2655.240810?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI2NTUuMjQwODEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11769,Microsoft.Compute/GetVMImageFromLocation30Min;72411" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a1e7ccdc-0cee-4398-8e03-21fec1e5a568" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e42cee98-26cb-4653-9cd7-0971699330f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "fe6b14cb-ee15-41b1-80b3-c58e5f1e1439" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215341Z:fe6b14cb-ee15-41b1-80b3-c58e5f1e1439" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F30930315F94216A8B347FCEFD2DB98 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:41Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:41 GMT" + ], + "Content-Length": [ + "1193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2655.240810\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI3MDAuMjQwOTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eaa091ee-4e6b-45bf-88ba-a817c463a3cc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12341,Microsoft.Compute/GetVMImageFromLocation30Min;73338" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d71bccb9-f0fd-405a-9084-076b101c60eb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3fe26748-5ff9-48ae-b0b9-59698c9c8b88" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c2b857b7-82e7-494a-b9c3-6bf5348f424d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215147Z:c2b857b7-82e7-494a-b9c3-6bf5348f424d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB35A7529DDD4368ABDD2200936F570B Ref B: MNZ221060608045 Ref C: 2025-06-02T21:51:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:47 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2700.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI3MDAuMjQwOTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11768,Microsoft.Compute/GetVMImageFromLocation30Min;72410" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7bac8328-0c0b-4e6a-84d8-d1ef148a7ca8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ab764080-5248-4cb2-ac02-fa01d76f55d9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "5d0a0bfc-54c0-455c-8777-3e3192e36de6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215342Z:5d0a0bfc-54c0-455c-8777-3e3192e36de6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B9951A71C0C74D248E4CDC7EAAAA46BD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:41 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2700.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2700.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI3NjIuMjQxMDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5765b7db-7b48-4d92-a7dc-1db87ee3ae2f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12340,Microsoft.Compute/GetVMImageFromLocation30Min;73337" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d2830cfa-52a5-43c2-aaef-0b000853b35a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3bc0d29a-2b9c-4b22-b3c4-7dff51f724f1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ac3fe2f9-346c-4418-8eb8-41b1c41f5141" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215147Z:ac3fe2f9-346c-4418-8eb8-41b1c41f5141" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4CCD6A125DCB499185C4D31AA5E82DEA Ref B: MNZ221060618039 Ref C: 2025-06-02T21:51:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:47 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2762.241006?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI3NjIuMjQxMDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11767,Microsoft.Compute/GetVMImageFromLocation30Min;72409" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "000f0f29-9d62-40be-87f8-f114eb5c21e3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dafaa76b-11c8-4e2f-9b13-cc5a05a35bcf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "1f5bd1f3-c89a-4f85-bcf0-39d2927f1280" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215342Z:1f5bd1f3-c89a-4f85-bcf0-39d2927f1280" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CBEA9A228EAF4FC3B29642284FDE05F7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:41 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2762.241006\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2762.241006\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI4NDkuMjQxMTAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2172224c-ed06-4586-8569-42c6750aeaec" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12339,Microsoft.Compute/GetVMImageFromLocation30Min;73336" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2505e299-0d58-4b98-8744-c098de364789" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3154f4e5-5f6f-41bd-b6df-1c31252d4c98" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "12c66f7e-5c4b-45be-a8b2-9c3c25f86686" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215147Z:12c66f7e-5c4b-45be-a8b2-9c3c25f86686" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F0DDA3B4EAED464D9DC1CE7F0DCD8D6F Ref B: MNZ221060608029 Ref C: 2025-06-02T21:51:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:46 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI4NDkuMjQxMTAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11766,Microsoft.Compute/GetVMImageFromLocation30Min;72408" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "50ef9b07-cf66-48eb-ba84-e27e3615e5e3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/920de75f-8688-49fb-884a-a6435a569f9b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "8f30a108-edef-4719-b787-14c1a1bdd952" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215342Z:8f30a108-edef-4719-b787-14c1a1bdd952" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FFA3BB7473EA42F1AAB2E1529C4DB262 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:41 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI5NjYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2d959d46-0b45-4e46-952a-c09993aeb38c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12338,Microsoft.Compute/GetVMImageFromLocation30Min;73335" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3c151655-bde7-49ce-b465-feae98a3bb82" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/531fbf4e-ff74-4975-a676-72c805a67de9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e1e59c61-a898-4b3a-b6f1-495c2c515003" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215147Z:e1e59c61-a898-4b3a-b6f1-495c2c515003" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B243C770CC0249AF993EBE128CFD5FF7 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:51:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:47 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjI5NjYuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11765,Microsoft.Compute/GetVMImageFromLocation30Min;72407" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fdc005a7-8e1d-4bac-9573-9622f9c7b415" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5a1d8153-c1de-4985-92d5-11de383881cf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "83077139-6c7d-4dfd-90d1-2bc0657f8b02" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215342Z:83077139-6c7d-4dfd-90d1-2bc0657f8b02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 30C8C41ED5384A4FA038BD7329F6D714 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:41 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjMwOTEuMjUwMTEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9908528f-2e2b-4e75-89cb-1dd63822b08b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12337,Microsoft.Compute/GetVMImageFromLocation30Min;73334" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1d1568d3-d264-4077-9549-d125520808bc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d2856e75-a4f3-4f4c-9df5-fcd828e00a7c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3d0ad2bd-63b6-457b-8881-688532d39436" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215148Z:3d0ad2bd-63b6-457b-8881-688532d39436" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 21816E66842F401580C4B18618CDD23E Ref B: MNZ221060619037 Ref C: 2025-06-02T21:51:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:47 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjMwOTEuMjUwMTEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11764,Microsoft.Compute/GetVMImageFromLocation30Min;72406" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8dfab453-f0c9-4dd4-a77a-f384f683c6ff" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f7ebeca9-a6de-4e47-8f66-909e1fdb330a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "8886e4dc-1fe9-499a-8462-cf38c960e1fd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215342Z:8886e4dc-1fe9-499a-8462-cf38c960e1fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 682CAE0F86B54DC5A55B3637C6836CBA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:41 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjMyMDcuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eca0c2c9-922e-4671-89f7-66314f319dbd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12336,Microsoft.Compute/GetVMImageFromLocation30Min;73333" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "69c045cf-cfd7-4d55-8609-4f6d879b08ab" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c30cdb66-60db-4905-8ee8-5bff9e254373" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "247bda00-c4e5-43dc-a6d1-55bc502d5e04" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215148Z:247bda00-c4e5-43dc-a6d1-55bc502d5e04" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 04668D3776104D66923196B08231A54B Ref B: MNZ221060619037 Ref C: 2025-06-02T21:51:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:47 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjMyMDcuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11763,Microsoft.Compute/GetVMImageFromLocation30Min;72405" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f25f39fd-8077-4ef9-8214-53e04788aefe" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6c08cbf2-1feb-47cb-b6e6-01bed8cb1a02" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "2cc62f41-e2e3-4dc0-931d-cab17724cd65" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215342Z:2cc62f41-e2e3-4dc0-931d-cab17724cd65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 380B22D2F19B468396679573618106FB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:41 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjMzMjguMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "05d59d10-102b-45f3-a8bd-16c7fe439c35" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12335,Microsoft.Compute/GetVMImageFromLocation30Min;73332" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a4f5e5e6-6474-446c-a069-9588f979aa43" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/00ba4bc5-ecb7-42dd-864c-334ec03af3af" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0a896ae2-2afd-481f-a8b0-bd33b484ba2c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215148Z:0a896ae2-2afd-481f-a8b0-bd33b484ba2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B19E503B1909485E844F9B98CD11D835 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:51:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:47 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjMzMjguMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11762,Microsoft.Compute/GetVMImageFromLocation30Min;72404" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "dc3ae37e-9f85-4e35-ab4b-41395f85e7a5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c5ae0fa1-bbb7-4fed-b373-01241e355258" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f03b6597-c8c8-464c-95ae-25f957080383" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215342Z:f03b6597-c8c8-464c-95ae-25f957080383" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 06038B5C9F23450682FF86F707BA5E08 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:41 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjM1NjEuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ce4af772-7724-49dc-9551-004f5ef7b685" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12334,Microsoft.Compute/GetVMImageFromLocation30Min;73331" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f38adf21-a416-4814-9f11-5c0edcae06b5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/367d23b0-5253-417e-9687-41a0559002ab" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1b0ffb5d-950a-4246-b955-5a6668da6971" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215148Z:1b0ffb5d-950a-4246-b955-5a6668da6971" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A9654E799E004600BD01116355D2E695 Ref B: MNZ221060619047 Ref C: 2025-06-02T21:51:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:48 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjM1NjEuMjUwNDA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11761,Microsoft.Compute/GetVMImageFromLocation30Min;72403" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "09324499-8e71-45a4-b457-d8a7c59f2525" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7ba5fd80-4604-462e-a05d-038dd41956fa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "46aec66d-d41e-4241-a6f2-0238a6082e63" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215342Z:46aec66d-d41e-4241-a6f2-0238a6082e63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C08DC47AFA7946789A82B1DE1FA71E48 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:41 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjM2OTIuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0d469d34-a7bd-4bbc-9fab-90de36ac6fc4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12333,Microsoft.Compute/GetVMImageFromLocation30Min;73330" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4aa92be0-ad22-46de-bcac-d04f83184c6d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c3a8bdf8-598e-43f2-9159-7b9571bd730c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "13bd67f0-25fb-4826-899b-c8dd26533a84" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215148Z:13bd67f0-25fb-4826-899b-c8dd26533a84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8CC8096E4D6B4FAAA2EDACDC79D937BB Ref B: MNZ221060610051 Ref C: 2025-06-02T21:51:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:48 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjM2OTIuMjUwNTA5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11760,Microsoft.Compute/GetVMImageFromLocation30Min;72402" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "20756cc1-0007-4927-9bfb-8258fc1b7ca4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ac434026-9039-48f7-bfc8-9c1b5291e499" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "ee0a22a1-94fd-46f7-977b-316de894e3e2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215342Z:ee0a22a1-94fd-46f7-977b-316de894e3e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0E3C53233B2449168B0A5AAC011686F9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:41 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjM2OTUuMjUwNTIzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "209da3c3-16cb-42d7-9efe-3bab3bd00367" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12332,Microsoft.Compute/GetVMImageFromLocation30Min;73329" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f12a7782-066c-43ef-ad2f-60f9b8060d44" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ad5cec28-b88e-4ad1-8df9-bc5e67677b40" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "722e03c4-1adc-49e9-bb88-18e2827361e1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215148Z:722e03c4-1adc-49e9-bb88-18e2827361e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8DB1222518F843FB9B095541A7D7C3FE Ref B: MNZ221060619025 Ref C: 2025-06-02T21:51:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:47 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-smalldisk-g2/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDIyLWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzIwMzQ4LjM2OTUuMjUwNTIzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11759,Microsoft.Compute/GetVMImageFromLocation30Min;72401" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fc62f9e8-d901-49c0-9040-3ac2f986840d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bac1197b-35ef-4ab4-adef-4f6ff185ed26" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "987a6e40-43e9-4e05-9558-bbddac9a0ee4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215342Z:987a6e40-43e9-4e05-9558-bbddac9a0ee4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 33E814E48C8B4D0AAEEBAF163CDDD915 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:42 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-smalldisk-g2/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dacf206a-3679-4e12-87b6-a93191822517" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15937,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43931" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9776c31f-883b-4a6c-8b2a-52bca28250a9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2df0ab16-701b-4eb1-beb9-921feed4492d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7b11c192-d42e-45ef-91f3-af991d2e4f9b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215148Z:7b11c192-d42e-45ef-91f3-af991d2e4f9b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3063A36F91034626BD64AD8C9E01538E Ref B: MNZ221060610025 Ref C: 2025-06-02T21:51:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:47 GMT" + ], + "Content-Length": [ + "2766" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15876,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43830" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "04b3b455-76fb-4031-9b92-053f4091bdda" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/303c4672-21ef-4991-8d61-0e8caa32552a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "255d1813-bde8-41ca-8c50-f918d6be007b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215342Z:255d1813-bde8-41ca-8c50-f918d6be007b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F57F50B259D844569DF6C4347A59DCF0 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:42 GMT" + ], + "Content-Length": [ + "2766" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ffe4c4ef-1953-4c87-a33d-9d4eb2b38d5f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12331,Microsoft.Compute/GetVMImageFromLocation30Min;73328" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ed4110f6-9aad-4530-88bf-ea904dcdc5ac" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/425f29a5-f644-4c04-930f-e51bb6474faa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d44bfb9e-4708-4f5d-a6e9-9159a83e4d5d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215148Z:d44bfb9e-4708-4f5d-a6e9-9159a83e4d5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9480CF7ABFC04B6EB33A5EFC5AEA79A1 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:51:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:48 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11758,Microsoft.Compute/GetVMImageFromLocation30Min;72400" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c12fc6a1-405c-4ec4-ab1d-1fd3e2e07ff0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/467200eb-1ab8-40dc-912f-893dd9ba751b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c399838d-f742-42bb-b943-c2be54386ff6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215342Z:c399838d-f742-42bb-b943-c2be54386ff6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8CA8B648EB104C2FB1B6CCB8A636F8BE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:42 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMjMxNC4yNDExMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0bf0e93f-732c-451e-a7d3-c041f6354f40" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12330,Microsoft.Compute/GetVMImageFromLocation30Min;73327" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2676f3ad-852d-47fc-bd88-bb2f66d500d8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0b6ca928-95fe-497a-adff-45c37248ec1f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8725951a-68cc-4731-aafb-0a1ed5b015ec" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215149Z:8725951a-68cc-4731-aafb-0a1ed5b015ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DFF89D2B7DD7486D8FFC38FADA3AA646 Ref B: MNZ221060608051 Ref C: 2025-06-02T21:51:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:48 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMjMxNC4yNDExMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11757,Microsoft.Compute/GetVMImageFromLocation30Min;72399" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7be47340-1737-47a9-b878-5ea07b97a55d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cef5af36-9977-4792-80e1-302b3b7530c0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "322d7162-7e40-4e98-88aa-6aa204ae044a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215342Z:322d7162-7e40-4e98-88aa-6aa204ae044a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 55F9ED4EF49D49DFAFB3262EBB208C70 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:42Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:42 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMjYwNS4yNDEyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bc511493-0b30-4591-9cb5-cce009825f9c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12329,Microsoft.Compute/GetVMImageFromLocation30Min;73326" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "de348e52-8052-4007-855e-ffa250f7f8b9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/16e4a6d2-d853-4730-9b0a-663b8531c207" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c5d969b2-3e01-417b-8c40-af96baf513c2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215149Z:c5d969b2-3e01-417b-8c40-af96baf513c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D02C44D447664A6480A09AE384C2E5CC Ref B: MNZ221060609031 Ref C: 2025-06-02T21:51:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:49 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMjYwNS4yNDEyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11756,Microsoft.Compute/GetVMImageFromLocation30Min;72398" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8c2a4125-8345-44de-aa4d-b7e27b4e7549" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1cf7c187-15ab-4837-a127-f43b8eadfa80" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "d6ebe6ab-4c13-4bbe-b839-06b081882d10" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215343Z:d6ebe6ab-4c13-4bbe-b839-06b081882d10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 43CD95C256FE4C53B7EF04DB3E3D11C5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:42 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "be594840-fe85-4c27-9fd4-561f497eceea" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12328,Microsoft.Compute/GetVMImageFromLocation30Min;73325" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f1d488b2-c216-43ec-a561-e19f128d6348" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c3cede93-aa5d-4fea-ade8-8c9d7eccc02a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9b99b3b8-507d-4ad7-b7f2-6d2f9e0cf9d7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215149Z:9b99b3b8-507d-4ad7-b7f2-6d2f9e0cf9d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 605A190AE4854810A7293AD311F4B05C Ref B: MNZ221060608031 Ref C: 2025-06-02T21:51:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:49 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11755,Microsoft.Compute/GetVMImageFromLocation30Min;72397" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "afea440c-105c-4af9-9d09-04121b0e659c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f4c07469-f97a-486e-9919-1c3111d1d1a3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1d972f15-bc8c-4dd8-aa9e-db192d20290e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215343Z:1d972f15-bc8c-4dd8-aa9e-db192d20290e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4B7B3A692EDC4BA481497A17843E4AFF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:42 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5884ae62-d457-4706-837d-3772263be8a1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12327,Microsoft.Compute/GetVMImageFromLocation30Min;73324" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "55c55591-4bcd-4cef-bd81-e0a0dda687b2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cc25e48b-d577-4198-bde7-c5cd884c8ddc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0932d46c-e71f-45c1-a854-01bdb9a7d369" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215150Z:0932d46c-e71f-45c1-a854-01bdb9a7d369" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C41A4E771EE94E079B60C55B9AF511F0 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:51:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:49 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11754,Microsoft.Compute/GetVMImageFromLocation30Min;72396" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b4007323-79a2-4a26-8958-9804728ff3f6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5e3d72fc-3f1c-4079-9dfa-1005fd24e5d0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "ae97f9ca-f144-4b3f-ae8b-b547d24bf3f0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215343Z:ae97f9ca-f144-4b3f-ae8b-b547d24bf3f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 054739192EB945DD87C5CF3C6BBB6586 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:42 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "292647e6-1f76-44b4-b66e-42c1985794d4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12326,Microsoft.Compute/GetVMImageFromLocation30Min;73323" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1e1e685d-530f-41d8-94d0-7a019ca9484c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/27beba66-911b-48c5-ace0-bcadab7fee46" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5c3a83d7-84c9-489d-be6b-624bbfda7bd8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215150Z:5c3a83d7-84c9-489d-be6b-624bbfda7bd8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DF664F0500544A9CBA1F062D62485C41 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:51:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:49 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11753,Microsoft.Compute/GetVMImageFromLocation30Min;72395" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f26e4f0e-ed47-4eb9-8692-78ed47f4e18e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cf6b8d49-725d-4dda-8adc-dd8321cbe0d3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "01531843-b885-468f-bc73-740dc6222059" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215343Z:01531843-b885-468f-bc73-740dc6222059" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7EE31E6A282B46ABBDCD2B2C66D7017E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:42 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a333f76e-5e7f-40aa-857a-5259b6d8d72e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12325,Microsoft.Compute/GetVMImageFromLocation30Min;73322" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6e663b6f-de5a-46e6-98c4-daf18b4b7e1d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d1637b66-3308-410d-ac2a-d961ededd625" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "39a87baf-ef84-4f2f-9f2f-ac61a4e14579" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215150Z:39a87baf-ef84-4f2f-9f2f-ac61a4e14579" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 12FE334A05654770A21844F5AA6A3A48 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:51:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:49 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11752,Microsoft.Compute/GetVMImageFromLocation30Min;72394" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "96fa15c1-8da3-47a2-aeb3-203b9756e7f4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5993c147-3e05-44cc-8b29-6679db5e53c4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "34b4ea49-dad8-4e43-a055-021e0296f2d9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215343Z:34b4ea49-dad8-4e43-a055-021e0296f2d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 28A47EE011B541AFA4B9ED62B8180F40 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:42 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fc3e4cdc-abe4-4ffc-879a-58e3c196689d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12324,Microsoft.Compute/GetVMImageFromLocation30Min;73321" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4eb184e2-5bb3-4ac3-b0d8-e1df41681773" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b4508a90-dbfb-42f2-bc40-9d8674f3dc3b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "72bdae5e-7f04-4a39-afaa-d3124ddb7e35" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215150Z:72bdae5e-7f04-4a39-afaa-d3124ddb7e35" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6BAC9921936D46109F080E835C47A532 Ref B: MNZ221060608039 Ref C: 2025-06-02T21:51:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:50 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11751,Microsoft.Compute/GetVMImageFromLocation30Min;72393" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c4a9597c-da24-4c20-84f7-2027afd32b7b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7f4afee8-600e-4998-ab20-0ae955e90ed2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "0183133c-af71-4cd5-bff6-b13e72d26782" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215343Z:0183133c-af71-4cd5-bff6-b13e72d26782" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A778428C5FC7461BA3E190E4329D6F2D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:42 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fa9fe262-bf09-4fda-ada5-add6302fc239" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12323,Microsoft.Compute/GetVMImageFromLocation30Min;73320" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "829d9c0d-6ca2-43e0-b131-b1e5461f127c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b2b9ed6e-5a58-4af7-bb74-09bec22abcc8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e34ea85f-07e6-406a-bfbc-d91b977f2931" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215150Z:e34ea85f-07e6-406a-bfbc-d91b977f2931" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ED78A1CD96FC40D7923B5334DCAC5062 Ref B: MNZ221060618027 Ref C: 2025-06-02T21:51:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:49 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXIvdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11750,Microsoft.Compute/GetVMImageFromLocation30Min;72392" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a7c13dfa-4005-459e-b16e-aa8c60b10342" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c431c4b5-93a9-43f4-bc0e-86d0c7bf6f55" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "24a8bf96-3a88-43b8-bd90-a40c3e2b85f8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215343Z:24a8bf96-3a88-43b8-bd90-a40c3e2b85f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F7A3028624A3489AAEF699B98B7CD47E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:42 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "07fc22de-2e95-4749-b41c-fd400dd29a68" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15936,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43930" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c11e081e-ca18-40a4-9630-21e21c9e58d9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6ab5696d-6460-4703-85e5-94ac5b93013e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d2b144c9-f342-4575-b45b-697375ba98fa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215150Z:d2b144c9-f342-4575-b45b-697375ba98fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB12BE7BDDFD47518AFF84F69D7B2D36 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:51:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:50 GMT" + ], + "Content-Length": [ + "2571" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2033.241015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2033.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2033.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2894.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2894.250206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2894.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.3775.250510\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15875,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43829" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f1bd72c7-9116-4e99-90e5-0d8970962b14" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b8db03f1-fdf8-44a4-9d1c-b836cf1d0760" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ca271db7-7bea-493f-9f9f-e0a92698017b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215343Z:ca271db7-7bea-493f-9f9f-e0a92698017b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2CF1252A5C3D489BA7C1F57B2F9E9715 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "2571" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2033.241015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2033.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2033.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2894.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2894.250206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2894.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.3775.250510\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.2033.241015?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTAxNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "96668d37-08a1-40cd-ac28-a5646254ceac" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12322,Microsoft.Compute/GetVMImageFromLocation30Min;73319" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0779a6f5-9841-4f7c-98c7-c8a76b4446b0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b972261d-7d97-4ff6-b0c2-d2e9e4d78c1b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "c7edf312-544b-433a-b3c7-846de92e4e43" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215151Z:c7edf312-544b-433a-b3c7-846de92e4e43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FF9170473BF34A27A0C08B2EB0C40B28 Ref B: MNZ221060609019 Ref C: 2025-06-02T21:51:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:50 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2033.241015\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.2033.241015?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTAxNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11749,Microsoft.Compute/GetVMImageFromLocation30Min;72391" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "12888d03-578f-4b5a-aa22-07a8f6958bc4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/710591b4-dffe-4cad-a958-338ec42b466b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "c057966f-f8ff-45e9-9f0c-6bd68f544530" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215343Z:c057966f-f8ff-45e9-9f0c-6bd68f544530" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D2B31D26EEE0482E8F446FECC6D37A5A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:42 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2033.241015\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.2033.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTEwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "221c0cdf-c8c0-4e4c-89c0-a53ead2d15bf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12321,Microsoft.Compute/GetVMImageFromLocation30Min;73318" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "85f7654f-799f-4f28-bdba-e2e343f9b4f7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6b69e93c-f6bd-4a26-bfda-32351511d370" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "535e00d2-990c-4ebd-a9c0-ad3532652f20" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215151Z:535e00d2-990c-4ebd-a9c0-ad3532652f20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F3637C0C605242C6A57AC698CB266A73 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:51:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:50 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2033.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.2033.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTEwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11748,Microsoft.Compute/GetVMImageFromLocation30Min;72390" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "15532dbc-8144-4ad0-a2f6-70d67531ca49" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3e778cf6-6f04-4cd0-9424-0d876a133b5b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "a6f86f6f-51d3-48b0-aeac-a33483a7c3d3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215343Z:a6f86f6f-51d3-48b0-aeac-a33483a7c3d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9083E114912D4F3296A929C961AE8945 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2033.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.2033.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b5f8a2a9-781a-431c-bfd2-e0e67dad0cf8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12320,Microsoft.Compute/GetVMImageFromLocation30Min;73317" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1426af61-86e8-4f34-8fbd-a16d9be14546" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1216a5b3-d9b7-4199-a809-c5d5c6b08a7d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "12e9381b-df94-4294-b60d-a5f769e5ba10" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215151Z:12e9381b-df94-4294-b60d-a5f769e5ba10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 46C1105BFD734B22B6C4113AB3CD6766 Ref B: MNZ221060610007 Ref C: 2025-06-02T21:51:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:51 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2033.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.2033.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11747,Microsoft.Compute/GetVMImageFromLocation30Min;72389" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "24c5b08d-8d40-41bb-bada-81b0b49275fa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4a1e57cc-3155-423b-b492-5681a9df4efa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "75bfbf04-33c5-4595-8e66-b00432928927" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215343Z:75bfbf04-33c5-4595-8e66-b00432928927" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E4B2542E6FB846E7A84A578EDA64F926 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2033.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.2894.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a8785ab9-d434-4627-916e-84f4ba43cf75" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12319,Microsoft.Compute/GetVMImageFromLocation30Min;73316" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e9f9e8ab-e7b5-4bc9-963c-c5cb81513ba3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8f129a97-38d0-41e0-bd42-5f8dc3d6fa3e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1432ebfd-2609-4a41-85fc-38a35f173d8e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215151Z:1432ebfd-2609-4a41-85fc-38a35f173d8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BAD951A2D38045D88A1BC73140B7ABB5 Ref B: MNZ221060618035 Ref C: 2025-06-02T21:51:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:51 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2894.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.2894.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11746,Microsoft.Compute/GetVMImageFromLocation30Min;72388" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "94ba757a-1c4a-412e-a5e9-ef9667e8fb36" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dc09c765-7be4-4300-85ad-29d8d219b808" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "f1febd52-87bb-4e0d-871e-830cec0b43c1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:f1febd52-87bb-4e0d-871e-830cec0b43c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8CC68AD37A6842F08DB2846BA12FD56D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:43Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2894.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.2894.250206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5f16dca5-a6a9-44de-b9c2-a673437d6150" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12318,Microsoft.Compute/GetVMImageFromLocation30Min;73315" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6ef3d31e-820a-493f-a1ac-ba3ab0ee6f34" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7a9f18d3-d914-4c66-b956-ab09f572ae17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b96702e6-7b93-425a-900e-6cc5c3b926de" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215151Z:b96702e6-7b93-425a-900e-6cc5c3b926de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7E5F0CB3B7FD406E9B9F4D9CC357C9ED Ref B: MNZ221060608047 Ref C: 2025-06-02T21:51:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:51 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2894.250206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.2894.250206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11745,Microsoft.Compute/GetVMImageFromLocation30Min;72387" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3dc53740-82d1-4760-aa4f-55ff625d69ea" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1d5b5115-f47f-4892-ba4d-0e58875934f8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "daa794cb-04bb-4d9b-91f3-f1f7eb9f657e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:daa794cb-04bb-4d9b-91f3-f1f7eb9f657e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1AE202487B194E37B313F250FEF1C6B2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2894.250206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.2894.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "def7efc6-73eb-428b-b10e-0d6c57e55c0c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12317,Microsoft.Compute/GetVMImageFromLocation30Min;73314" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9270d410-174e-4fb8-9a00-aa399a41b0d2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fcb5227d-8453-40b2-8c71-ec64ced3749c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "70fd9942-76bd-4607-9b0f-2a43febb32f0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215151Z:70fd9942-76bd-4607-9b0f-2a43febb32f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A50D5B67745E43B3B90B4A009210AC5C Ref B: MNZ221060609021 Ref C: 2025-06-02T21:51:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:50 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2894.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.2894.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11744,Microsoft.Compute/GetVMImageFromLocation30Min;72386" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ea760756-986e-4716-b338-c1387e82319a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c08d4025-67aa-474a-b86b-0109503bbefc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "1acb0b27-f7f2-4001-85d3-4a3c829f37fb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:1acb0b27-f7f2-4001-85d3-4a3c829f37fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D44D0A8AAE5E4136A91E894EB0140DF8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.2894.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "92a11521-43a3-404d-896b-576c1eca6350" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12316,Microsoft.Compute/GetVMImageFromLocation30Min;73313" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9460606a-c184-46d4-a16b-d8faa914e067" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/154a1084-55cb-4113-8af2-92330ea419c4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "53b2ef6d-548f-4c1a-b1f0-4d56ac0b353e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215152Z:53b2ef6d-548f-4c1a-b1f0-4d56ac0b353e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 50A8261418594F1E811CFA32A7C0AD2D Ref B: MNZ221060618039 Ref C: 2025-06-02T21:51:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:51 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11743,Microsoft.Compute/GetVMImageFromLocation30Min;72385" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e88d3296-ec2e-4363-a4bf-544a1c77f334" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ef5fd334-2853-4f85-847b-982c50eebd92" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "1cb644ef-f1e8-476a-bbbc-18d0473e998d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:1cb644ef-f1e8-476a-bbbc-18d0473e998d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B9009BA381EB495D857DBD7E1162842D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.3775.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ccb3390f-360b-4bf2-a932-1608bec7930f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12315,Microsoft.Compute/GetVMImageFromLocation30Min;73312" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dd6ad0b3-06e8-46a0-8006-d0bd1666eefd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4ca5e7e1-6f9f-4bf8-8dc7-299541af7b92" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "a38d5fe4-4e5a-4528-a253-dcaafdaace5b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215152Z:a38d5fe4-4e5a-4528-a253-dcaafdaace5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 53406D7BC41746838B46B5B47DFDEBAC Ref B: MNZ221060608031 Ref C: 2025-06-02T21:51:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:52 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.3775.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition/versions/26100.3775.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11742,Microsoft.Compute/GetVMImageFromLocation30Min;72384" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ca6d25b2-1667-4d2e-84ac-7a5ddf9c13d1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/85fd4290-770a-4440-ae15-edc7a8f1b4c0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d2202fea-c089-468b-a77b-f172250bac53" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:d2202fea-c089-468b-a77b-f172250bac53" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5645C7E2AE1644A9B86A4C7EB90D99BF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition/Versions/26100.3775.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1c526a05-4f2f-40ec-b44e-66371e7ca554" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15935,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43929" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4b7034b5-95d0-4ab8-b579-b3d1b772b368" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/737ef90d-1d3a-405f-b83a-f01553d68963" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7869bd5d-3c32-4b15-a631-6e445ed0e2e2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215152Z:7869bd5d-3c32-4b15-a631-6e445ed0e2e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FE75F7AFD788489FB9B455FC7B436B87 Ref B: MNZ221060619047 Ref C: 2025-06-02T21:51:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:52 GMT" + ], + "Content-Length": [ + "2611" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2033.241015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2033.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2033.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2894.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2894.250206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2894.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.3775.250510\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15874,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43828" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "74f1a667-db2b-4c79-b360-df10587b237b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a28b3497-833c-44b0-a9d1-68da60870c25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7c55e304-a69c-4b3f-9560-7386a1e990ad" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215344Z:7c55e304-a69c-4b3f-9560-7386a1e990ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7F803E8220BF4897A0E62263DC54A019 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "2611" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2033.241015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2033.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2033.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2894.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2894.250206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2894.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.3775.250510\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.2033.241015?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjIwMzMuMjQxMDE1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f8b6dce5-a163-4b67-b54b-dcecb056a9db" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12314,Microsoft.Compute/GetVMImageFromLocation30Min;73311" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "887f003e-520e-4d8d-aab5-587a7ed3bbe0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b4004594-6a1e-4451-8a1e-f92152954a28" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "35f0ae10-5094-4955-adc4-0f4e2ea0ad80" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215152Z:35f0ae10-5094-4955-adc4-0f4e2ea0ad80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 52E5DE6A4C9C4B9E86C4BFBEA5C479C9 Ref B: MNZ221060609017 Ref C: 2025-06-02T21:51:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:52 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2033.241015\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.2033.241015?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjIwMzMuMjQxMDE1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11741,Microsoft.Compute/GetVMImageFromLocation30Min;72383" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9c7f95ad-0cb0-4eba-8a6b-444ae49f7dec" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7911a975-906a-47b6-ac75-0e0b1af61caa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "efa4fc08-6b6c-435f-89f2-949903cec82f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:efa4fc08-6b6c-435f-89f2-949903cec82f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4EDCDC0F83A5423693A823A98A249C8C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2033.241015\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.2033.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjIwMzMuMjQxMTA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "51ed53ef-3c3d-49fd-a136-23a46eb4c028" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12313,Microsoft.Compute/GetVMImageFromLocation30Min;73310" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2254487a-d3c5-4f30-877d-93e00281a8cf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a225fa0d-dfb3-42dc-b053-ec2e7f79e35c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2f92db75-2daa-46b8-9831-7d2c40a30a86" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215152Z:2f92db75-2daa-46b8-9831-7d2c40a30a86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0847DD68941C49808573EE8A8A276791 Ref B: MNZ221060610051 Ref C: 2025-06-02T21:51:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:52 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2033.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.2033.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjIwMzMuMjQxMTA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11740,Microsoft.Compute/GetVMImageFromLocation30Min;72382" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f3f05dde-c925-4b46-b4fa-279bf69beacd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9825d76b-fcd9-4800-8f7e-8616268c8bb2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "df1d7744-0d67-425a-9ec2-41e3807fbe14" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:df1d7744-0d67-425a-9ec2-41e3807fbe14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F9A03CF1716D4C99B876D86A17882F34 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2033.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.2033.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjIwMzMuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "afeac59e-ce01-42c8-9eea-ecf78ae68ea5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12312,Microsoft.Compute/GetVMImageFromLocation30Min;73309" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6588f286-012c-427f-bf2a-aec5fd1c04ab" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0312ac37-02c8-43f5-bd63-b8d0b9cf35ac" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "33e8da5c-f7df-44f7-a690-fc2bf1a4ff5d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215152Z:33e8da5c-f7df-44f7-a690-fc2bf1a4ff5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4A00FF74D303420493452EB71A08CCBD Ref B: MNZ221060619031 Ref C: 2025-06-02T21:51:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:51 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2033.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.2033.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjIwMzMuMjQxMjA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11739,Microsoft.Compute/GetVMImageFromLocation30Min;72381" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4c0fe5d9-15fd-4074-8a16-f81248f51ecf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0c8a0812-c599-4dcb-b6b3-1bb62e3b26af" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "ef115458-faeb-46d8-a4b5-b183b229070d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:ef115458-faeb-46d8-a4b5-b183b229070d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 07452E852EFE402988A2F3060A4300D5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2033.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.2894.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjI4OTQuMjUwMTEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6333780a-af62-4882-9c6f-17c0fe9c5ba2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12311,Microsoft.Compute/GetVMImageFromLocation30Min;73308" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "277ccbf3-d3e4-476f-a1a7-e660d07daa23" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8d12707b-c527-4e3f-ae78-be32d0673fee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ac3e7aa5-f431-4f3b-ab45-b8ee5dd6637b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215152Z:ac3e7aa5-f431-4f3b-ab45-b8ee5dd6637b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6699C1C8DBFD4F7A93A9387F5BF971E4 Ref B: MNZ221060610017 Ref C: 2025-06-02T21:51:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:51 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2894.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.2894.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjI4OTQuMjUwMTEyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11738,Microsoft.Compute/GetVMImageFromLocation30Min;72380" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c9aa6cfd-7107-4089-8d83-f40792774269" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3b7797d9-6522-44dd-8e96-b8ccb219603d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "1d04f968-fe78-484b-95ec-ca2438735166" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:1d04f968-fe78-484b-95ec-ca2438735166" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C3F538CC7CE14EEAB6E37DBF27453DB4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2894.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.2894.250206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjI4OTQuMjUwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d1761c65-023b-4bd3-aa69-2948e910fc29" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12310,Microsoft.Compute/GetVMImageFromLocation30Min;73307" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a27f14d9-c72e-423a-a491-41cfdaf80550" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/990a4dc3-9047-4dff-82ab-4db7caf04190" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0ba07141-e1eb-4967-8dce-209eb6c0c1ac" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215152Z:0ba07141-e1eb-4967-8dce-209eb6c0c1ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EEE4F64FD58D4B039D1209BD9DB2C6EA Ref B: MNZ221060610049 Ref C: 2025-06-02T21:51:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:52 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2894.250206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.2894.250206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjI4OTQuMjUwMjA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11737,Microsoft.Compute/GetVMImageFromLocation30Min;72379" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6c446e17-0292-419b-8345-e59d821e5709" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dc15d5c4-4be5-4308-a4f3-92a25bf1a6b3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "e0151c32-d4e7-45a9-b1c4-a1c904a4f750" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:e0151c32-d4e7-45a9-b1c4-a1c904a4f750" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0C23A64F8E994932B411E9AF5672AB45 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2894.250206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.2894.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjI4OTQuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7bf6616a-0057-4d03-afb6-4e45f44d9ed6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12309,Microsoft.Compute/GetVMImageFromLocation30Min;73306" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "00bcfce7-d7f3-43bd-8657-7bad8d377ea8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6a1e3578-7957-41e4-b151-c3abaf69fa03" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2b8e2bd8-68ac-43be-a7e3-f62d3c6b931c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215153Z:2b8e2bd8-68ac-43be-a7e3-f62d3c6b931c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A7EB32E8415A463DAF576E2894E65E03 Ref B: MNZ221060609049 Ref C: 2025-06-02T21:51:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:53 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2894.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.2894.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjI4OTQuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11736,Microsoft.Compute/GetVMImageFromLocation30Min;72378" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cd546825-5eb2-4666-9249-fc592a008ed8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fa915c0a-be14-4549-bdce-a256aa8ae9a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "907db2ac-58d3-4059-b151-b6aefddbffd1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:907db2ac-58d3-4059-b151-b6aefddbffd1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1365F105CF9A4259B988E5191AF1665B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:43 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.2894.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjM3NzUuMjUwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4ce5ae57-ff4f-4cc8-ad4f-ceb93a2df70f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12308,Microsoft.Compute/GetVMImageFromLocation30Min;73305" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3bc512d6-c902-4485-a2f3-d6168872cbf1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/459c2d24-202c-4165-83bc-a30265136c88" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "99b0ef06-69c8-48a9-a542-9187fe04f187" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215153Z:99b0ef06-69c8-48a9-a542-9187fe04f187" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FE3E7578666E4547BD3A025650974B17 Ref B: MNZ221060608021 Ref C: 2025-06-02T21:51:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:52 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjM3NzUuMjUwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11735,Microsoft.Compute/GetVMImageFromLocation30Min;72377" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9e2f7882-bd2f-4e3c-beb1-73bd1c5c7668" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/119be52e-6196-4731-9f96-c7d1ef8f3b4a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "f84a5d42-d91b-437f-8d77-845069feb1cf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:f84a5d42-d91b-437f-8d77-845069feb1cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D848E7377E0148DCAE44DCF1665DD605 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.3775.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjM3NzUuMjUwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4ab91082-5950-4ff3-b1a5-f531c437b10c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12307,Microsoft.Compute/GetVMImageFromLocation30Min;73304" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6bc54c89-0361-4d2b-ba6d-16ff2586c106" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/85143991-0d52-4ab8-906a-ade127b019c9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cc6f9939-8cf5-4d3b-9e4f-eddaa6b9e6d2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215153Z:cc6f9939-8cf5-4d3b-9e4f-eddaa6b9e6d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9996266C5BBB4A77AB13F2716768B0E3 Ref B: MNZ221060609023 Ref C: 2025-06-02T21:51:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:53 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.3775.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core/versions/26100.3775.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlL3ZlcnNpb25zLzI2MTAwLjM3NzUuMjUwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11734,Microsoft.Compute/GetVMImageFromLocation30Min;72376" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "927033e5-f817-4996-bc11-e12667068ff7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3c38cf55-8677-4526-9d85-1056350fff28" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "1bde0566-9e2a-4cf2-b96a-7003643aa9db" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:1bde0566-9e2a-4cf2-b96a-7003643aa9db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 104B11D84F75476D8830AF943DDD68C1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core/Versions/26100.3775.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "de9e91f8-191e-4ac9-bc60-ef5ab7b6d50a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15934,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43928" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f42c0635-4737-4ef4-b8ae-7089fc53bbbe" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b9df3311-83b6-41b6-bd66-60b5cadf0522" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "884fff33-4c2f-4750-b566-ab230011cf18" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215153Z:884fff33-4c2f-4750-b566-ab230011cf18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0E3B38A6FDB2483CB52A577C43B93F31 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:51:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:52 GMT" + ], + "Content-Length": [ + "2691" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2033.241015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2033.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2033.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2894.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2894.250206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2894.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.3775.250510\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15873,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43827" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9e7bcd4c-0940-45a0-813b-0893f6bf8c72" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ce151238-c782-4ca6-8940-afda4e2968c0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7a1f20c8-f077-4079-8672-ced11a5ccad9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215344Z:7a1f20c8-f077-4079-8672-ced11a5ccad9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 27CFC67E28A04561A7148C7AF46EF589 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "2691" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2033.241015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2033.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2033.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2894.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2894.250206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2894.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.3775.250510\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.2033.241015?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTAxNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "63c37274-59bd-47a1-90bc-c0a9c872488d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12306,Microsoft.Compute/GetVMImageFromLocation30Min;73303" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1307f1ba-b8ef-42d6-8919-e0fca64d43e8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8c710068-b326-420a-abf5-1049b8181ca6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "99d693ce-1116-4372-acdc-e182dd4c7ca2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215153Z:99d693ce-1116-4372-acdc-e182dd4c7ca2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9496E91DAE34425F92015DA68046C9C9 Ref B: MNZ221060608009 Ref C: 2025-06-02T21:51:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:52 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2033.241015\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.2033.241015?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTAxNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11733,Microsoft.Compute/GetVMImageFromLocation30Min;72375" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5d8f42aa-d6ba-440d-b26a-6efafce3a777" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7ddc3b77-5c70-42c5-9bc5-548167630e82" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "216a7734-a79c-4c30-9c78-831f5ce2bcbb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215344Z:216a7734-a79c-4c30-9c78-831f5ce2bcbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 159AA935D14347E5B097488D87AD117B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2033.241015\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.2033.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTEwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e1787668-750c-4f6e-8d05-28a78c827d3e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12305,Microsoft.Compute/GetVMImageFromLocation30Min;73302" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cec48a6a-0daa-4f42-9032-029c15c8adf9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e451febd-96e7-4c07-8e62-54c9c29df4ca" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "033ad512-a33e-474b-99db-4fe0bdef79de" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215153Z:033ad512-a33e-474b-99db-4fe0bdef79de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C7D5EA3F1F9C49DF9D4FE7F6E75641D0 Ref B: MNZ221060619025 Ref C: 2025-06-02T21:51:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:52 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2033.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.2033.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTEwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11732,Microsoft.Compute/GetVMImageFromLocation30Min;72374" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1d53855a-2bc6-4100-9b71-5495c396a20d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/49367c12-1eb9-46b6-b22e-c2d9cdefca69" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "31d65025-1306-4016-a2d9-90aba81f149e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:31d65025-1306-4016-a2d9-90aba81f149e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4E1F71757A8744B3BDF87E9274C92220 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:44Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2033.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.2033.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2b511ad7-6045-4c15-9b1f-2b4e2d8da7f3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12304,Microsoft.Compute/GetVMImageFromLocation30Min;73301" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3eea25e3-6f8e-49b2-9236-de179e3e09c0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/aea48190-ea01-4a52-a9b4-6e979d0bb8ac" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a8b929b0-10b0-4f01-aa71-e9aa29a8e0c2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215153Z:a8b929b0-10b0-4f01-aa71-e9aa29a8e0c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 47D2D1DD45B444A3ACB06299586F9337 Ref B: MNZ221060610045 Ref C: 2025-06-02T21:51:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:53 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2033.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.2033.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11731,Microsoft.Compute/GetVMImageFromLocation30Min;72373" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "859ddea4-25ad-44ac-8443-fc61524239da" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/86f9806a-794c-467c-91e9-fedac2b9bf8a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "7d84f4ed-7305-43f4-aa61-e22e31116668" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:7d84f4ed-7305-43f4-aa61-e22e31116668" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F6FB2445A04F4CEFA5A697937E5EAFFB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2033.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.2894.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "409bc4a7-9673-436a-b391-96782e108bf4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12303,Microsoft.Compute/GetVMImageFromLocation30Min;73300" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "05b3ce65-4675-4bb8-a88d-1e2cccf1c403" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/09003522-9f60-48a8-9676-da59b4735ffe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d116aa29-fd99-4727-8d60-e9df1cc9245d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215153Z:d116aa29-fd99-4727-8d60-e9df1cc9245d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 77A380175999441AAD96FD63E0C1EDB7 Ref B: MNZ221060610051 Ref C: 2025-06-02T21:51:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:53 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2894.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.2894.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDExMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11730,Microsoft.Compute/GetVMImageFromLocation30Min;72372" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "435f3589-8818-4b9a-9d76-9b6cc4eefe49" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/64574dd3-1b5b-419d-b4e6-ecf1d9a314e7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "78090cc9-3748-4b59-9f4d-0a763c0be68e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:78090cc9-3748-4b59-9f4d-0a763c0be68e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B75685365A814F3B9DB2AAE9A81CAD87 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2894.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.2894.250206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c0af5268-ab49-4327-8a14-99dc17be8790" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12302,Microsoft.Compute/GetVMImageFromLocation30Min;73299" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "075bdb19-49b6-445d-b199-6a0c2db77567" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a5332ddc-3f3f-4815-acbf-93e517c8f989" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "963e054f-88e0-45a9-9c42-3ce1a5b68136" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215154Z:963e054f-88e0-45a9-9c42-3ce1a5b68136" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A9563B2E44AB450E8AB0D1E5C2C41576 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:51:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:53 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2894.250206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.2894.250206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11729,Microsoft.Compute/GetVMImageFromLocation30Min;72371" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "47f239fb-1cd8-425d-9afb-0f32cc6f2f3a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f37ea599-ba31-498d-aec3-b61200312328" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "7012f766-27ce-4204-8fbd-46f12c3c9f0c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:7012f766-27ce-4204-8fbd-46f12c3c9f0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3D94BB7A1E8748FE97D462A0A3C8074F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2894.250206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.2894.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "abd86746-c5b2-458f-96b6-e4983ae23e35" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12301,Microsoft.Compute/GetVMImageFromLocation30Min;73298" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "db4280a5-3d76-4c72-96cd-d4ac879ead0b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ad8ee57d-77e4-4353-9c29-a714c8181469" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "468988f2-1ec3-407d-94b9-b529afe5106b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215154Z:468988f2-1ec3-407d-94b9-b529afe5106b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8FB0349FE4C44E8BA02D944388D4D244 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:51:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:53 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2894.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.2894.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11728,Microsoft.Compute/GetVMImageFromLocation30Min;72370" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d0ab084e-f81a-434e-abba-7c8bfa02ffee" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fb46eb6f-6064-4ad5-acc7-401a6ae146de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "d4ff5067-1f0d-4898-9a78-15f25f6c26d9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:d4ff5067-1f0d-4898-9a78-15f25f6c26d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2EABD5251A4F460F989499BCC4F10489 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.2894.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4d671715-8ad7-4999-98dd-d4a5839b973c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12300,Microsoft.Compute/GetVMImageFromLocation30Min;73297" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a0865f56-e97f-4e15-9b56-1c677dda2c42" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1e534309-0e29-4ebb-bdad-97698ece3ff5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c2d05331-8a58-4966-8a45-9a690f7a4cfe" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215154Z:c2d05331-8a58-4966-8a45-9a690f7a4cfe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7F5CE766B3AF4039ABFC6A0CB50F9BC9 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:51:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:53 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11727,Microsoft.Compute/GetVMImageFromLocation30Min;72369" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a644d791-680f-40ff-b355-c0ac7dfa3e6b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/16de9360-6828-496f-a095-2557196b61fc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1821b342-cb6a-4169-ad46-f099c667970e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:1821b342-cb6a-4169-ad46-f099c667970e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5274AC1DEE9740608DA0FC2A1A2FAFA3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.3775.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3e3cd1fd-1429-4fb4-8f14-08a2957aa253" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12299,Microsoft.Compute/GetVMImageFromLocation30Min;73296" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8887a36c-3253-45b0-963c-cbbe23a43b7c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f0950b9b-5953-4b2e-85b8-3d1c6aecb326" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ba3f00c1-2f74-4359-9ab5-626397d06eaa" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215154Z:ba3f00c1-2f74-4359-9ab5-626397d06eaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CBBD952D797F40478218405A0E115097 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:51:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:53 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.3775.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-core-smalldisk/versions/26100.3775.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1jb3JlLXNtYWxsZGlzay92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11726,Microsoft.Compute/GetVMImageFromLocation30Min;72368" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "dbf126ac-cd42-4856-814f-b85f90244ff1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7ff78826-dc47-4eca-a3d4-4cc38935ad7f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "960de9ef-a351-4779-9b39-798673c40dad" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:960de9ef-a351-4779-9b39-798673c40dad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 15782A4DA1664C4BBF60F77697964347 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-core-smalldisk/Versions/26100.3775.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ff729003-edf1-458f-a690-5d3389c93293" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15933,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43927" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "06e08790-611b-4c9b-92c8-24a7191de670" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/73b2d21b-0e76-4bc2-b3e4-6eff38049473" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0d410a54-bc64-4ade-98f5-4d7227a255c8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215154Z:0d410a54-bc64-4ade-98f5-4d7227a255c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2E9C4375B4CC4507A607CAB217BA46C8 Ref B: MNZ221060619045 Ref C: 2025-06-02T21:51:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:54 GMT" + ], + "Content-Length": [ + "2651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2033.241015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2033.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2033.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2894.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2894.250206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2894.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.3775.250510\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15872,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43826" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3f597fb1-8683-4905-b986-b67c04076f39" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3a057c92-17d7-4598-9420-f07d0c0d82d9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3a23e759-5b68-4ba8-b905-ad128de4cf1c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215345Z:3a23e759-5b68-4ba8-b905-ad128de4cf1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 55CD574F56974A6D8325EF4093458C9A Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "2651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2033.241015\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2033.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2033.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2894.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2894.250206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2894.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.3775.250510\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.2033.241015?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDEwMTU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d107ee03-0a99-4495-9d6d-e0d58909de37" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12298,Microsoft.Compute/GetVMImageFromLocation30Min;73295" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "20d640b3-0853-4b25-8cb7-8e878dab0eb8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8145715c-ecc0-456d-bb2f-7efe01531c6d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "83b4c32e-d60d-4542-9976-4ff2641bd03b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215154Z:83b4c32e-d60d-4542-9976-4ff2641bd03b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 07C74FB2B5504CA2A893C9D545E83680 Ref B: MNZ221060609031 Ref C: 2025-06-02T21:51:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:54 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2033.241015\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.2033.241015?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDEwMTU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11725,Microsoft.Compute/GetVMImageFromLocation30Min;72367" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2a81a751-3095-4586-9401-ead013577007" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f47e1678-32da-4491-9dc4-250215a6b9aa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2d3c44ef-aa07-4f42-969c-1ddef5af567d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:2d3c44ef-aa07-4f42-969c-1ddef5af567d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 49FD64E14CFC4598BAE56175E8A56831 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2033.241015\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.2033.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDExMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f65e5686-bf8c-41ce-93a4-f73b388cbe31" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12297,Microsoft.Compute/GetVMImageFromLocation30Min;73294" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e360b188-1ad2-4e5e-8c1f-67589abb2b7b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/67bbcc2e-0c08-474f-95c7-fa1b78a99e61" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "997c467d-1964-4b2a-a7d6-c51d904f4fd6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215154Z:997c467d-1964-4b2a-a7d6-c51d904f4fd6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5913636EED3F4A869B994FAE7603B458 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:51:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:54 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2033.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.2033.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDExMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11724,Microsoft.Compute/GetVMImageFromLocation30Min;72366" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6473af15-ed50-4d6d-9d27-044bdb756956" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/394c948d-ff0e-42a4-8324-154400c820fe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fe135144-70bc-45ed-9949-1d27d5b9a06b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:fe135144-70bc-45ed-9949-1d27d5b9a06b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0EC7A14AE62F4F16B4BBD84CFC444046 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2033.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.2033.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fa271d89-7125-4896-a464-4dae7dcb1683" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12296,Microsoft.Compute/GetVMImageFromLocation30Min;73293" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "86549d76-0861-4501-aa96-b7eb4e7fe8f3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fba6aa86-62f2-47ba-9a70-ebef8929f046" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "96ff8f92-4641-46d0-8157-7615da48fc8f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215155Z:96ff8f92-4641-46d0-8157-7615da48fc8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 27D40136DBEA4715BFECBEE7FD3ECA3D Ref B: MNZ221060619037 Ref C: 2025-06-02T21:51:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:54 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2033.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.2033.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11723,Microsoft.Compute/GetVMImageFromLocation30Min;72365" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "15cf51b2-7b38-4089-b59a-69eadf046535" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/40aca38f-4095-48a1-af3c-2d7ca200b455" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "21367c3c-cf37-4ef6-87e1-f7a2d85b76d3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:21367c3c-cf37-4ef6-87e1-f7a2d85b76d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FAD038EE7A744E4C93D7C73782B870B8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2033.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.2894.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a075f472-96b0-404b-ab8a-ed5d9b4bf7fa" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12295,Microsoft.Compute/GetVMImageFromLocation30Min;73292" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bdc19d74-4caa-483e-81e2-04759d314148" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/97e5aaf7-dbe2-412e-96a1-2e41e0f1dca4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "37fb510b-d235-4c7b-92e9-68cf38f9cb73" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215155Z:37fb510b-d235-4c7b-92e9-68cf38f9cb73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E41C14D132174CBBB3B7B92A0080BD0B Ref B: MNZ221060609047 Ref C: 2025-06-02T21:51:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:54 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2894.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.2894.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11722,Microsoft.Compute/GetVMImageFromLocation30Min;72364" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8367737d-f408-41e9-8288-d3b6e78f4e54" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/aa505e77-ef7b-44c8-b567-3f6dff4d1933" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "77c228de-2420-4e1f-9bd3-ecdbce8f8103" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:77c228de-2420-4e1f-9bd3-ecdbce8f8103" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EB1A84AC97D1435897FC826DA933CF21 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:44 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2894.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.2894.250206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d752cecb-090c-4037-a442-7a1ef6347cde" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12294,Microsoft.Compute/GetVMImageFromLocation30Min;73291" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0924b15b-3fe5-49aa-9be7-bc2e4276eb13" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/772c17c5-0519-45dc-a2bb-4b21750c9b78" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1cbcbbf5-d00d-4532-8071-c49f7d16f87b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215155Z:1cbcbbf5-d00d-4532-8071-c49f7d16f87b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CB23CFE3BB544E598675167D856E503E Ref B: MNZ221060618027 Ref C: 2025-06-02T21:51:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:54 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2894.250206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.2894.250206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAyMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11721,Microsoft.Compute/GetVMImageFromLocation30Min;72363" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "28c8450a-879c-4333-8262-c3546e4a6062" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/307c7731-c1de-41d3-aeeb-179708d6c451" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c3846969-003a-4a68-b226-fe61f7b34362" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:c3846969-003a-4a68-b226-fe61f7b34362" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 02C976BC4A69450FACA3A4D057A09803 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:45 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2894.250206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.2894.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "627e3f28-313a-4986-b131-aace77da0f69" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12293,Microsoft.Compute/GetVMImageFromLocation30Min;73290" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3364a630-639a-497c-9d2a-e586bcaafb10" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/77a69449-ba68-4539-a061-62fa1ad950b5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1de5c303-3ef8-441e-837a-4d5d8a0a2b09" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215155Z:1de5c303-3ef8-441e-837a-4d5d8a0a2b09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 161B24A5B3D8468E8DA9055A0872637E Ref B: MNZ221060618027 Ref C: 2025-06-02T21:51:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:54 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2894.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.2894.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11720,Microsoft.Compute/GetVMImageFromLocation30Min;72362" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b4bdfc55-42fe-4902-9952-0855c6f5bd99" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7a51e8ca-9bd9-47be-9017-2b0965446262" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ea551d68-031b-4ed0-8992-6c2a1322c77c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:ea551d68-031b-4ed0-8992-6c2a1322c77c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 173096595610425DBEFDA56047566A9D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:45 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.2894.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f0a90678-ad56-4b9c-a411-70b72627e074" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12292,Microsoft.Compute/GetVMImageFromLocation30Min;73289" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c4c4416b-c78e-48af-8ecd-4bd81865c855" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/77143b87-034c-4152-9590-dc216da11de2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "93ad1929-2de0-4080-a5a4-93a9f312c6d8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215155Z:93ad1929-2de0-4080-a5a4-93a9f312c6d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D9226CE622354BB78E4C6EE1D87DC0B5 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:51:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:55 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11719,Microsoft.Compute/GetVMImageFromLocation30Min;72361" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "218bff96-23a0-4bd8-9020-c60fa6c79007" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/42f730b0-67b5-46df-8b55-f152e0af8dd3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "1a71be96-dcff-455a-966e-193ecbdcaae0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:1a71be96-dcff-455a-966e-193ecbdcaae0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E5BB8B5AC4BA403B86534E548CFD70C2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:45 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.3775.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "36fe5a41-2369-402e-b79a-38f8b7be04e2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12291,Microsoft.Compute/GetVMImageFromLocation30Min;73288" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "34cd3cb2-f093-47ef-8276-830181bca2b1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/843211bb-eaea-4823-90a1-71f26fe6822f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3b873104-0676-43fb-9528-b7f6a14eaa59" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215155Z:3b873104-0676-43fb-9528-b7f6a14eaa59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BDA82E2C759F4716A2160BD99E22F0BC Ref B: MNZ221060609047 Ref C: 2025-06-02T21:51:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:55 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.3775.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-azure-edition-smalldisk/versions/26100.3775.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItYXp1cmUtZWRpdGlvbi1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11718,Microsoft.Compute/GetVMImageFromLocation30Min;72360" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "65aa783c-b6b2-4526-82cd-f3f058cdcdae" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9f4c50c0-ad21-4f30-8a76-5d2b2eb93980" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "188bdb6f-cccb-4867-843a-a75a11e73a11" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215345Z:188bdb6f-cccb-4867-843a-a75a11e73a11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BC88F4792B674511B6BB3F092EF1BEC0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:45 GMT" + ], + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-azure-edition-smalldisk/Versions/26100.3775.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "62a59c51-71a7-460d-a546-1ed81b1dd488" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15932,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43926" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "48ade852-262a-4a79-88e0-35c4a08d23bd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9579a30e-5a1b-4037-9d1d-b8fc4a585e57" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "43bd7187-5455-4124-8cd1-32f0a476aabb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215155Z:43bd7187-5455-4124-8cd1-32f0a476aabb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B6221AABD2DE437D8E24EF120E81B217 Ref B: MNZ221060609019 Ref C: 2025-06-02T21:51:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:55 GMT" + ], + "Content-Length": [ + "2811" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15871,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43825" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c1e413ec-a67d-4a3f-aeb3-b8cc252c3346" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a3ad5970-748e-4b0b-ac26-f77d11e9f44e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "c991ae56-0d29-4dcd-935a-d10dad84b173" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215346Z:c991ae56-0d29-4dcd-935a-d10dad84b173" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C4E60637F75943EDA6F6B2336D5A00CF Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:45Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:45 GMT" + ], + "Content-Length": [ + "2811" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "60c5196c-ec8a-4649-8fc8-a394e2cd643a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12290,Microsoft.Compute/GetVMImageFromLocation30Min;73287" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "42285bf9-cecc-4cf1-b299-1edfa31d9c78" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3212fca0-3a11-4371-9480-0af52d3e3595" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "16863dd6-23b4-488a-bdf9-cb85d95b1dd8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215155Z:16863dd6-23b4-488a-bdf9-cb85d95b1dd8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 21F781E26092460EA405F07C9ADE11C0 Ref B: MNZ221060609029 Ref C: 2025-06-02T21:51:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:55 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11717,Microsoft.Compute/GetVMImageFromLocation30Min;72359" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "415cb801-7478-4ed9-b3d9-d60471e452a8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/20210c08-86c1-445b-b9b6-63e1e7fbbf09" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "6f5dcac0-95c7-4dc8-b6e4-fa68b54b92f4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215346Z:6f5dcac0-95c7-4dc8-b6e4-fa68b54b92f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F45F3FA5C45943999D1AC70F9B4594FC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:45 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4yMzE0LjI0MTEwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "09aeea5e-4378-45a2-9235-2904845cf64f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12289,Microsoft.Compute/GetVMImageFromLocation30Min;73286" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e1e994ae-3ada-4685-b080-31d8b96503fc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cce1ea87-ea94-46ea-b401-a488c71c427e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b17d0905-84c5-436f-bc96-1254b65ca248" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215155Z:b17d0905-84c5-436f-bc96-1254b65ca248" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D5F535ED6E1C4855AEA5D201A66D4E23 Ref B: MNZ221060610007 Ref C: 2025-06-02T21:51:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:55 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4yMzE0LjI0MTEwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11716,Microsoft.Compute/GetVMImageFromLocation30Min;72358" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1be78a3b-e4fa-4ff3-bab1-837fe9a24743" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/17a544a9-5dab-4859-a765-3e54338f6c18" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e58aa028-a19c-41b7-b89d-86abfa4e965f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215346Z:e58aa028-a19c-41b7-b89d-86abfa4e965f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CEE8BE1D172A43988F550B9D51AA80CC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:45 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4yNjA1LjI0MTIwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "51363679-f7a6-48d6-9997-d773592b626f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12288,Microsoft.Compute/GetVMImageFromLocation30Min;73285" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f3fbce27-ead3-4568-84ac-6629fcb98325" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/beb194e2-c921-449d-a150-6e9a4341aca0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5b821ced-cdbf-40f8-bfa2-9e336886682e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215156Z:5b821ced-cdbf-40f8-bfa2-9e336886682e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C05962211EC468AB8DF4370FB0FCB36 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:51:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:55 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4yNjA1LjI0MTIwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11715,Microsoft.Compute/GetVMImageFromLocation30Min;72357" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ff39c930-2668-41d4-9f12-5dcafc6a1f9e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/39c09bb0-674b-45b0-8251-8219960d480e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "997bb941-9184-4eb4-8f80-26adc53882e8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215346Z:997bb941-9184-4eb4-8f80-26adc53882e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD5CC47B3DE44BD7B519D3A4F312F92A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:45 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDExMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0eae294d-a3fc-41f1-acde-2d42151ff891" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12287,Microsoft.Compute/GetVMImageFromLocation30Min;73284" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b8a7c51e-63fc-4433-8e0b-4df7f61cb534" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/08644708-2457-4e78-a42d-3d128d3359db" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "05d70c95-4cfe-42f4-9a5b-e924ff51075d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215156Z:05d70c95-4cfe-42f4-9a5b-e924ff51075d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AF339D0AADE943E494FB9D0C7DD3F1AA Ref B: MNZ221060619031 Ref C: 2025-06-02T21:51:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:55 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDExMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11714,Microsoft.Compute/GetVMImageFromLocation30Min;72356" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5cbb4cfa-61ea-49e7-bd8d-712765abb289" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b86b5a58-cc68-499d-a03b-7bbb7bb92382" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "02721c2a-9725-44c1-afe6-a76187b5f56a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215346Z:02721c2a-9725-44c1-afe6-a76187b5f56a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 12A8A0E0D629469D9AD3C7B67C0464DC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:45 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4zMTk0LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b67cece4-d6b4-4d20-8cf9-cf1f2c842129" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12286,Microsoft.Compute/GetVMImageFromLocation30Min;73283" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7a280cc5-8bde-47cf-a855-31e448e5b76c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a64b8e8a-e328-4f75-b3f4-b03293439aaf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5133ed33-0e1e-41d4-ba07-afd46864266f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215156Z:5133ed33-0e1e-41d4-ba07-afd46864266f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BCD09035605D4A8C9DF00C3FF2E7241E Ref B: MNZ221060609023 Ref C: 2025-06-02T21:51:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:56 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4zMTk0LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11713,Microsoft.Compute/GetVMImageFromLocation30Min;72355" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "471c23b4-d378-4823-836e-d415875d4d50" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/44389f44-bf33-4432-b5b9-2e14e261a19e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "79267622-7404-42da-89ca-d018ee0911b5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215346Z:79267622-7404-42da-89ca-d018ee0911b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A5DB3D4197FF44F092B17C284A2AE07D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:45 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4zNDc2LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ed3526b9-93e6-4f09-a4cc-4abb1b861979" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12285,Microsoft.Compute/GetVMImageFromLocation30Min;73282" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ee734520-15c8-486d-bcee-961eb7ac9f04" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/74761d18-6a7a-4252-a8a7-5e10bc72aff0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dfd13587-41b3-4b0a-be62-0873ed867d0a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215156Z:dfd13587-41b3-4b0a-be62-0873ed867d0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3907CE93B8C24D9BB312D15D6C35E02D Ref B: MNZ221060608047 Ref C: 2025-06-02T21:51:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:55 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4zNDc2LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11712,Microsoft.Compute/GetVMImageFromLocation30Min;72354" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7521fcc8-5081-4eba-bd5b-46adb0db0f61" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3863fb3a-e7f8-4908-b315-a4021efa7f49" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "21a226f6-c79e-4e68-9487-9fb65a435657" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215346Z:21a226f6-c79e-4e68-9487-9fb65a435657" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3353F130A7F147CC94B3975CF29E69E9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:45 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "37eb0065-014f-4aa0-a605-868a1d1a68cf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12284,Microsoft.Compute/GetVMImageFromLocation30Min;73281" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e54db5ab-c320-4487-938f-7a5135a6a27b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/11886da0-47f6-42a0-8cbc-7f4cbdecd1e0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e95217fa-e9a2-431a-9bfb-b7228dcbf493" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215156Z:e95217fa-e9a2-431a-9bfb-b7228dcbf493" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 588044DC82FD45BB8CD2EC4DCAD6F46F Ref B: MNZ221060618045 Ref C: 2025-06-02T21:51:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:55 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11711,Microsoft.Compute/GetVMImageFromLocation30Min;72353" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bf978947-ab91-42eb-a198-4659b06be557" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2f4efb2a-153b-46b4-bc34-01c911f3d2f5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "6cfa67e1-9959-4588-9dbe-7d7910a25521" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215346Z:6cfa67e1-9959-4588-9dbe-7d7910a25521" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D3594AB520C54B5995ED4E1F870DD350 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:45 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC40MDYxLjI1MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "073013a0-9bdb-4a6a-aca0-14ce9eace82f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12283,Microsoft.Compute/GetVMImageFromLocation30Min;73280" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c123a136-1273-4cb6-bfd5-44fbd59f3ce2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dfeaae9c-d4c2-4719-9b58-d91127624cd9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "39bcb7b8-f04b-466b-8ebd-a04fc2b72caa" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215156Z:39bcb7b8-f04b-466b-8ebd-a04fc2b72caa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E825534AF84C49D6B6A2264533671C34 Ref B: MNZ221060619049 Ref C: 2025-06-02T21:51:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:56 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC40MDYxLjI1MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11710,Microsoft.Compute/GetVMImageFromLocation30Min;72352" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "dce66282-2977-4e7d-bfe5-d8083343064f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6ec00bed-0511-432e-bec8-493aa944fac5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "414f655b-c5d6-4f2f-9d99-dfffc7de8b54" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215346Z:414f655b-c5d6-4f2f-9d99-dfffc7de8b54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FB2FE492F92A4BE098CF6277E7BEBBF3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:45 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC40MDY2LjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "17902b5d-24d4-4592-8cad-5f58a48ae1bb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12282,Microsoft.Compute/GetVMImageFromLocation30Min;73279" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8b35bb0f-c96c-4f4f-828f-83f544351ac0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6623d0fa-02fd-478d-8df3-33856d1b56d8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e7e2ca56-6bda-4ad3-808e-7b9483dd3f35" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215156Z:e7e2ca56-6bda-4ad3-808e-7b9483dd3f35" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 861D6E300D0A4C15BAB842D864115A13 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:51:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:56 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNjEwMC40MDY2LjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11709,Microsoft.Compute/GetVMImageFromLocation30Min;72351" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "34b2bfe3-d99a-4868-a6ea-5fba881bf5aa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dd94353b-ff1d-43dd-8421-191a45bc3c9e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "7b1d45b1-42b7-4c6c-aaaf-3ff399d2e923" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215346Z:7b1d45b1-42b7-4c6c-aaaf-3ff399d2e923" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D9CBB1E2AD084F47A29C315C46CE0615 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a16edd6c-50e6-4162-bd20-efddf35410b5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15931,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43925" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "07a93ff1-caa8-46a7-88f2-8fb217515634" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6ae3d971-3ac1-4a9a-8e56-944e8e7846f4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a55c52d4-b949-4e24-861e-9061cd217635" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215157Z:a55c52d4-b949-4e24-861e-9061cd217635" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AFD770B5601149B6A305B9B9C7488CF0 Ref B: MNZ221060610047 Ref C: 2025-06-02T21:51:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:56 GMT" + ], + "Content-Length": [ + "2838" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15870,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43824" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a374b899-aeb2-4d5e-9a8a-ecdd004b53b7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ddba704b-a595-4172-8d11-99fd5a3d016e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2eae7a7c-d338-4e3d-a76e-cd9871486c44" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215346Z:2eae7a7c-d338-4e3d-a76e-cd9871486c44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C2F3EC27DF544136A5F99DC082366785 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "2838" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c17e4df2-fac6-4daa-ae9a-9dddf6f8634c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12281,Microsoft.Compute/GetVMImageFromLocation30Min;73278" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f33380c3-8b1b-42ea-93d7-82c1b807a036" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/eb2543bb-f31c-4ec9-8fd7-e69f33e5ae32" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "74efd51b-cbc3-4293-ab89-bdd5b58d2dd7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215157Z:74efd51b-cbc3-4293-ab89-bdd5b58d2dd7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6DE192DC713A4DEF85F7E56FCF6F0928 Ref B: MNZ221060610051 Ref C: 2025-06-02T21:51:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:56 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4yMDMzLjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11708,Microsoft.Compute/GetVMImageFromLocation30Min;72350" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "90d02557-007f-4b5b-a99b-9cbce0ed0e7f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b58feddd-2329-4310-b040-f5e5331fb7c4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "8c1447bb-0aab-4250-976d-ecc3ad4a2a4c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215346Z:8c1447bb-0aab-4250-976d-ecc3ad4a2a4c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BF899EEF706C497899C9210554FA66C1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4yMzE0LjI0MTEwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ce37b48a-4d0a-4e97-9b4b-c4f9de80b350" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12280,Microsoft.Compute/GetVMImageFromLocation30Min;73277" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a2a3eb6d-dded-4375-8133-007735af8f8a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ab9acb3a-5d48-4775-ad02-a6491ce1d724" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "926e8314-af34-46aa-ae3d-d846cd24cd43" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215157Z:926e8314-af34-46aa-ae3d-d846cd24cd43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AA5CA92AE48E4C959E5F8E1840AE36E8 Ref B: MNZ221060618039 Ref C: 2025-06-02T21:51:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:56 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4yMzE0LjI0MTEwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11707,Microsoft.Compute/GetVMImageFromLocation30Min;72349" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c08cab0e-b293-4b1d-8bad-67ab7d83305e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a60cfc05-0696-4900-8301-bc3fa8230681" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "8e226f55-014d-4646-a440-e47609de4ae0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215346Z:8e226f55-014d-4646-a440-e47609de4ae0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DEBC2B05CC3644618A4C0BF07F4F1E67 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4yNjA1LjI0MTIwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "352980d7-8c2f-4149-8320-26384510a478" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12279,Microsoft.Compute/GetVMImageFromLocation30Min;73276" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "24c0d048-9435-4c1c-88ce-40c4c4ed31de" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/03e613de-3b96-46c8-8ebb-dd0ed3be911d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "df0c975e-dc55-4b49-9867-ddac2c489363" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215157Z:df0c975e-dc55-4b49-9867-ddac2c489363" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EDFDF7760FBB488C8B96814891941D3D Ref B: MNZ221060618021 Ref C: 2025-06-02T21:51:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:56 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4yNjA1LjI0MTIwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11706,Microsoft.Compute/GetVMImageFromLocation30Min;72348" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "72d12a72-14d8-4b26-99e4-633e02ee1b09" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bb4004ec-9029-4312-974c-2d3cca27f167" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "a49d8b08-4580-4dcf-9358-031065bb846b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:a49d8b08-4580-4dcf-9358-031065bb846b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3F7F64197D3F4A5A97BEBE7472121B7E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:46Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDExMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "00003321-06bf-40c8-9597-8d7c0659e4b9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12278,Microsoft.Compute/GetVMImageFromLocation30Min;73275" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6545a5d4-5b10-4f5f-8834-23464ebda858" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/882a4899-be22-4e0d-98c2-263483b23c20" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6201d474-889f-41f4-906c-5cf9924d006b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215157Z:6201d474-889f-41f4-906c-5cf9924d006b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 06A0AE6A8F224FFCB9AF088C280A0305 Ref B: MNZ221060610017 Ref C: 2025-06-02T21:51:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:56 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4yODk0LjI1MDExMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11705,Microsoft.Compute/GetVMImageFromLocation30Min;72347" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "dbc714f2-983c-44b5-827a-2995e40805ef" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d31f5e18-4879-4424-bbc3-377130bf3926" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d2e2a1e0-842a-45e4-ab15-35bdacc539dd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:d2e2a1e0-842a-45e4-ab15-35bdacc539dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3E300ADB649C47F39C759D55B8988558 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4zMTk0LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ddf1a78f-9c70-4604-a519-2b3623c34d41" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12277,Microsoft.Compute/GetVMImageFromLocation30Min;73274" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b829f710-3c27-4f1b-a4ab-380c276234a2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6cca1bb7-8c58-4244-9cc6-d9df97fa6417" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "34da31bc-6cb3-47b5-908c-6d63d22a7cc2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215157Z:34da31bc-6cb3-47b5-908c-6d63d22a7cc2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6F94105315E84F0CA0BFCFCBF50BA22D Ref B: MNZ221060610045 Ref C: 2025-06-02T21:51:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:57 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4zMTk0LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11704,Microsoft.Compute/GetVMImageFromLocation30Min;72346" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "822822b5-7770-4484-a6da-a168f1e84c83" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/84dcbd3b-1387-428f-90bb-2a0e4a712499" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2eeb242b-c0f4-464a-996c-a801871c838e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:2eeb242b-c0f4-464a-996c-a801871c838e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2596B3BEC4C6472A8C0429C179955D85 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4zNDc2LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7f0acce5-73d4-4d84-b65f-a8e39ccdbd8e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12276,Microsoft.Compute/GetVMImageFromLocation30Min;73273" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "71dbb888-c885-4c22-975c-88c9a484669f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b118cee1-35a1-4268-bee6-6b081b94810f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2c93dc24-a1e9-4fe7-adf9-f732552b83a7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215157Z:2c93dc24-a1e9-4fe7-adf9-f732552b83a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD96615227884A068B8635B5522236DB Ref B: MNZ221060610007 Ref C: 2025-06-02T21:51:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:57 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4zNDc2LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11703,Microsoft.Compute/GetVMImageFromLocation30Min;72345" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ed60a02c-6dcd-491e-9893-fda92c910dea" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4648785e-07ae-48e0-9fcb-51a28c50d456" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e88318aa-6118-4b5c-8934-e532a163062c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:e88318aa-6118-4b5c-8934-e532a163062c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DD78D3E50B3144D48AD5D45397781C44 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f3e75269-2448-47ce-81af-5e981b8bd5b1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12275,Microsoft.Compute/GetVMImageFromLocation30Min;73272" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "12f604bb-137c-4a8f-a3d6-f9efb49d5e81" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6fec7d78-4ea8-4aff-b76b-53f06549cef8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "14ea07ee-866d-493b-a3ba-556906e673f6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215157Z:14ea07ee-866d-493b-a3ba-556906e673f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0D0D3FAF94FD4708AB770864979DBD00 Ref B: MNZ221060609029 Ref C: 2025-06-02T21:51:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:57 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC4zNzc1LjI1MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11702,Microsoft.Compute/GetVMImageFromLocation30Min;72344" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bbd7a303-c93b-4987-ac87-841910ecaae3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/378a28a6-3f7c-4dbd-8ba4-a775f7a160e5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "5e22b8ee-eaee-4f6f-885a-7379089b36b6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:5e22b8ee-eaee-4f6f-885a-7379089b36b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6209D896A76B4B5E93CC5695F0AB0BD2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC40MDYxLjI1MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f0aa04fd-c7a2-4303-af29-8f8769aef8d8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12274,Microsoft.Compute/GetVMImageFromLocation30Min;73271" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "73fa2501-8070-4626-bccf-c372935a829a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a3135e75-86a8-4773-832b-9f9221251e38" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0905e8c0-fb72-4f45-ad52-bcf841643aab" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215158Z:0905e8c0-fb72-4f45-ad52-bcf841643aab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2BA51FC29AC74D93B096B7D1B6423EC4 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:51:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:57 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC40MDYxLjI1MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11701,Microsoft.Compute/GetVMImageFromLocation30Min;72343" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ebdd6f28-4bdb-4210-aae6-387e2ac8bafd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/82ea38c7-3de9-4778-9b34-289e6ea38996" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4d196f1a-6ffa-470b-bf4a-d99f8313cf4a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:4d196f1a-6ffa-470b-bf4a-d99f8313cf4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A4F95027C72B4A76B2DD0234F7554106 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC40MDY2LjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e60c9e2f-4d6e-4ac5-957b-d9683434fc7f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12273,Microsoft.Compute/GetVMImageFromLocation30Min;73270" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "76c175d6-92c7-4c39-9df9-3b9a9c7c6adb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/21a30a08-ce81-4113-8d34-4b339852a3be" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7be2f9b2-623b-4e8a-a900-a8cb5d3670c4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215158Z:7be2f9b2-623b-4e8a-a900-a8cb5d3670c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 92C90372060E487D923BDC141AEE40EA Ref B: MNZ221060609053 Ref C: 2025-06-02T21:51:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:57 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-g2/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNjEwMC40MDY2LjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11700,Microsoft.Compute/GetVMImageFromLocation30Min;72342" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "40013830-a12b-4e65-a9d5-5690a837e01a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7d738836-f2ed-4423-b591-c193652c0cd8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5233c4e4-2fc8-4d40-b939-3be4e2387eb1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:5233c4e4-2fc8-4d40-b939-3be4e2387eb1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6EF045ACF72D4288BDED842598DD5AF3 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-g2/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cd283225-45e3-438c-a396-badc1d740045" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15930,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43924" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e11dc06-50ca-4dd8-8786-84fe8d4edba3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d28e44fe-567f-4ef7-a47c-129c10c70efe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9ea4007a-c97c-4b7a-968e-e69fabdb7337" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215158Z:9ea4007a-c97c-4b7a-968e-e69fabdb7337" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 19F5F91FD2044B21BC0FD8ECC2F65473 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:51:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:58 GMT" + ], + "Content-Length": [ + "2901" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15869,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43823" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3181cc24-d7fd-4570-8cce-2083c8ff21ab" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/90b5fb86-8682-4d80-8555-41833a3cff24" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d8b6d497-e568-47e7-9767-c86a8a9ad945" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215347Z:d8b6d497-e568-47e7-9767-c86a8a9ad945" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6136AF448FC346F48B9BE3573D514852 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "2901" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8ee7a8b8-3e83-47f0-8a3b-af3024c59079" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12272,Microsoft.Compute/GetVMImageFromLocation30Min;73269" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c7745349-0c29-4520-84be-00f4949bf3c1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cd76962a-cf40-435d-af77-c7580894cc47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "644cd6f2-7b5b-46f1-8c31-60844ef306e3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215158Z:644cd6f2-7b5b-46f1-8c31-60844ef306e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B7267B08B80946D28FFBBEC640B3D703 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:51:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:58 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11699,Microsoft.Compute/GetVMImageFromLocation30Min;72341" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1d5a233b-a8d2-41d7-bf4b-c1ad4f70ab47" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3ebc9622-d683-417f-981a-9b868b97c0dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "313355f4-2051-400e-a003-207d5e265751" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:313355f4-2051-400e-a003-207d5e265751" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 19D594E05BF4430497BD77A6E52F11D0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjMxNC4yNDExMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c7c3dc32-9534-4629-ab31-50bb4a396ec5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12271,Microsoft.Compute/GetVMImageFromLocation30Min;73268" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6d07aeb9-d975-4c3c-bfe9-cfafa6465646" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/53c85651-4a45-4e46-bcce-dc903e9b27ff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3aedb626-d5dc-4d1b-a4ea-814b78fe50b0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215158Z:3aedb626-d5dc-4d1b-a4ea-814b78fe50b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2D49D8DDE7C64F95A4C23928F65DFB48 Ref B: MNZ221060619031 Ref C: 2025-06-02T21:51:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:57 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjMxNC4yNDExMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11698,Microsoft.Compute/GetVMImageFromLocation30Min;72340" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "56fc32ad-73b4-43f8-b27c-8fb4a060b2e1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a9c65d85-c9ba-4334-93ac-5a5f9153eccd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "52b01d63-2474-472c-8b69-a5e0fd6921f7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:52b01d63-2474-472c-8b69-a5e0fd6921f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2B0EA56ADE994939BB5696C736673B1F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjYwNS4yNDEyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e5f907be-64f6-4edb-964d-939891e0ba82" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12270,Microsoft.Compute/GetVMImageFromLocation30Min;73267" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "453e306b-06b9-46b9-a020-af12bde950cb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a69e0d94-34b6-409b-9db2-d1dfdbc2c9e8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "afd2788c-1971-4ccb-adb0-eec88dd396e9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215158Z:afd2788c-1971-4ccb-adb0-eec88dd396e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5EFB73C597DA42FC996CCBB89256B794 Ref B: MNZ221060610039 Ref C: 2025-06-02T21:51:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:58 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjYwNS4yNDEyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11697,Microsoft.Compute/GetVMImageFromLocation30Min;72339" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b11e2d9f-cc7a-4742-aa7f-3f5527427b37" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bd24929e-e974-4fdd-b954-6aec07828007" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "0f606076-ffcb-49ff-a00c-8b8f27a8844b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:0f606076-ffcb-49ff-a00c-8b8f27a8844b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E381FC9FC7D4EAE87B7A0F38CBBE9AC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d6ceed01-59e1-4e3c-a6f6-a452d679d6d1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12269,Microsoft.Compute/GetVMImageFromLocation30Min;73266" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9162a13a-09ac-4d55-b550-4a857d0b5fc9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8fe6afaa-c0d7-44ce-9cd4-c05edadf361d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0000d91d-0a6a-4faf-9216-3c8edd0269e0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215159Z:0000d91d-0a6a-4faf-9216-3c8edd0269e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3395B8B12EC94D8288B93810B6830668 Ref B: MNZ221060619033 Ref C: 2025-06-02T21:51:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:58 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11696,Microsoft.Compute/GetVMImageFromLocation30Min;72338" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f7393eb3-1c84-444d-81ca-5d919c97c300" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/36c4c3e6-1173-41ae-a44e-8af23c9cfdfe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "941c1885-4bbd-4821-b7ef-2f2f756cbb49" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:941c1885-4bbd-4821-b7ef-2f2f756cbb49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2B848D2C70E249DF8C103019C27ED4B6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:46 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a885518d-17d3-4d71-8639-2f8e2cccba3f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12268,Microsoft.Compute/GetVMImageFromLocation30Min;73265" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6c5755a3-e3e6-4ff2-b6c3-471e5f50be79" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/47db57a6-1024-4ecc-95ff-c87355f0a9eb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "64dd9be5-81b3-4787-8deb-15d4226a3218" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215159Z:64dd9be5-81b3-4787-8deb-15d4226a3218" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5AD72F7815274F848310A5646DA72A26 Ref B: MNZ221060610049 Ref C: 2025-06-02T21:51:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:58 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11695,Microsoft.Compute/GetVMImageFromLocation30Min;72337" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "edf1476e-d004-4812-9e09-699237f198f2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fb2bffd4-a317-42ee-82b7-4a0eb275305d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "228db7b4-265f-4572-b5df-113715def34b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:228db7b4-265f-4572-b5df-113715def34b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B16E5B14314C42B496E01A7601881368 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:47 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c718c693-e95b-4674-a379-6e6c4591c5e2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12267,Microsoft.Compute/GetVMImageFromLocation30Min;73264" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e5b241f6-373e-4ffa-9ab9-529e172df1a3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e295cdc6-308c-46de-9b6c-4a87e1018948" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e3b6241c-bef7-4567-b63e-f6198ed0cffa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215159Z:e3b6241c-bef7-4567-b63e-f6198ed0cffa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A42395F5908F4E2A8B6E406CC967EFA7 Ref B: MNZ221060609011 Ref C: 2025-06-02T21:51:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:58 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11694,Microsoft.Compute/GetVMImageFromLocation30Min;72336" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fa33f0ae-ddb6-4336-8710-c43ecf02465f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4696edf8-27af-48c7-98ad-5588725a6882" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "a7c10a80-66bc-4704-a1ae-8a91d0b82186" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:a7c10a80-66bc-4704-a1ae-8a91d0b82186" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4694B7CD36C040FB8ABB94B61BF6E980 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:47 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5e1b5f5e-9b46-4d47-8000-2823e6849db2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12266,Microsoft.Compute/GetVMImageFromLocation30Min;73263" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "178362ab-b6b8-4e02-b144-77b011e236a9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/82466a74-b35f-486d-88b3-7905bc78af5d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "abcd4666-35d6-4902-9a2f-ccdf1a0ac34a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215159Z:abcd4666-35d6-4902-9a2f-ccdf1a0ac34a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0A8F0665F3134B62B86682CEFE7DA09A Ref B: MNZ221060609023 Ref C: 2025-06-02T21:51:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:59 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11693,Microsoft.Compute/GetVMImageFromLocation30Min;72335" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a6a69620-2793-4fd0-b5dd-8bab5851b783" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bbebfd17-273d-4847-b5e5-cd16dd9a15a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d51f58e6-e2fd-44fb-a6ae-2fa37fd197f7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215347Z:d51f58e6-e2fd-44fb-a6ae-2fa37fd197f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FCDCBCBF12184B0F96518AC88A9BFF89 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:47 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "92e56f06-5dd6-4c10-8290-886af8e6929a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12265,Microsoft.Compute/GetVMImageFromLocation30Min;73262" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b162f940-99cc-4ea3-9927-88bb18e3422f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/909226b1-5b50-49f6-b20c-52a3c96c3198" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "81d4eff7-45d0-4329-be0c-7030d8148f2b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215159Z:81d4eff7-45d0-4329-be0c-7030d8148f2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A511275A86C44DEAB1CF070F74E65A88 Ref B: MNZ221060609019 Ref C: 2025-06-02T21:51:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:59 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11692,Microsoft.Compute/GetVMImageFromLocation30Min;72334" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "95311547-528c-4844-b50f-d6a924bb3551" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/69ac3b10-8de9-4e5d-aa13-3ae33ff0513b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "2b329ddc-65ef-473a-9bb7-7a72b01bba70" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215348Z:2b329ddc-65ef-473a-9bb7-7a72b01bba70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7DE6DFF8BA9C495BBA5DC250D3CA6262 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:47Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:47 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "189971f4-80ac-403a-a886-60a54377f5e7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12264,Microsoft.Compute/GetVMImageFromLocation30Min;73261" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "91e00820-b6b9-4745-b99a-5f5223db8053" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f948a98a-09fd-4961-83cc-dd43dd267690" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e81efdb9-aea8-403d-b20e-286bd8c6032d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215159Z:e81efdb9-aea8-403d-b20e-286bd8c6032d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A731E1D804C14E458104A3BCB8B188E4 Ref B: MNZ221060608049 Ref C: 2025-06-02T21:51:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:58 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2svdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11691,Microsoft.Compute/GetVMImageFromLocation30Min;72333" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "74ac134d-f2ef-488b-992c-6929156d6202" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4d525c11-0e59-4062-9573-0aa670cd5f32" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "a76e59d1-d386-41ea-9c53-cb5f29c6977a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215348Z:a76e59d1-d386-41ea-9c53-cb5f29c6977a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BFA5FA98A7DB491A8CC2290F33AA4A8F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:47 GMT" + ], + "Content-Length": [ + "1030" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "890407a6-c6f0-4885-ba13-f600fa2d15c2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15929,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43923" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ebb774a0-bd31-46e1-814d-48da6b1f05f3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0b0954da-4681-4eb6-8c13-5cad9c878888" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f52de267-cc32-49e7-8876-632e9e63cd81" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215159Z:f52de267-cc32-49e7-8876-632e9e63cd81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 061C415D67C24B04ACF09AC1FE1FC5EA Ref B: MNZ221060610019 Ref C: 2025-06-02T21:51:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:59 GMT" + ], + "Content-Length": [ + "2928" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15868,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43822" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "05f9b6aa-4805-481c-9ed2-433f0421b2d7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0e737123-cfe0-409a-a9c3-775a4d3959ea" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2221f342-6e65-4183-a917-c081e3b46c6e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215348Z:2221f342-6e65-4183-a917-c081e3b46c6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 70B1C43BC48547ADBB684D7EF85B3CA7 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:47 GMT" + ], + "Content-Length": [ + "2928" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bed41b41-a646-40c3-a4cb-0a4b0ce9033a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12263,Microsoft.Compute/GetVMImageFromLocation30Min;73260" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c9dfc6dc-8854-43bb-9599-231cc4761988" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d2f61d39-38f0-4f49-99e3-fafa52439c29" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "97aa6983-e167-4879-a2ec-f9bb08f71088" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215159Z:97aa6983-e167-4879-a2ec-f9bb08f71088" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2049D96E4BA5479F8E93E01CBE9AE3DE Ref B: MNZ221060608011 Ref C: 2025-06-02T21:51:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:59 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11690,Microsoft.Compute/GetVMImageFromLocation30Min;72332" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4552e285-4991-4708-a5c6-8149fd02948d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6ea80036-b331-43be-a500-85183cea7818" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d45c77c3-b70e-479d-8979-3ebf6893001a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215348Z:d45c77c3-b70e-479d-8979-3ebf6893001a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 978AEB09101C4C12995BB92B58691DAB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:47 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMjMxNC4yNDExMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "44c8174b-fd10-4865-a08d-7d2ce9cde3bc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12262,Microsoft.Compute/GetVMImageFromLocation30Min;73259" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1ad36d50-2af1-4ec8-8f91-343d9377d652" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/96bb097d-04c2-4321-8d0d-ac9cbf602d8d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "a7ba8ba4-7d77-47d9-a490-952f4dbf9a10" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215200Z:a7ba8ba4-7d77-47d9-a490-952f4dbf9a10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7EEA50A4F2104138881323854A3C8116 Ref B: MNZ221060609037 Ref C: 2025-06-02T21:52:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:59 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMjMxNC4yNDExMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11689,Microsoft.Compute/GetVMImageFromLocation30Min;72331" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7a21e153-ac16-4ecf-9382-a9a822875a7b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6f40fe33-acd6-4bfd-bede-1bfac0998ac3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e3628bcb-d831-4ae9-816f-88cbbb456b7c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215348Z:e3628bcb-d831-4ae9-816f-88cbbb456b7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 34888CBD7AF64B52BC6264867D7A5E0E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:47 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMjYwNS4yNDEyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8831273f-1d50-4ebf-af71-e962a562d272" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12261,Microsoft.Compute/GetVMImageFromLocation30Min;73258" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c3d3d7d7-b19e-4357-9f44-223033631e89" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6d691d80-ddaa-4017-bc3e-cf8d34a5018a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "612eeba3-5c13-44a2-9e1c-a4d4052125e7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215200Z:612eeba3-5c13-44a2-9e1c-a4d4052125e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7D148D2699FF41EDA6034AD6F69E901F Ref B: MNZ221060609037 Ref C: 2025-06-02T21:52:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:59 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMjYwNS4yNDEyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11688,Microsoft.Compute/GetVMImageFromLocation30Min;72330" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a7ecd51f-2ea8-4ffc-b69b-0a23908ee865" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c1e9769e-f8d6-492c-81e0-068d1e3d3db7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "f144c59f-1926-4c1f-ae03-796abc2df8c2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215348Z:f144c59f-1926-4c1f-ae03-796abc2df8c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EA2D4441DBF148C5BD3B630A0D18FABA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:47 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "60b1a425-0528-4f6c-8758-cfd4cfa03460" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12260,Microsoft.Compute/GetVMImageFromLocation30Min;73257" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c7755810-da46-4b37-a848-5d5b67b28f88" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/84fe1b63-cf1d-457c-b096-c7927f5d4a5a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b848fed9-66d7-49ba-ad31-d5e3d63e4f33" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215200Z:b848fed9-66d7-49ba-ad31-d5e3d63e4f33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F4618D810EA34EF3865CBF250DD2E870 Ref B: MNZ221060610039 Ref C: 2025-06-02T21:52:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:59 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11687,Microsoft.Compute/GetVMImageFromLocation30Min;72329" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "83844ad1-76ee-4b72-b22b-6a333a1a3e3b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/aba82d24-5007-4393-be62-3552148940ef" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "421ef0e0-4d9e-4b98-8ce2-51303dd6db54" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215348Z:421ef0e0-4d9e-4b98-8ce2-51303dd6db54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 953E36F380604A3995FD4D2530D00527 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:47 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0a36bbe1-1c0f-4f87-8fc2-3e155e394709" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12259,Microsoft.Compute/GetVMImageFromLocation30Min;73256" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5fcde45c-e70c-4af4-87de-5ff07ea8374a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e36162cc-4470-41a7-bae2-e5953259f0e6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "865d3310-312d-42be-b1b3-38b1dfb0a06b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215200Z:865d3310-312d-42be-b1b3-38b1dfb0a06b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A3166F94BF28490BAF462A62674F5CC3 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:52:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:51:59 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11686,Microsoft.Compute/GetVMImageFromLocation30Min;72328" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9e2963ed-1974-4869-92bf-5f7c6f141e8a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/68110873-26ac-4860-bcf7-9bb48163ba62" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "fd273023-b2fc-4136-bd5d-0983facf6079" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215348Z:fd273023-b2fc-4136-bd5d-0983facf6079" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0733A0C5CF5B437194B38915C13195E8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:47 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b183bfd5-abfb-4319-8443-c8bdd5e33697" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12258,Microsoft.Compute/GetVMImageFromLocation30Min;73255" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1534c443-1432-44a0-9c46-9e247a36898a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b8f02676-f524-4f68-b557-2535a5ff98e3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1974f541-782d-4061-a176-aae073a93b76" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215200Z:1974f541-782d-4061-a176-aae073a93b76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 881AC237740C4550B1FD90326CDC715E Ref B: MNZ221060618031 Ref C: 2025-06-02T21:52:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:00 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11685,Microsoft.Compute/GetVMImageFromLocation30Min;72327" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "df9dd8f6-017e-493a-b29b-c93f7b94a8f2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1517d91c-5e1e-4fa0-a71d-6010ed2478bc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ec178018-abb3-4eea-a8d2-97638df4c471" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215348Z:ec178018-abb3-4eea-a8d2-97638df4c471" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8BDAAD20AC25489AA07D8B72704FB3B5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:47 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a5d4bcf5-933b-4606-8608-0ee72e693da5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12257,Microsoft.Compute/GetVMImageFromLocation30Min;73254" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "33839d96-7585-4d67-841a-4ebb79e8b3fb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6da2befd-f2e3-469f-84d2-691b2fd828ee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7f963492-8d34-4046-a7f8-c70c7f4acbd6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215200Z:7f963492-8d34-4046-a7f8-c70c7f4acbd6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EC39A481872645948CEA8D7182A13C00 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:52:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:00 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11684,Microsoft.Compute/GetVMImageFromLocation30Min;72326" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "93c4c37f-4f6a-4c52-b49e-157ec59330d0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f952b093-e0d3-4739-a7c6-caaa21c30a06" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4eb58708-771e-484c-a080-ca88cd92955c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215348Z:4eb58708-771e-484c-a080-ca88cd92955c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 68618B5947EE44E49327BEB8ECD61E1B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:47 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5d448753-4f99-40f6-8cf9-589cb5552ee6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12256,Microsoft.Compute/GetVMImageFromLocation30Min;73253" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5b832fc5-61e0-4397-bcdc-b8fbfbbf3fa3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/93bb47f9-a7ce-4b28-bbe0-b985265c2161" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4116ffa2-81c2-491e-b1f8-1184e1b4f632" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215200Z:4116ffa2-81c2-491e-b1f8-1184e1b4f632" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 27FB09655E7B4567BBA3698AE152D65B Ref B: MNZ221060609039 Ref C: 2025-06-02T21:52:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:00 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11683,Microsoft.Compute/GetVMImageFromLocation30Min;72325" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9c6ba3cb-336a-4b09-8f5c-048e0833c9b4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0c5817e9-06e2-4e03-8250-9942b53a9697" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "204df435-5525-43a2-80d2-ef1d5ba9c4a3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215348Z:204df435-5525-43a2-80d2-ef1d5ba9c4a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E67D58496705427099FFD1AEBCF0C8FA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e7f7f8d5-a48e-4b89-93a0-06e763b48d92" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12255,Microsoft.Compute/GetVMImageFromLocation30Min;73252" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e9d1cc68-e9dc-41c4-a707-3ac3cb41dad4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e248012f-5e50-467e-92a9-0833c8387ccb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c69df0b2-ccb9-4e97-b037-b5557e800bd5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215200Z:c69df0b2-ccb9-4e97-b037-b5557e800bd5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BC0F23D881F04B99BC11A067A6F6AD63 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:00 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-core-smalldisk-g2/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItY29yZS1zbWFsbGRpc2stZzIvdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11682,Microsoft.Compute/GetVMImageFromLocation30Min;72324" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6d5ab0f8-76cd-4679-9ff1-5f2cd5b3af4b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a6b16260-6df1-4234-9975-ed110f6da673" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "c5161d35-f337-4462-acaa-bee524996ba8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215348Z:c5161d35-f337-4462-acaa-bee524996ba8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9EF1E40509A54E69BC34625C93B197FB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-core-smalldisk-g2/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "268197f7-a5a1-4423-823f-16bcdd27d7b2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15928,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43922" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "78f356e3-57df-4038-8a26-9c477fca40bd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dd8658ab-c4a3-42b0-8f1a-8d4790bfff9d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "34ea38ff-2d82-452c-82c9-c084c882c9b1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215201Z:34ea38ff-2d82-452c-82c9-c084c882c9b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1C78D3C16ABE48CAB4DDDADFE15FE93F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:00 GMT" + ], + "Content-Length": [ + "2793" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15867,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43821" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "210df8d1-51e4-4ced-add1-ebff81ba4ff7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/29b46ed6-2b3d-4cee-b5f5-8c373a48fbb9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7c3a1d9b-2983-483e-ab65-e8efaaf2be52" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215348Z:7c3a1d9b-2983-483e-ab65-e8efaaf2be52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1C54423D82A24079A4DF6F72572C1C79 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "2793" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f3cb8c23-2871-4964-b24a-7b9a07495f80" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12254,Microsoft.Compute/GetVMImageFromLocation30Min;73251" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d97ca4f5-121a-4289-9aa0-33518c9bb358" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5bf1523c-ee7b-4b6c-ab74-21444a37db9e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6c0254b4-c847-4462-84f2-3c32b2318484" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215201Z:6c0254b4-c847-4462-84f2-3c32b2318484" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7CABC8C760F046BABB785A4EA07A3524 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:52:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:00 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMjAzMy4yNDEwMDQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11681,Microsoft.Compute/GetVMImageFromLocation30Min;72323" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "12a6bfb2-6667-41ea-afd9-9bb73becbd9f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5cc440f3-d180-41ea-8967-c0daa928cca3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "858185b1-be55-4580-aeba-ed6659ddabb9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215348Z:858185b1-be55-4580-aeba-ed6659ddabb9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 02A66EF661534B98931A61387D2E2306 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMjMxNC4yNDExMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3205a163-d98e-461b-b767-27d9bd040707" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12253,Microsoft.Compute/GetVMImageFromLocation30Min;73250" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7a40ec36-6962-464d-ae5f-931dbbbd9a6d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9699063f-331c-4c40-8644-0d54730da757" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "811877d2-4f64-431f-ba19-b670fd7b7603" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215201Z:811877d2-4f64-431f-ba19-b670fd7b7603" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4942DE49DFF549CFAE7FF670F0D208F3 Ref B: MNZ221060609027 Ref C: 2025-06-02T21:52:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:00 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMjMxNC4yNDExMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11680,Microsoft.Compute/GetVMImageFromLocation30Min;72322" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "49b5ef2f-6b66-41f9-b41c-76899b34bfdc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/309ec73d-4a81-4242-98fa-1170ed3d4a45" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ad783b97-7968-4f90-b150-3df6bce6a731" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:ad783b97-7968-4f90-b150-3df6bce6a731" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B9BBB470CC0F4DCEA9282F5035B04E58 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:48Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMjYwNS4yNDEyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f073c551-96c9-4036-82b4-48a5bc99dd9f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12252,Microsoft.Compute/GetVMImageFromLocation30Min;73249" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "44962147-e44b-484a-a4c7-a8c1da31c9ca" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f4ccc8d2-a18e-4e1f-9e0a-5057ce27c3d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7d7e7afe-028f-46c9-aa35-580a5b2c1d3a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215201Z:7d7e7afe-028f-46c9-aa35-580a5b2c1d3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FAD003D104574AF2BF3CA6FD327B1381 Ref B: MNZ221060619023 Ref C: 2025-06-02T21:52:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:00 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMjYwNS4yNDEyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11679,Microsoft.Compute/GetVMImageFromLocation30Min;72321" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ea65b8b5-bd56-4ff2-a0d5-f8801cf6bd4c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/64259860-4d15-4a54-9774-02d73f68280e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "2eb39b3c-7f75-42a1-bb32-0d98678dd6ca" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:2eb39b3c-7f75-42a1-bb32-0d98678dd6ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2CD0CFCD5BBD48B3BC0BF8F27BED299A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f62283c4-53e6-403c-b943-ad96ac003cbf" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12251,Microsoft.Compute/GetVMImageFromLocation30Min;73248" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f867af9c-3825-4d3e-84c6-af389383331e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/be74c63d-a79e-4bad-8ecc-2797a930b540" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f69f385a-1174-4d63-84f3-a1ee961b59f4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215201Z:f69f385a-1174-4d63-84f3-a1ee961b59f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9226C1EBB3FC423A9180A4BA705398E6 Ref B: MNZ221060610033 Ref C: 2025-06-02T21:52:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:00 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11678,Microsoft.Compute/GetVMImageFromLocation30Min;72320" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4b688a4e-1c4b-4e6d-a531-d189e23c86ce" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1edb2b82-e456-4a52-a03b-736e8fc4a0df" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "92f5b401-cc66-4d20-ae9d-7e764f96d28d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:92f5b401-cc66-4d20-ae9d-7e764f96d28d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7B5A6029264E4463A8E7955DED65770C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4eda674e-e182-4168-9729-a03f8b359f46" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12250,Microsoft.Compute/GetVMImageFromLocation30Min;73247" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f9b7a93b-6aeb-49ab-aa3f-fa1d9800886e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/962289a9-ea75-418c-afbd-e7f29dc57bbe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f593d3ed-e54e-42c3-b7ac-0f83bca72b9c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215201Z:f593d3ed-e54e-42c3-b7ac-0f83bca72b9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ECB4A34BFBD94FE694E501D0D8E9CA2F Ref B: MNZ221060610011 Ref C: 2025-06-02T21:52:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:00 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11677,Microsoft.Compute/GetVMImageFromLocation30Min;72319" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b57e2855-d136-400b-a5c7-795afced0433" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/27adbe87-67b2-452f-bf17-7856bfc851fb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b6b19735-eaaf-497a-8aef-b97702d2e767" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:b6b19735-eaaf-497a-8aef-b97702d2e767" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B1B931B8CF1044C8A8F3A69AC363B22C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "818ddcc8-7831-4310-8783-b182b786f5d2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12249,Microsoft.Compute/GetVMImageFromLocation30Min;73246" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "04ece5e2-7d36-4544-93d4-854d66e68a17" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9da6b19b-ba4a-4094-8a07-1d51acfe7170" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d3ff5586-fc09-42a3-8351-b5538fcd9e55" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215201Z:d3ff5586-fc09-42a3-8351-b5538fcd9e55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2F9C13D64C3D4BA8B23ABE786ACBE003 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:52:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:01 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11676,Microsoft.Compute/GetVMImageFromLocation30Min;72318" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f22bea46-682c-42be-999a-4a4946f34a1f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5b5a34d4-98ae-4ff5-87dc-365fbf3c9cfe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "955f7597-9578-469a-96c0-a962a02ef75b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:955f7597-9578-469a-96c0-a962a02ef75b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5658EB5382EB42BC8EAA4E1764DE281B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "be6407a9-48fe-4f85-881c-1e376e37cd0e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12248,Microsoft.Compute/GetVMImageFromLocation30Min;73245" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "00f37d34-c9a1-49d5-a564-520433e27700" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/eaac7f3c-af94-4cbf-9328-8544711f37e9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bedb6f51-a184-44d9-acb4-adc4dd357fe1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215201Z:bedb6f51-a184-44d9-acb4-adc4dd357fe1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9BB7B751A44D47348713A858BB7D93A1 Ref B: MNZ221060609045 Ref C: 2025-06-02T21:52:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:00 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11675,Microsoft.Compute/GetVMImageFromLocation30Min;72317" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a4b578d6-6a22-4d5e-996e-d98d4aec1cb4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9c71b678-5f46-48b5-a550-836e05950561" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "a41f4491-8f69-42e3-a49b-64f2db3f2766" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:a41f4491-8f69-42e3-a49b-64f2db3f2766" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C9685FE9A689443E939D6F75975CC436 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bec7738b-def7-46bb-95c7-8171c128bd48" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12247,Microsoft.Compute/GetVMImageFromLocation30Min;73244" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cabb1a18-f4ac-4c27-a2c1-51fbba7db006" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9be4979d-6f94-4f49-b15b-0e982e7753b8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "37bb4244-3659-488f-938b-a41b760f1d21" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215201Z:37bb4244-3659-488f-938b-a41b760f1d21" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D6F35B40FC2A4AF184093BC7BA0B8BBD Ref B: MNZ221060619017 Ref C: 2025-06-02T21:52:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:01 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11674,Microsoft.Compute/GetVMImageFromLocation30Min;72316" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5945e21a-63d9-4f06-aeeb-88f1cd23e2bc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d820c530-25c7-4518-9ccb-a1cde1d99b25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "02825f54-8e22-4fd6-a094-e5994f9f4386" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:02825f54-8e22-4fd6-a094-e5994f9f4386" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E6D8C5E8419E4E1D8EFB7B241E787C9E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "962f0d54-bc00-4908-a807-9252f9c661db" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12246,Microsoft.Compute/GetVMImageFromLocation30Min;73243" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a277a1d9-0023-471b-91b8-64bf1df00a78" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5b21ba25-5976-425d-ae54-268055fbbe6a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0f35190b-bf32-4564-adf8-59da1566fead" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215202Z:0f35190b-bf32-4564-adf8-59da1566fead" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E23E0C32454043D3ACBDEAD1C42E1199 Ref B: MNZ221060610007 Ref C: 2025-06-02T21:52:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:02 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-g2/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItZzIvdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11673,Microsoft.Compute/GetVMImageFromLocation30Min;72315" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f8b400fe-e7a3-4fd6-9b76-866b758e35d1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/139b7dc2-9b39-42c3-b1c0-9ec73babbbb8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0f18d450-dbb8-456b-887f-00535c94d2c1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:0f18d450-dbb8-456b-887f-00535c94d2c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB8EB4E2667F4F2895A966EE46B7CCA1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-g2/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2468386d-789f-4283-8fab-5bf6f8d3ba4c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15927,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43921" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9d5457f6-4436-4e8d-bbbe-e66d525e7a19" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/162a14a7-7893-4f38-b551-efd0558dbe2e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "30c38bbf-ec52-493f-8e69-70f47c4038f2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215202Z:30c38bbf-ec52-493f-8e69-70f47c4038f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C8A418B615C2490A8DFB3401B6456CDA Ref B: MNZ221060619011 Ref C: 2025-06-02T21:52:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:02 GMT" + ], + "Content-Length": [ + "2856" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15866,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43820" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "36a25fd9-c78e-4b9b-9fa0-421c2d946ce0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8ea7009c-531b-4e6c-b820-5d0e8afd0170" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2a5f528d-571b-41d7-b1e2-bbab1a32aad1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215349Z:2a5f528d-571b-41d7-b1e2-bbab1a32aad1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4067C697A41446F19DFDCFA856BE810D Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "2856" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjIwMzMuMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "21c8faf1-ea03-4080-b310-142c1abab00f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12245,Microsoft.Compute/GetVMImageFromLocation30Min;73242" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4bf3d1bd-f66a-47e1-9738-9f0cdd38d637" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/22411254-50f0-4cbf-8ea5-9f7c6af56181" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "96d2a857-6ee4-4515-bf3b-6dec615ae2aa" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215202Z:96d2a857-6ee4-4515-bf3b-6dec615ae2aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0498D4B2CCDF4E448DF6EC716B3A20A3 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:52:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:02 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjIwMzMuMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11672,Microsoft.Compute/GetVMImageFromLocation30Min;72314" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "deec6b64-9e29-418d-9c4a-f48c4be097fc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/345beda4-b9bd-440a-82c0-d21980d0b0eb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "bb5568e2-e398-41bb-aecd-f6d7db0d9cb2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:bb5568e2-e398-41bb-aecd-f6d7db0d9cb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B914CE55E1274B43A6141A9950852B37 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjIzMTQuMjQxMTA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ccc05aac-8261-4169-b727-dbff289353b5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12244,Microsoft.Compute/GetVMImageFromLocation30Min;73241" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aabf50da-97c0-4b1f-90fd-c01618f97514" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c3c1329a-f4f2-4537-8e43-ba42edb0d5ed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "93038fe5-1d95-4bd0-b3dc-fddeaf3ff080" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215202Z:93038fe5-1d95-4bd0-b3dc-fddeaf3ff080" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C7B598CD51D24965B45AAEDBA2C5B00C Ref B: MNZ221060619051 Ref C: 2025-06-02T21:52:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:02 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjIzMTQuMjQxMTA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11671,Microsoft.Compute/GetVMImageFromLocation30Min;72313" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "63ab65e1-bb1f-4cb5-883c-839c65d9bdff" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/272697f8-246a-4d23-8cc7-55766b4bdab3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bda8eb83-af5d-4adf-855e-41e075cdf223" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:bda8eb83-af5d-4adf-855e-41e075cdf223" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 670EA3AA9C7D43348781A5BDAEEBFC4C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjI2MDUuMjQxMjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8302b44a-07e0-40be-8ea1-679dc11bd0a3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12243,Microsoft.Compute/GetVMImageFromLocation30Min;73240" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f084cbd5-58b4-44a6-9628-2de19ce2d079" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dac1d4e4-8c8d-4dc7-9d89-49306dae2606" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f30fb802-cb9e-48cc-a6e0-e901cbe4bec0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215203Z:f30fb802-cb9e-48cc-a6e0-e901cbe4bec0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8DFDC510EB11446B882E576D737A7BDA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:02 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjI2MDUuMjQxMjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11670,Microsoft.Compute/GetVMImageFromLocation30Min;72312" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c799b4f4-2d8f-49eb-9d55-b9588c225478" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9bbb4328-9df9-4401-98dd-93c2843c6942" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "08481c59-0b49-449d-be60-c2a597ac09be" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:08481c59-0b49-449d-be60-c2a597ac09be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1013972BE39741DEAE065665FFE432CB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:48 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjI4OTQuMjUwMTEzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8f4eceed-ff09-401e-9676-719c6c3c06f8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12242,Microsoft.Compute/GetVMImageFromLocation30Min;73239" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "deba79e5-3dc2-4c3d-bb83-9fac70e8ed9e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/11918a06-648f-4247-9996-2418c403c609" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5e2b80e5-c725-4ec1-b65e-cd5a0a3ac35b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215203Z:5e2b80e5-c725-4ec1-b65e-cd5a0a3ac35b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 89150EE32378411AAFC2A27AD1021B9B Ref B: MNZ221060609025 Ref C: 2025-06-02T21:52:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:02 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjI4OTQuMjUwMTEzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11669,Microsoft.Compute/GetVMImageFromLocation30Min;72311" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e9df4187-d90b-4ccd-a6f5-0554150325f8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8c6195d8-bb35-49cf-8b73-dde8fc9c24a5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "80860a46-412b-42c0-a692-740b269fcf03" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:80860a46-412b-42c0-a692-740b269fcf03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E49907C77D504778A75CB3C0460B5C0D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjMxOTQuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d269a47d-46b7-4456-9ea2-f22605defe4f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12241,Microsoft.Compute/GetVMImageFromLocation30Min;73238" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7fc2a5c9-c47a-4b80-a7ae-d7550c933a8f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/aa641023-083f-4b57-bc48-2eace0838751" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "43d3d59c-142e-4caa-b44d-b363faf5b533" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215203Z:43d3d59c-142e-4caa-b44d-b363faf5b533" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 62FEA91D24444D3C9605CBABFDE852D8 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:52:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:03 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjMxOTQuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11668,Microsoft.Compute/GetVMImageFromLocation30Min;72310" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6dfefce4-386a-4630-b39d-5f5089361704" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ffc93902-8d6f-4641-8781-bec8b4cc81b5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" + ], + "x-ms-correlation-request-id": [ + "df20b555-8e82-4eb6-9751-4dd0af63b3cc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:df20b555-8e82-4eb6-9751-4dd0af63b3cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F859CFEE5344BA78701AC144CC2B7F8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjM0NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "56ce717b-a86c-4e30-b50a-f90e59ed0914" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12240,Microsoft.Compute/GetVMImageFromLocation30Min;73237" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "96aa7122-7a77-4941-acda-155420f64aa9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5cc9f0dc-fd1c-4ee6-b763-8742ab4f9738" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c3f0f121-18cd-47cd-a66e-d9e9e78d8087" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215203Z:c3f0f121-18cd-47cd-a66e-d9e9e78d8087" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 52545BCC67D0463384D10545DFFABFF8 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:52:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:03 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjM0NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11667,Microsoft.Compute/GetVMImageFromLocation30Min;72309" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "efbb1e7f-c8dd-4d80-99ed-bae09bfcc1b5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fb37f4d0-2562-4e77-a19d-7f336d77dc77" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4780184a-7797-42de-89fd-e9ef23c3626c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215349Z:4780184a-7797-42de-89fd-e9ef23c3626c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D35BEC7D689843B1ABF2759F49796317 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjM3NzUuMjUwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "256d86fa-07d5-41a3-99f1-ca2ef35db3ee" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12239,Microsoft.Compute/GetVMImageFromLocation30Min;73236" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2518c280-00b7-4861-afa4-14688f86078d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2351d460-3b4c-4d02-ab45-245bbb76fde6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e52282d0-9861-4746-84dc-c7dd84f7509a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215203Z:e52282d0-9861-4746-84dc-c7dd84f7509a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5D7BCD3042524C009ABD8FCB824DAAF7 Ref B: MNZ221060610017 Ref C: 2025-06-02T21:52:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:02 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjM3NzUuMjUwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11666,Microsoft.Compute/GetVMImageFromLocation30Min;72308" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "04c9cf7d-acdc-456f-b618-e8b6e740c2ed" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cbdb454b-3b5d-4ddd-933d-1cff1d3efec3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "15ad1d39-1367-4a7b-a390-ba4d7417029f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215350Z:15ad1d39-1367-4a7b-a390-ba4d7417029f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BCC9FEE1A42F4B68AB807B8DE7A295B0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:49Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjQwNjEuMjUwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6b393f05-5440-40d6-bf7b-50a2b28b7e71" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12238,Microsoft.Compute/GetVMImageFromLocation30Min;73235" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "07386c6f-e44d-4aaf-9319-289ef34b17c3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b65bbb26-e6ff-41f4-bd7e-0e01dffd60b4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "20b0bf4c-1ecb-43cc-8f82-d7e48c53ee4c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215203Z:20b0bf4c-1ecb-43cc-8f82-d7e48c53ee4c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0D81735DF24040FF987FE36885491B8E Ref B: MNZ221060608051 Ref C: 2025-06-02T21:52:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:03 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjQwNjEuMjUwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11665,Microsoft.Compute/GetVMImageFromLocation30Min;72307" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "05e0a783-6889-414b-9ed4-a948c5b8b0cc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c17ff64d-3280-487f-809b-3606ac056277" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "04240caf-dc8d-4c87-a209-2640af4d8905" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215350Z:04240caf-dc8d-4c87-a209-2640af4d8905" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 885D306E9E2A4810916C92EC50B83666 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjQwNjYuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e502a40d-957f-44b8-bb81-fb4c45e681c1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12237,Microsoft.Compute/GetVMImageFromLocation30Min;73234" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c85da371-aabf-4247-80bf-c9900591dd95" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4bb19bb6-71df-44a8-8733-e6a819e3df25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "27f04652-ed51-4353-bdac-f64eaff0b81d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215204Z:27f04652-ed51-4353-bdac-f64eaff0b81d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 905032CAE4F241FB820E040FF26C75A4 Ref B: MNZ221060610019 Ref C: 2025-06-02T21:52:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:03 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrL3ZlcnNpb25zLzI2MTAwLjQwNjYuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11664,Microsoft.Compute/GetVMImageFromLocation30Min;72306" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a39078b9-950a-41c3-8036-13dd8baa18c4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/76a29ee8-1afd-484f-ab6e-4cc9a74ac711" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "5f92cbe6-3f97-4322-8c8b-dd35b728314f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215350Z:5f92cbe6-3f97-4322-8c8b-dd35b728314f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 91951AE8BA444408984DF69AAAD2B879 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fa06bb7e-5c7a-4c55-b746-3f849dd8f9b7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15926,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43920" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "15d6cd5a-88e2-41ca-a45d-1ca3b743b9cf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/adb34389-0b0f-492f-ba7b-e8b308676fe0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "73ac2916-56bc-48ba-9b05-c4524ea42abb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215204Z:73ac2916-56bc-48ba-9b05-c4524ea42abb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 72D04DC838F9499BB33F8F7DA4118D9D Ref B: MNZ221060610039 Ref C: 2025-06-02T21:52:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:03 GMT" + ], + "Content-Length": [ + "2883" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15865,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43819" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "82c6014b-bc9d-4e01-8a93-46d218d908fd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c2e4336c-bf20-49cf-9ef6-7a63d07a15db" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0bb5a5a7-2bae-4f91-9f89-5dfa5ec96135" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215350Z:0bb5a5a7-2bae-4f91-9f89-5dfa5ec96135" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8EB42FC37B454035970FAA080FAEA975 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "2883" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2033.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjIwMzMuMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "59ae8907-d439-404d-bb77-c92bfb4c9e1b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12236,Microsoft.Compute/GetVMImageFromLocation30Min;73233" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c03f5b22-db75-4251-8145-b47e9cbd00f5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/adb5e365-0498-42eb-a291-af6388929385" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "588629f1-ebf6-485f-a1be-1cc516f22edc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215204Z:588629f1-ebf6-485f-a1be-1cc516f22edc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E23EC82B8BE84B4BA67D6E8A3FD06260 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:52:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:03 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.2033.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjIwMzMuMjQxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11663,Microsoft.Compute/GetVMImageFromLocation30Min;72305" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "29b3285c-eac4-445f-b626-6be5e4fb817e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/41215f2b-3235-492a-a025-3c568bb1b79c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5f18ea6a-b794-4a84-932b-f5d8eca95625" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215350Z:5f18ea6a-b794-4a84-932b-f5d8eca95625" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FE84166EB3A54C14939F4E5A4C7E0FB8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-31T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2033.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2033.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjIzMTQuMjQxMTA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b5b7dc90-c84a-470f-ab46-5d8a25a5ce85" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12235,Microsoft.Compute/GetVMImageFromLocation30Min;73232" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d7922343-2c8c-4773-a701-7ae5680e0ead" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/73adcddd-2499-48fb-adbb-42800e8ee9a4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8b141bb6-ef5f-4a70-b16b-0b194c59e063" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215204Z:8b141bb6-ef5f-4a70-b16b-0b194c59e063" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0C55E7AAEA5C4F9FA08989A883084C79 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:52:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:03 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjIzMTQuMjQxMTA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11662,Microsoft.Compute/GetVMImageFromLocation30Min;72304" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "aaeb1d95-b8de-482a-8ada-7947cca4f254" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/63a524cb-f6f7-4a83-b6cb-92d3c217ce97" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4312eea4-6fd5-4a03-a100-95b75e452550" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215350Z:4312eea4-6fd5-4a03-a100-95b75e452550" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 496E903D7C7E4AE4AAA2B9258D32CC4D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjI2MDUuMjQxMjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8086f716-1e76-463f-af19-9780324a8bff" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12234,Microsoft.Compute/GetVMImageFromLocation30Min;73231" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9e3a38cf-41f2-4977-ac94-a6eef45557fb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c9c17388-9bb8-4255-ac77-68e001e8c861" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c4bed50f-efd2-4432-b72d-38b8d3e1b7cc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215204Z:c4bed50f-efd2-4432-b72d-38b8d3e1b7cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FFBDE421578B4354B96137E481CA7554 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:03 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjI2MDUuMjQxMjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11661,Microsoft.Compute/GetVMImageFromLocation30Min;72303" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4dc10015-5afc-4703-82b2-d11b712196f6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f0879bd6-ab7e-40d2-9b57-c6f2bce42243" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "cc52b4b4-ad83-45d3-862b-05eb42cb065f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215350Z:cc52b4b4-ad83-45d3-862b-05eb42cb065f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 033EBBFE596F401EABD9DD11A28F8E4B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjI4OTQuMjUwMTEzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8937d5f4-6fe0-49b2-b8d9-8eab7002bc65" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12233,Microsoft.Compute/GetVMImageFromLocation30Min;73230" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4edf22d8-f5ed-408c-a5a4-06eaced9b2d8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1c2c29df-8d05-409d-9f4a-244ad96b7777" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "46b1f30a-410a-4411-b576-ff47bf699b7e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215204Z:46b1f30a-410a-4411-b576-ff47bf699b7e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F86BF48B5A746428BC5B5893BE1C3A1 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:52:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:03 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjI4OTQuMjUwMTEzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11660,Microsoft.Compute/GetVMImageFromLocation30Min;72302" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "bc9ec130-c448-47d9-a1ee-20f84980a38f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/87cb03c5-99be-4c4c-b261-7f3d9664e104" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8a895130-6b3f-4a7f-8bbd-bf7140c76cd2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215350Z:8a895130-6b3f-4a7f-8bbd-bf7140c76cd2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F97415469B2E4B5084EB2BC5ADF6EA07 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.2894.250113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjMxOTQuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9d8574a1-99ea-47d6-9d03-d7f59d5074a3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12232,Microsoft.Compute/GetVMImageFromLocation30Min;73229" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4ab5359b-f343-48a5-81f4-c4c92fac6a19" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2f80684c-72a0-4fad-98a5-a641e3b442d8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c040e256-b0b5-4687-a3b2-13920e89f39e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215204Z:c040e256-b0b5-4687-a3b2-13920e89f39e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3F0E6A7AB4804FA28A3B5F6CFEE3DEA9 Ref B: MNZ221060608021 Ref C: 2025-06-02T21:52:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:03 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjMxOTQuMjUwMjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11659,Microsoft.Compute/GetVMImageFromLocation30Min;72301" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "71649c31-8279-4d92-bf99-6ba9abc73c23" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4b9bab8e-a693-442e-a7fa-4693fb64754f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "0da595c2-deda-44e3-abd1-7b1f519fbbe7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215350Z:0da595c2-deda-44e3-abd1-7b1f519fbbe7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CA8DD6F6E8DD42B49E79AB1E7A55F5CF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.3194.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjM0NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3ad408c5-6966-4f1f-98b1-c664838666a6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12231,Microsoft.Compute/GetVMImageFromLocation30Min;73228" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0c6eb48d-5019-42ab-85e2-ed704b5b6660" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/af16d455-a4fc-4b3f-b763-5598cd4bff26" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c22d6214-f698-45d7-932c-b04b55bead56" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215205Z:c22d6214-f698-45d7-932c-b04b55bead56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BE11E0EC4F724D08AF9B8C99349DDD47 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:52:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:04 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjM0NzYuMjUwMzA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11658,Microsoft.Compute/GetVMImageFromLocation30Min;72300" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c7d32301-3cf9-4b7d-92eb-c72eeb4bde9a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/45df4e38-3c17-4949-9b48-59ecc2cc3efc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9a76fe69-b861-4bc6-8c64-c141735f4a25" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215350Z:9a76fe69-b861-4bc6-8c64-c141735f4a25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6097448F662F48C9A687219D25C80948 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.3476.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjM3NzUuMjUwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "da8588db-fc84-465c-b14c-735de632738b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12230,Microsoft.Compute/GetVMImageFromLocation30Min;73227" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f564847d-4ede-4c03-b2c2-8ec2b2808ab7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/41bb77f4-6784-498a-8a53-03a1adf529a9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "433baf44-d3b1-4c6e-8093-fdd5098b4852" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215205Z:433baf44-d3b1-4c6e-8093-fdd5098b4852" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B0BF3F56EAF64DEF9A371FEAF81DF73E Ref B: MNZ221060619021 Ref C: 2025-06-02T21:52:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:04 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjM3NzUuMjUwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11657,Microsoft.Compute/GetVMImageFromLocation30Min;72299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2d2ce71a-6085-4d70-b493-5b1b2b2e621f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8762fe21-178e-45fb-bd47-fcf2d524048a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "9b2ea30b-a7c9-460e-82a3-6d94ee885dde" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215350Z:9b2ea30b-a7c9-460e-82a3-6d94ee885dde" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 64C9CC33B0974ACBAF4EE30DC42BA08D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:49 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.3775.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjQwNjEuMjUwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7322e3be-d931-4ce3-8126-d1dd040c737b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12229,Microsoft.Compute/GetVMImageFromLocation30Min;73226" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c50c5e82-b696-4b77-81da-49fa8e48603e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b47851f8-17c4-4683-86c8-2b71443c9a24" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4b7b7bb4-bc03-44ad-ad83-9988cdacb0c2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215205Z:4b7b7bb4-bc03-44ad-ad83-9988cdacb0c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7013D5B360674FC19EE772420BB889EE Ref B: MNZ221060609023 Ref C: 2025-06-02T21:52:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:05 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjQwNjEuMjUwNTEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11656,Microsoft.Compute/GetVMImageFromLocation30Min;72298" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cb8d1e49-a04d-4339-93ea-9d1a85d5f0a4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/18f86b65-6e68-4818-97b1-835621c2937b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "b1f72657-2662-4b0c-baf6-56965716c5e5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215350Z:b1f72657-2662-4b0c-baf6-56965716c5e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AACC4CEB51E24D599522EEE1CEB01706 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:50 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.4061.250510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjQwNjYuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "98af2979-6fd9-481c-869e-61c25025cc70" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12228,Microsoft.Compute/GetVMImageFromLocation30Min;73225" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bc3aed2b-3e55-4dd8-889c-01cbb1494acd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1cabb9de-1d12-4dd2-963b-e01717240c0a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2b3048b0-e2ec-4625-ad26-02735543e078" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215205Z:2b3048b0-e2ec-4625-ad26-02735543e078" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 18560A000DCA4C378C42E7B82F133ABC Ref B: MNZ221060618037 Ref C: 2025-06-02T21:52:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:04 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2025-datacenter-smalldisk-g2/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDI1LWRhdGFjZW50ZXItc21hbGxkaXNrLWcyL3ZlcnNpb25zLzI2MTAwLjQwNjYuMjUwNTI0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11655,Microsoft.Compute/GetVMImageFromLocation30Min;72297" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a439effa-40a7-4033-84e5-7325aa4c9b73" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/59c99989-67c8-4f5f-957d-91ee49b8424e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "53942219-b8bd-4613-951d-fd61eb916f54" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215350Z:53942219-b8bd-4613-951d-fd61eb916f54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 31051668CEA0488084808BB0CA6AABEC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:50 GMT" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2025-datacenter-smalldisk-g2/Versions/26100.4066.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7768e436-b5ca-4e1c-8b7f-f6a72d2fdc24" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15925,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43919" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7977e52c-0c49-4a0f-ab7f-960579dd3d6a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/51fe1e39-a5c7-4088-8ae6-a7ea05e92b27" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c3ef0e7c-125c-44d6-9c28-c9933d2deed9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215205Z:c3ef0e7c-125c-44d6-9c28-c9933d2deed9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 681F7B3D3E4040C38924A5B31392F273 Ref B: MNZ221060610053 Ref C: 2025-06-02T21:52:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:05 GMT" + ], + "Content-Length": [ + "5295" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1009.240702\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1009.240702\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1085.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1085.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1128.240906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1128.240906\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1189.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1189.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1251.241105\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1251.241105\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1308.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1308.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1369.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1369.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1425.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1425.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1486.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1486.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1551.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1551.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1611.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1611.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.709.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.709.240301\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.763.240229\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.763.240329\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.830.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.830.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.887.240505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.887.240505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.950.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.950.240607\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15864,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43818" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a56235d9-1fd8-455c-b2b1-7a5280dc1de3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/66abcd0e-9976-4d20-90bf-6a08650846d4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "43ab3393-ee9b-4988-add5-b84a59591ef3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215351Z:43ab3393-ee9b-4988-add5-b84a59591ef3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A2A08EA2DE8244149C97F4B3E752ECC4 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:50Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:50 GMT" + ], + "Content-Length": [ + "5295" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1009.240702\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1009.240702\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1085.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1085.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1128.240906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1128.240906\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1189.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1189.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1251.241105\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1251.241105\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1308.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1308.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1369.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1369.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1425.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1425.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1486.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1486.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1551.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1551.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1611.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1611.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.709.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.709.240301\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.763.240229\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.763.240329\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.830.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.830.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.887.240505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.887.240505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.950.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.950.240607\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1009.240702?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMDA5LjI0MDcwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "de3cb50e-30ab-4690-a15f-a5efd025f9a5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12227,Microsoft.Compute/GetVMImageFromLocation30Min;73224" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4bfa073b-8e22-478b-a05e-76c87cca3c89" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/da9231cb-1eff-4e58-8d95-b6b769a9bb88" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "572d918d-eabe-4338-b1ce-26350dad6252" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215205Z:572d918d-eabe-4338-b1ce-26350dad6252" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A8E7F9EFA86F4C709212F80B43FCDABF Ref B: MNZ221060610033 Ref C: 2025-06-02T21:52:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:05 GMT" + ], + "Content-Length": [ + "972" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1009.240702\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1009.240702\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1009.240702?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMDA5LjI0MDcwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11654,Microsoft.Compute/GetVMImageFromLocation30Min;72296" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "857ab8d6-cd2a-4ce7-856d-379bba746a35" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5a4ac2d6-1f4d-4fd0-b595-f75a929b9b26" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "8011a993-d1f3-46bb-b961-340bb0e609bc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215351Z:8011a993-d1f3-46bb-b961-340bb0e609bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 68B92D49AEAE4668900F1620659FA697 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:50 GMT" + ], + "Content-Length": [ + "972" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1009.240702\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1009.240702\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1085.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMDg1LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eefb7a88-5025-4787-9193-0a218ca0781c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12226,Microsoft.Compute/GetVMImageFromLocation30Min;73223" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6bd8a5b1-2204-4222-ac64-53568c86d31d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5187e240-fc4f-4363-b6f8-1f4e8cad9e91" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ab88f924-cc81-4523-961e-80e9b7210328" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215205Z:ab88f924-cc81-4523-961e-80e9b7210328" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EF2BBE25E81344BE94A6159D999621A5 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:52:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:05 GMT" + ], + "Content-Length": [ + "972" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1085.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1085.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1085.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMDg1LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11653,Microsoft.Compute/GetVMImageFromLocation30Min;72295" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "825dd5f5-1bd3-4009-8181-fcd04eb6ad2c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/57b71e5c-a347-4528-aa03-974873459b50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "94457cb2-ee10-4f2f-9db0-916af33039a2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215351Z:94457cb2-ee10-4f2f-9db0-916af33039a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9475B06A491F4086AF90A95F3011A9FB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:50 GMT" + ], + "Content-Length": [ + "972" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1085.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1085.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1128.240906?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMTI4LjI0MDkwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8f81d5f2-eb6c-4e5e-a5d5-a0af8d2b9498" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12225,Microsoft.Compute/GetVMImageFromLocation30Min;73222" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6d79c45c-b37a-48f0-ba1f-a7ff4b4127e4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/247aa26e-fee8-4678-bb90-9eeba84be91c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "7c2d16ab-4a1d-4b31-b975-69d7b28fa52d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215206Z:7c2d16ab-4a1d-4b31-b975-69d7b28fa52d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 06D7B35453724A2DA15484DD8F1682D8 Ref B: MNZ221060609027 Ref C: 2025-06-02T21:52:05Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:05 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1128.240906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1128.240906\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1128.240906?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMTI4LjI0MDkwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11652,Microsoft.Compute/GetVMImageFromLocation30Min;72294" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2a352411-f6df-4f94-8054-90b9ebea3ee1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a74d72ea-c0a4-465c-a74e-1336f615b1f2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "da3bdfd8-e0b7-4c1e-9321-f7fb81130f11" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215351Z:da3bdfd8-e0b7-4c1e-9321-f7fb81130f11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B6280EE3C5B0414986CACC9B4A77B4E4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:50 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1128.240906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1128.240906\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1189.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMTg5LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7f738bb2-e224-4044-9930-23934d871cb9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12224,Microsoft.Compute/GetVMImageFromLocation30Min;73221" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "df4d058c-41e4-4d06-942a-db8481f3b1d7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e13b22f1-29c7-4d97-b5de-b3f64bb630e5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "aed47957-7e02-4044-92b1-ba258e28494f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215206Z:aed47957-7e02-4044-92b1-ba258e28494f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 25DF6F6B49D7455AA5F358E055477EDD Ref B: MNZ221060618009 Ref C: 2025-06-02T21:52:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:06 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1189.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1189.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1189.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMTg5LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11651,Microsoft.Compute/GetVMImageFromLocation30Min;72293" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7056e23b-e955-4a27-97d3-fb51218e6875" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4dfd8414-3062-4e33-b110-f40962c1d583" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "1d2929f7-08c1-4981-888b-2937b132c41e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215351Z:1d2929f7-08c1-4981-888b-2937b132c41e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0A0185EA8C954D018BA58155EC21603F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:50 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1189.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1189.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1251.241105?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMjUxLjI0MTEwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "061abe20-8a13-42ad-886b-832e136a3a53" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12223,Microsoft.Compute/GetVMImageFromLocation30Min;73220" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "14a1d830-72e0-4b47-be0a-9c84b8a8ffe2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c39d941e-d778-44e4-af8f-52eba74dd942" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "80a90f06-cd27-4a13-bae5-2aa398d91dcb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215206Z:80a90f06-cd27-4a13-bae5-2aa398d91dcb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 16227D4B011847638913EAD255AA0956 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:52:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:05 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1251.241105\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1251.241105\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1251.241105?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMjUxLjI0MTEwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11650,Microsoft.Compute/GetVMImageFromLocation30Min;72292" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "22adc62c-3878-4810-b250-9f40f93b89fd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d2cddb52-f600-4692-8c94-5ed01a22d22e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "71c11aee-0580-4bfc-9824-b618a4ecf70e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215351Z:71c11aee-0580-4bfc-9824-b618a4ecf70e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C3AC92806E14274A6C41F8A4B2A84AC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:50 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1251.241105\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1251.241105\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1308.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMzA4LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6f4cc60b-11b0-4f30-a3e6-24369af546f2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12222,Microsoft.Compute/GetVMImageFromLocation30Min;73219" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "66198702-a3ac-43bb-88da-b207a1dc83a8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cef71a3f-4fe1-4044-8a24-bf8e31ecd596" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "03a29566-5b83-44ee-8062-4a1521f67808" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215206Z:03a29566-5b83-44ee-8062-4a1521f67808" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1D9F6E26794A4619B65614506071FB95 Ref B: MNZ221060608051 Ref C: 2025-06-02T21:52:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:06 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1308.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1308.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1308.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMzA4LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11649,Microsoft.Compute/GetVMImageFromLocation30Min;72291" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "caf26c05-21d4-4997-b137-68d1e311cae1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7c5e7333-fb43-4967-9483-63fd4018b03a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "71354ed9-4fae-45ee-930c-2e5c7f6ea839" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215351Z:71354ed9-4fae-45ee-930c-2e5c7f6ea839" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 190E5A40CBEB474A8C4AE863FCEC37BD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:50 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1308.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1308.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1369.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMzY5LjI1MDExMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ec73f5e4-a54b-4fac-910e-becbd264a0ac" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12221,Microsoft.Compute/GetVMImageFromLocation30Min;73218" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4ad6efc9-e7d7-43dc-9d19-d7582a42d321" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b7a18d27-a930-47fa-8fd7-6769a7a66bba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cb3ffee0-938e-4214-a7b9-c19400255168" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215206Z:cb3ffee0-938e-4214-a7b9-c19400255168" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DEED0409A4CD437E8273106CDD96CD8D Ref B: MNZ221060618035 Ref C: 2025-06-02T21:52:06Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:06 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1369.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1369.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1369.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xMzY5LjI1MDExMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11648,Microsoft.Compute/GetVMImageFromLocation30Min;72290" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8d8d5935-36bb-4d3c-89f1-70131e39da5d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6d13b550-f063-42d9-bb7f-587e22fd7b90" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "99642fe2-23e6-4e67-bb5c-13e9fed4d51f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215351Z:99642fe2-23e6-4e67-bb5c-13e9fed4d51f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 26E089945004427480A7849A19FA4C35 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:50 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1369.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1369.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1425.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xNDI1LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c17bc1bc-b66f-44ff-8f98-c41563094c22" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12220,Microsoft.Compute/GetVMImageFromLocation30Min;73217" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "519c4710-336b-4e59-9a09-60a393904f1b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/19ecc8c2-6450-4297-960f-55588cbf1853" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5153729f-ec2f-428d-9af3-810db5422360" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215207Z:5153729f-ec2f-428d-9af3-810db5422360" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 921CD0975AAA47F49DAE0EAC508176C4 Ref B: MNZ221060618009 Ref C: 2025-06-02T21:52:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:06 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1425.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1425.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1425.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xNDI1LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11647,Microsoft.Compute/GetVMImageFromLocation30Min;72289" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "06da49bc-ef6e-4bce-a701-56a8dbd6f66b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/17e88974-74fd-4e22-8070-44b24cfc6589" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "aa9e415c-6b4d-4a0a-9508-544ed2688352" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215351Z:aa9e415c-6b4d-4a0a-9508-544ed2688352" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FBE76E665231412F82AEF2ABEE491A8E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:51 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1425.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1425.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1486.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xNDg2LjI1MDMwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ee381acd-661d-4e1c-b6d2-b5bf93ff6fd9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12219,Microsoft.Compute/GetVMImageFromLocation30Min;73216" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9f1bc0c3-e427-4760-972c-02865ce2304e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/49440bb1-ca08-46c3-bc6b-ac3ca9f05307" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "de77b97d-21c1-4366-9aec-10dc415b8be7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215207Z:de77b97d-21c1-4366-9aec-10dc415b8be7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BEB4E1F9BF9C41B99169F963D65B2BC4 Ref B: MNZ221060609027 Ref C: 2025-06-02T21:52:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:06 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1486.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1486.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1486.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xNDg2LjI1MDMwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11646,Microsoft.Compute/GetVMImageFromLocation30Min;72288" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d071933e-32b0-4b61-bace-eedc8953ce24" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c6f238a9-229d-4739-970a-6a83694b5922" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "e74c2e35-6113-4122-b44a-8fbb56aca651" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215351Z:e74c2e35-6113-4122-b44a-8fbb56aca651" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 67BC3A56FB344B41AADF37B34DF9721D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:51 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1486.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1486.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1551.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xNTUxLjI1MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4c2a171a-30dc-40b6-9cbf-d9d32d6a05f0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12218,Microsoft.Compute/GetVMImageFromLocation30Min;73215" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e8b9c98f-9fec-40cd-aced-fa97c6afe8a9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6fc61fb6-5733-4676-9eb6-3c0dce3e1980" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "94e6f9c0-bcbc-4a0c-8b51-635f172786a7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215207Z:94e6f9c0-bcbc-4a0c-8b51-635f172786a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E57C0FD26C44ABA954561EDD373724B Ref B: MNZ221060609021 Ref C: 2025-06-02T21:52:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:06 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1551.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1551.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1551.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xNTUxLjI1MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11645,Microsoft.Compute/GetVMImageFromLocation30Min;72287" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ccf5b613-b887-4063-8dcc-819caec3cf2a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/22c74bb5-6c30-44e3-b54d-59d52e4f4811" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3760ad2f-73b4-4e10-abee-bacd4ed49ac0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215351Z:3760ad2f-73b4-4e10-abee-bacd4ed49ac0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 625F6C75C08146D59C46108332DFD01D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:51 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1551.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1551.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1611.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xNjExLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "27bf7869-a709-4caf-9311-d91f7f241e40" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12217,Microsoft.Compute/GetVMImageFromLocation30Min;73214" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "79bba8e1-9877-41f7-894b-0f808302ffd6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9186be8b-d524-466b-8456-8a34bd76ae9f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "abcc5c3a-144f-48ee-b26c-de65cab05010" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215207Z:abcc5c3a-144f-48ee-b26c-de65cab05010" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1209EED5ABAB4F3AAFC2546C5573812D Ref B: MNZ221060609017 Ref C: 2025-06-02T21:52:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:07 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1611.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1611.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.1611.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC4xNjExLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11644,Microsoft.Compute/GetVMImageFromLocation30Min;72286" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9457b136-1f28-4e58-8559-0b31ae9d0196" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9244404e-ce9f-4fbd-8c58-5ad60acc13dc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c2b7ad2e-2baa-43e7-b974-82bfc99209da" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215351Z:c2b7ad2e-2baa-43e7-b974-82bfc99209da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 54C0C6D7E2F44847A8C65463EF0798D5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:51Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:51 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1611.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.1611.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.709.240301?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC43MDkuMjQwMzAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6653a5be-142e-4d0c-abce-cfe506f282e8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12216,Microsoft.Compute/GetVMImageFromLocation30Min;73213" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f10d5cbe-715a-43de-9982-15205c20d756" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9e86925c-2933-4ea8-8519-fc451f71bf68" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b176128f-47f6-49f5-bb7e-1a6d8cf9003b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215207Z:b176128f-47f6-49f5-bb7e-1a6d8cf9003b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B8C1B72B270440739DDC7ADA0D5A5EAE Ref B: MNZ221060610037 Ref C: 2025-06-02T21:52:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:06 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.709.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.709.240301\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.709.240301?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC43MDkuMjQwMzAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11643,Microsoft.Compute/GetVMImageFromLocation30Min;72285" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "92d7bb14-9b59-45d6-85bf-76f8c4c8aa12" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6e46a93f-14d1-4571-85da-2662c8d3ffd4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "ef9efab6-2fae-421f-ab9b-d6f5f54b36c0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215352Z:ef9efab6-2fae-421f-ab9b-d6f5f54b36c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 159D2B6769EA41269DEB90D022CF9583 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:51 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.709.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.709.240301\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.763.240229?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC43NjMuMjQwMjI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9405a02c-f77c-4188-b0ae-413fd187a89b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12215,Microsoft.Compute/GetVMImageFromLocation30Min;73212" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "699076ff-e0f4-467b-8fe4-6ea73f00c9bb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/23d6f88b-65a0-415c-8d2f-eabaa32bd856" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6d059c1c-063a-410a-85c0-4c308400b301" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215207Z:6d059c1c-063a-410a-85c0-4c308400b301" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E28C5126AA164C79A74EB8319052A0BE Ref B: MNZ221060608053 Ref C: 2025-06-02T21:52:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:07 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.763.240229\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.763.240229?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC43NjMuMjQwMjI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11642,Microsoft.Compute/GetVMImageFromLocation30Min;72284" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "39209f26-8597-4418-8d0f-c496c52b5212" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/676900f5-ee09-467f-b0cd-c783a4b89c2f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "ec7f9c9d-84af-454b-b5a6-7a7ee0671951" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215352Z:ec7f9c9d-84af-454b-b5a6-7a7ee0671951" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 679DFAE7895F4124812C1715C505FC28 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:51 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.763.240229\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.763.240329?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC43NjMuMjQwMzI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8fa03fea-37c8-4850-9ece-019785c7208a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12214,Microsoft.Compute/GetVMImageFromLocation30Min;73211" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8c2da429-c30c-4c82-b818-4da2ba2c19b4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/99c65bba-2c73-4638-a297-76476bdb830c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e29d54d9-4002-49ef-a6b4-71d7b00b71e4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215208Z:e29d54d9-4002-49ef-a6b4-71d7b00b71e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2C985C92E336449E94DF397887BDCC97 Ref B: MNZ221060608025 Ref C: 2025-06-02T21:52:07Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:07 GMT" + ], + "Content-Length": [ + "1051" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.763.240329\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.763.240329?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC43NjMuMjQwMzI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11641,Microsoft.Compute/GetVMImageFromLocation30Min;72283" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7e402b4a-6753-46a5-b009-e6636383ea06" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f7a330b2-e6ca-4872-869a-3c31b4981b24" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "b267665e-a2ea-447c-ab71-b51aa4e28cfe" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215352Z:b267665e-a2ea-447c-ab71-b51aa4e28cfe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C131171EFFB44C41A9F82F186E611780 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:51 GMT" + ], + "Content-Length": [ + "1051" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.763.240329\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.830.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC44MzAuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "278629d9-5c40-4618-8b02-ff352abfa58e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12213,Microsoft.Compute/GetVMImageFromLocation30Min;73210" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "34e82cbf-b19c-47bd-9a5d-345dbdaf5525" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6676ce6f-fd41-4a49-8c75-cd3c83f59ce1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9c3c4e9f-30f9-42c5-b13f-8113de2f5848" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215208Z:9c3c4e9f-30f9-42c5-b13f-8113de2f5848" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A2E519B0CD9B491B84AE95F626646AD6 Ref B: MNZ221060619011 Ref C: 2025-06-02T21:52:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:07 GMT" + ], + "Content-Length": [ + "970" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.830.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.830.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.830.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC44MzAuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11640,Microsoft.Compute/GetVMImageFromLocation30Min;72282" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ec37085a-f15a-4aae-9fd5-1fa940212e3f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/30d597d8-0366-4e56-8a20-a06d0085f5e9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "3d033aec-2fbc-435c-96db-61dd1c91e0af" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215352Z:3d033aec-2fbc-435c-96db-61dd1c91e0af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 84EE9C38A9A54784B879BA534E4E42ED Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:51 GMT" + ], + "Content-Length": [ + "970" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.830.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.830.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.887.240505?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC44ODcuMjQwNTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ace3afa8-5d55-4b93-a2d7-5d8a21e9ce9d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12212,Microsoft.Compute/GetVMImageFromLocation30Min;73209" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a70cb848-87a5-491d-a56c-b99a679ac431" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/521efb43-a606-4bea-943d-041b7516c437" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d9a62dcc-7120-411b-a084-42c70de6e90d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215208Z:d9a62dcc-7120-411b-a084-42c70de6e90d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 96A9EA5F05C34FA6B904F23DE56F5401 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:52:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:08 GMT" + ], + "Content-Length": [ + "970" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.887.240505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.887.240505\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.887.240505?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC44ODcuMjQwNTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11639,Microsoft.Compute/GetVMImageFromLocation30Min;72281" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1ff32cbc-15a0-4191-b5cb-404149c42108" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/250216cd-db88-482d-a2da-2cc24bf7535e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "a93ea54d-1039-42a0-ad2b-d554762e6307" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215352Z:a93ea54d-1039-42a0-ad2b-d554762e6307" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 23B188FC196043AC8C2558D33FC93440 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:51 GMT" + ], + "Content-Length": [ + "970" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.887.240505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.887.240505\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.950.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC45NTAuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d7cc4592-3e4e-4300-bbf5-b2402951c0bc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12211,Microsoft.Compute/GetVMImageFromLocation30Min;73208" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1e4f1d91-510a-48b4-934b-e3622327c5db" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ad619a92-7a02-4630-a601-c9d5317ae32e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2d137e5d-5d91-4ab4-98ff-ff1be53e402a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215208Z:2d137e5d-5d91-4ab4-98ff-ff1be53e402a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2EC1CF99355A48DFB1CEEEFA357D03F9 Ref B: MNZ221060608035 Ref C: 2025-06-02T21:52:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:08 GMT" + ], + "Content-Length": [ + "970" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.950.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.950.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core/versions/25398.950.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS92ZXJzaW9ucy8yNTM5OC45NTAuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11638,Microsoft.Compute/GetVMImageFromLocation30Min;72280" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fcaa98f3-e7cf-4dc3-998b-6977349ef414" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0cfd35ea-3175-4532-9427-3bfa2c8f6aa4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "58a950ae-375f-4464-ac68-754e2a02c10b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215352Z:58a950ae-375f-4464-ac68-754e2a02c10b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4B7B83051E624505A2EED585CF5A0E8E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:51 GMT" + ], + "Content-Length": [ + "970" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 32214352384\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.950.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core/Versions/25398.950.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7a114804-435f-4011-a156-e8d23c18ac3b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15924,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43918" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "253b2023-e706-418d-86a4-b91b677c58f4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2ffe80a0-e53e-415e-8f66-f2425812dbe5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f55f16a5-a240-4236-857c-0b808f7eed36" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215208Z:f55f16a5-a240-4236-857c-0b808f7eed36" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2B47B309A4524255BFDE0AF64F156702 Ref B: MNZ221060610029 Ref C: 2025-06-02T21:52:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:08 GMT" + ], + "Content-Length": [ + "5346" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1009.240702\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1009.240702\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1085.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1085.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1128.240906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1128.240906\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1189.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1189.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1251.241105\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1251.241105\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1308.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1308.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1369.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1369.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1425.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1425.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1486.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1486.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1551.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1551.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1611.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1611.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.709.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.709.240301\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.763.240229\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.763.240329\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.830.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.830.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.887.240505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.887.240505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.950.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.950.240607\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15863,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43817" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0dddc8d7-a6bc-4b68-be6a-7bc4fa3162b4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dd4df3fc-9aad-4515-9695-7b957e3e6770" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f9d4f2c1-4fda-4084-9de8-93d547467ec3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215352Z:f9d4f2c1-4fda-4084-9de8-93d547467ec3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FC9F5D64A41E4B4492679F051B0F96DE Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:51 GMT" + ], + "Content-Length": [ + "5346" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1009.240702\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1009.240702\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1085.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1085.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1128.240906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1128.240906\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1189.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1189.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1251.241105\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1251.241105\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1308.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1308.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1369.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1369.250111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1425.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1425.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1486.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1486.250305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1551.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1551.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1611.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1611.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.709.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.709.240301\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.763.240229\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.763.240329\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.830.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.830.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.887.240505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.887.240505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.950.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.950.240607\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1009.240702?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMDA5LjI0MDcwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d783b519-a7db-4d96-b7ff-2ec226062863" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12210,Microsoft.Compute/GetVMImageFromLocation30Min;73207" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2ecd3e5d-b26c-47ed-bc49-18762c24bb97" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b6c63ee3-72d6-4dbf-881c-191a6946d2ca" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "91cf17bc-7fc2-479d-87b7-aee3d3bbed0a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215208Z:91cf17bc-7fc2-479d-87b7-aee3d3bbed0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7B4A1AD0A8C64348BBD0A26C063AFB39 Ref B: MNZ221060608017 Ref C: 2025-06-02T21:52:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:08 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1009.240702\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1009.240702\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1009.240702?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMDA5LjI0MDcwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11637,Microsoft.Compute/GetVMImageFromLocation30Min;72279" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "25c5b963-3508-44ef-bdf0-879aef1d5272" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bcec2ccc-e31e-4aa4-a54c-f9ad88806e30" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f00bcbf1-a034-4598-a611-c4881bcaf516" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215352Z:f00bcbf1-a034-4598-a611-c4881bcaf516" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3D1EB056F3A94F57B4578E8511EBBF05 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:51 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1009.240702\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1009.240702\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1085.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMDg1LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2777ffc6-b5e1-4786-bb8a-80f8731d131c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12209,Microsoft.Compute/GetVMImageFromLocation30Min;73206" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "40445a31-46f7-422c-8a0a-08fcc5044f39" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6592bd10-6e29-44c4-ba2b-2fb0365b67fe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "46c21e51-68f2-49f0-800b-cc39f6b42577" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215208Z:46c21e51-68f2-49f0-800b-cc39f6b42577" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B173C0F7713946E99C3CD875DEACCDA2 Ref B: MNZ221060618031 Ref C: 2025-06-02T21:52:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:08 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1085.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1085.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1085.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMDg1LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11636,Microsoft.Compute/GetVMImageFromLocation30Min;72278" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ce9cb0bd-f44d-4f17-976e-cc7c5de8e618" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4c9aa605-d42b-49ae-b3b3-71b06002c96e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4c921f9d-8e20-48a3-ab0f-01205d0d3d1f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215352Z:4c921f9d-8e20-48a3-ab0f-01205d0d3d1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9CEA06CF12594C75BEBFD40B71B11469 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:52 GMT" + ], + "Content-Length": [ + "1188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1085.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1085.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1128.240906?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMTI4LjI0MDkwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "25534db8-8051-4adc-b0ec-257d00a99083" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12208,Microsoft.Compute/GetVMImageFromLocation30Min;73205" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fa8e8084-89a1-4564-9a65-f52e7cd447b2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2f4d7f34-9fb6-486f-8c2c-46e631079472" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7f65cc53-ce97-4edd-bd40-190b02527a94" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215208Z:7f65cc53-ce97-4edd-bd40-190b02527a94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 277428058D79447499BCA1B0A5604B50 Ref B: MNZ221060610007 Ref C: 2025-06-02T21:52:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:08 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1128.240906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1128.240906\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1128.240906?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMTI4LjI0MDkwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11635,Microsoft.Compute/GetVMImageFromLocation30Min;72277" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4defef3c-02e0-4ad9-86a1-65ba8efbf564" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/14b5ea3d-a34e-4777-9c1c-2ee2dd9f5267" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "9833a26f-3959-4ff3-b93b-fc6dbd136510" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215352Z:9833a26f-3959-4ff3-b93b-fc6dbd136510" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6C660719BEAE49F298E9C1708F2329EC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:52 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1128.240906\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1128.240906\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1189.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMTg5LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5241e876-90c0-4cfa-9fb4-ef04d925ba0b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12207,Microsoft.Compute/GetVMImageFromLocation30Min;73204" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "532bf372-6494-4da7-b4d9-a367deacd994" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2ff17ce6-3f77-4580-8bf6-8754a8d83c69" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1122c9ea-0779-4486-bbfc-f998ffe49727" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215208Z:1122c9ea-0779-4486-bbfc-f998ffe49727" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 45AEA80E7C264066AA6E0D5A5C97862A Ref B: MNZ221060609053 Ref C: 2025-06-02T21:52:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:08 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1189.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1189.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1189.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMTg5LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11634,Microsoft.Compute/GetVMImageFromLocation30Min;72276" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "00857171-1b0a-4a4c-bbb5-1a2cbeb438f3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5e287b68-c4c1-4a94-98c1-a2a96f8d7a79" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0352b9a9-15c8-43fc-9575-4bedec44beb2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215352Z:0352b9a9-15c8-43fc-9575-4bedec44beb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 65769E845BCD4C6F99CB92276905F0E4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:52 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1189.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1189.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1251.241105?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMjUxLjI0MTEwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f31dfedf-cef2-4f9c-b869-f53a1577b2ae" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12206,Microsoft.Compute/GetVMImageFromLocation30Min;73203" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6e84c607-cb56-46bf-a934-f6001f235a58" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/12972acd-0098-46e9-9027-c3ab01b7cfe4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "251d19d1-36c3-4b4b-a3d7-0e9db1210bcf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215209Z:251d19d1-36c3-4b4b-a3d7-0e9db1210bcf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 69A2F848E5A2418DB7FCC91C978861D3 Ref B: MNZ221060609031 Ref C: 2025-06-02T21:52:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:08 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1251.241105\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1251.241105\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1251.241105?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMjUxLjI0MTEwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11633,Microsoft.Compute/GetVMImageFromLocation30Min;72275" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8b2e5ba1-7b35-4053-ab37-27d6cb19f66b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0f92b5dc-58eb-425e-a8d3-50d1fe429fa0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "00760f0b-6bf9-43c1-be74-40c1ceebfcb6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215353Z:00760f0b-6bf9-43c1-be74-40c1ceebfcb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EA6B125277484C02A9243A58F4144208 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:52Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:52 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1251.241105\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1251.241105\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1308.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMzA4LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b0f3d76d-926d-4247-9a01-259c6b4fd75e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12205,Microsoft.Compute/GetVMImageFromLocation30Min;73202" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9e528508-6a48-4142-8c12-ae5c191d40eb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/15cf6fa7-f9ef-4510-9ba9-7612f2ed696b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0d39072f-31a8-48f0-a3e6-726b04d37fd5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215209Z:0d39072f-31a8-48f0-a3e6-726b04d37fd5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 096FE4CE7AEB492898F7B321A8DAC708 Ref B: MNZ221060609021 Ref C: 2025-06-02T21:52:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:08 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1308.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1308.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1308.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMzA4LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11632,Microsoft.Compute/GetVMImageFromLocation30Min;72274" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "53d3ca5d-7bdc-4cf1-ab81-491195680303" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/74408823-187f-42c9-bc70-e002393ae171" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6c16cf56-23d3-4de4-a5c8-79ead326c06d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215353Z:6c16cf56-23d3-4de4-a5c8-79ead326c06d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 621A628B1F424FFFB7B32981266C07E2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:52 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1308.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1308.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1369.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMzY5LjI1MDExMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1269a32e-e43b-4a65-aa1c-07060451a1eb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12204,Microsoft.Compute/GetVMImageFromLocation30Min;73201" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ea718880-22ae-460f-a99b-49521b459cf0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c8aa85f3-a2d9-45f6-99c9-df5d33c121cd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1cb139b3-50ae-427c-b2e4-bcdc28fca9bd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215209Z:1cb139b3-50ae-427c-b2e4-bcdc28fca9bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9731B35D565A48C1B24447B09F26114D Ref B: MNZ221060619051 Ref C: 2025-06-02T21:52:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:09 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1369.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1369.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1369.250111?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xMzY5LjI1MDExMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11631,Microsoft.Compute/GetVMImageFromLocation30Min;72273" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cc7b1ab1-aec4-4f38-9dcd-d5f60c5ee94d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bc428e63-7a21-47b3-b659-c664fdebf056" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7593a19e-fc85-4711-9028-6d47fb0f4216" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215353Z:7593a19e-fc85-4711-9028-6d47fb0f4216" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9801FE4B712A48E69157816A5922A853 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:52 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-14T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1369.250111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1369.250111\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1425.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xNDI1LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8ad1f2d3-8bdd-41d4-aa48-59e1895f7591" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12203,Microsoft.Compute/GetVMImageFromLocation30Min;73200" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "86815f40-b1f7-4a9c-876a-76104917ffcf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/93e4c720-33e3-4752-8884-80ae132dafae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "32f3c78c-207c-4894-b9f0-f0689c6bcbf7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215209Z:32f3c78c-207c-4894-b9f0-f0689c6bcbf7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5148EB04AF434838813D0B3DC879634B Ref B: MNZ221060618053 Ref C: 2025-06-02T21:52:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:08 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1425.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1425.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1425.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xNDI1LjI1MDIxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11630,Microsoft.Compute/GetVMImageFromLocation30Min;72272" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "09c52359-58e7-4060-aca0-64fab74e70ec" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2b0ba3ea-e8af-4212-84e7-46c9ca0b6a7d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d1bfd95a-d6b7-4298-874c-377dc67797aa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215353Z:d1bfd95a-d6b7-4298-874c-377dc67797aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 76401C3A1DB046E0BA8D8C85FE0757B1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:52 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-12T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1425.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1425.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1486.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xNDg2LjI1MDMwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "164e3b85-90e7-49b9-969c-20d3926838db" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12202,Microsoft.Compute/GetVMImageFromLocation30Min;73199" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "10ee5fbe-c8b3-4c45-b1bc-b8d6c3ab6ddf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/de7641ab-54cc-4dc6-a507-1e2719bd99fe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "53770bd8-bcf1-41bd-a642-9e9aefbad731" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215209Z:53770bd8-bcf1-41bd-a642-9e9aefbad731" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 20CEAA40573C4E21B17F34361C679BEE Ref B: MNZ221060618023 Ref C: 2025-06-02T21:52:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:08 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1486.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1486.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1486.250305?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xNDg2LjI1MDMwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11629,Microsoft.Compute/GetVMImageFromLocation30Min;72271" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2a36bd7d-2148-41b4-85aa-9d574cd89bcb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/23fe4fd2-51c4-4362-8df8-f1132695afa6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "adc9db18-27b9-4f2f-9b6e-b139d142bd5a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215353Z:adc9db18-27b9-4f2f-9b6e-b139d142bd5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2A695C57ABE049EB8A08654D783EDBDC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:52 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1486.250305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1486.250305\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1551.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xNTUxLjI1MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c6ceadbe-b758-4d84-8680-9f9c60dcb481" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12201,Microsoft.Compute/GetVMImageFromLocation30Min;73198" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c1305bc6-fd1c-460d-9a7b-f05a290f757a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d4b104d9-e4dc-44b5-904b-e6d776d98af7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c4a28e18-790e-42e0-bb79-38b25668be88" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215209Z:c4a28e18-790e-42e0-bb79-38b25668be88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5E7234FC17654B0A8011CE717BF87959 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:52:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:08 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1551.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1551.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1551.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xNTUxLjI1MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11628,Microsoft.Compute/GetVMImageFromLocation30Min;72270" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a5ae3a91-5e04-4a7a-b64b-5ce10f5f79ab" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/28e77faf-d041-4e67-921b-52ca217a9ab1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a76e9bf1-47f5-4e2f-b7b8-810a681b8cd1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215353Z:a76e9bf1-47f5-4e2f-b7b8-810a681b8cd1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 955BFD51F072446B982AEFB0F0C93AE9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:52 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-11T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1551.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1551.250406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1611.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xNjExLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "41cca5bd-ae73-4777-9012-3cea2cb9e9a2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12200,Microsoft.Compute/GetVMImageFromLocation30Min;73197" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9903abf8-4a82-4f4c-b1aa-03d30909ec74" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ae0ba6d2-3da4-4cba-bbbc-2a54db8f4b1b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "75cb394b-e2a5-4904-af7d-d691efff656d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215209Z:75cb394b-e2a5-4904-af7d-d691efff656d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C6CFFD299B241FF933D3D19B3D00F31 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:52:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:09 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1611.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1611.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.1611.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC4xNjExLjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11627,Microsoft.Compute/GetVMImageFromLocation30Min;72269" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fe5d5350-f4a5-4783-ac3c-5762d0bf8807" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fe32b577-ee81-4105-8478-62153b26942b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "52ab9efd-abb7-40e8-9b90-a61b023f02f4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215353Z:52ab9efd-abb7-40e8-9b90-a61b023f02f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A84E1C6E41F74B2A8021F45FE86FD028 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:52 GMT" + ], + "Content-Length": [ + "1236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.1611.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.1611.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.709.240301?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC43MDkuMjQwMzAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "423d9201-486d-4b8b-ae94-0962a107d437" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12199,Microsoft.Compute/GetVMImageFromLocation30Min;73196" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c6987cb5-0b24-4d96-9070-e12614f1b59d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b4b35b6d-d9b0-4269-a2af-0da60fde4303" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "83acd2c5-fa5c-4713-a626-cb065aa15bb8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215209Z:83acd2c5-fa5c-4713-a626-cb065aa15bb8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7A4B4315ED3B4018B5B14C77F599004F Ref B: MNZ221060609021 Ref C: 2025-06-02T21:52:09Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:09 GMT" + ], + "Content-Length": [ + "1268" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.709.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.709.240301\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.709.240301?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC43MDkuMjQwMzAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11626,Microsoft.Compute/GetVMImageFromLocation30Min;72268" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1b3d54b4-163b-45f5-8777-ed82422d5e97" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f74a8c4f-cbdf-45ad-bdfe-fcf722c10a94" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "6f7c47da-52aa-4e80-b4af-7bce085c00e2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215353Z:6f7c47da-52aa-4e80-b4af-7bce085c00e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 88A9362626AC4FAFB3F3E5E513A5261C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:52 GMT" + ], + "Content-Length": [ + "1268" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.709.240301\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.709.240301\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.763.240229?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC43NjMuMjQwMjI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8ef0a665-d9e5-4707-8552-ef5986d3795a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12198,Microsoft.Compute/GetVMImageFromLocation30Min;73195" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d574578e-dded-4ffc-8e07-ddd8b4874aa7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/68fade6b-081f-4060-9c6b-f4ab802b9703" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d7c6042d-8076-4f06-a4b2-8774aedc3646" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215210Z:d7c6042d-8076-4f06-a4b2-8774aedc3646" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 74E72408EAF142CD833FCF552F3DFCD2 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:52:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:09 GMT" + ], + "Content-Length": [ + "1268" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.763.240229\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.763.240229?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC43NjMuMjQwMjI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11625,Microsoft.Compute/GetVMImageFromLocation30Min;72267" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a7fe9fa6-2dd2-4a18-9eac-589b5d0873fa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/da2e8aa2-83d6-4694-b5d1-5549f80a5b17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "0f90b81d-a777-4381-b201-23ae9c92749b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215353Z:0f90b81d-a777-4381-b201-23ae9c92749b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5A01D7D374D345BBA99AC472655EAE00 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:52 GMT" + ], + "Content-Length": [ + "1268" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.763.240229\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.763.240329?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC43NjMuMjQwMzI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "35a128cb-4f7c-4357-a94e-08d03c80286d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12197,Microsoft.Compute/GetVMImageFromLocation30Min;73194" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "350d6926-a69b-47c4-9218-b7ac73852bbd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5773e4d9-5879-4d4e-8ea2-1a4ebc3845cb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9cda00c7-e5c3-4b7d-a50d-8ac15ed95e79" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215210Z:9cda00c7-e5c3-4b7d-a50d-8ac15ed95e79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1D5B01680B7546638BD8210652D7C92C Ref B: MNZ221060619027 Ref C: 2025-06-02T21:52:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:09 GMT" + ], + "Content-Length": [ + "1267" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.763.240329\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.763.240329?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC43NjMuMjQwMzI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11624,Microsoft.Compute/GetVMImageFromLocation30Min;72266" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5a747312-ac49-42e5-a16d-3d84d0b38112" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b844b8f5-46e5-47e1-89bd-7a195074680c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d7bb1f1f-4d65-4ca9-b4e4-a3e5829a2db8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215353Z:d7bb1f1f-4d65-4ca9-b4e4-a3e5829a2db8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2A727BBBC4A843CE952FA340A4727FEE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:52 GMT" + ], + "Content-Length": [ + "1267" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.763.240329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.763.240329\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.830.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC44MzAuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5642f576-1880-4a33-acd9-5eec654ff66f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12196,Microsoft.Compute/GetVMImageFromLocation30Min;73193" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4174646d-70dd-4245-814d-b1b1388675d2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f0edd81a-bc54-4c41-88f2-cd4d9b4c23b6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "47f5a596-3713-4264-84ff-4790baec64e2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215210Z:47f5a596-3713-4264-84ff-4790baec64e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CE5F701ADC844084A6316AE46E805FCD Ref B: MNZ221060610053 Ref C: 2025-06-02T21:52:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:09 GMT" + ], + "Content-Length": [ + "1186" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.830.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.830.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.830.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC44MzAuMjQwNDA2P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11623,Microsoft.Compute/GetVMImageFromLocation30Min;72265" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "60ac68ea-5dc4-4559-afe2-c3ec81603636" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4824eeb9-2a52-4d8a-9e94-703e934be432" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c7748aa2-7a0d-40d3-bc50-d7836c1f3099" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215353Z:c7748aa2-7a0d-40d3-bc50-d7836c1f3099" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DD7EC3370F9E40819E9D5938DDFDD17C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "1186" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.830.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.830.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.887.240505?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC44ODcuMjQwNTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fddf7ecd-28cb-4a14-9bd0-03f8580c7e91" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12195,Microsoft.Compute/GetVMImageFromLocation30Min;73192" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8338ee57-14af-455b-9e71-db5a661656b1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bb21801c-8806-479c-86a6-2e2df22e7bff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c0f1ac0d-3fb8-4a96-af40-b9986d0c2142" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215210Z:c0f1ac0d-3fb8-4a96-af40-b9986d0c2142" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4ADDBC467C004E8ABC6AA13F4E5628B7 Ref B: MNZ221060609049 Ref C: 2025-06-02T21:52:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:10 GMT" + ], + "Content-Length": [ + "1186" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.887.240505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.887.240505\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.887.240505?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC44ODcuMjQwNTA1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11622,Microsoft.Compute/GetVMImageFromLocation30Min;72264" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "71aa7cac-2c6e-4b95-91d6-d049ea392ced" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b95c6d0c-dad6-4186-8f57-51a642ea2525" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "a6970924-5287-4d21-ae5b-5453eed658bc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215353Z:a6970924-5287-4d21-ae5b-5453eed658bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A4595378E35E483A9A80A5A28987484B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "1186" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.887.240505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.887.240505\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.950.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC45NTAuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8484a687-1c9b-4405-8320-e7ade81f23f1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12194,Microsoft.Compute/GetVMImageFromLocation30Min;73191" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "adc3849e-62a2-40b0-b231-659dd36e5abf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/354b0e0d-0b89-437e-b33d-0064573215b5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "79efeef2-9c66-4135-bc59-4c6ce06263bb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215210Z:79efeef2-9c66-4135-bc59-4c6ce06263bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2EC9D20964CB4746988DC9CF510B2B3D Ref B: MNZ221060609035 Ref C: 2025-06-02T21:52:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:10 GMT" + ], + "Content-Length": [ + "1186" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.950.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.950.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/23h2-datacenter-core-g2/versions/25398.950.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yM2gyLWRhdGFjZW50ZXItY29yZS1nMi92ZXJzaW9ucy8yNTM5OC45NTAuMjQwNjA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11621,Microsoft.Compute/GetVMImageFromLocation30Min;72263" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "951cf384-0635-4de8-90f1-58e4272192d8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c519e52c-d8fc-45f5-9920-969a33f9e9f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "61225cf7-6d9d-41da-9d8c-69a76e125a25" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215353Z:61225cf7-6d9d-41da-9d8c-69a76e125a25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2A329915275C42D083003E6A86DFAA2A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "1186" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"25398.950.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/23h2-datacenter-core-g2/Versions/25398.950.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Datacenter-Core-1903-with-Containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9EYXRhY2VudGVyLUNvcmUtMTkwMy13aXRoLUNvbnRhaW5lcnMtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "875d2304-e7b3-4f88-a44a-2a92fd61c503" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15923,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43917" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a559b2ee-408f-408c-b8d7-a609b25e70a0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d124c4a6-41bc-4597-b7d6-59ff62b0058b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f32c79f8-20bd-41b8-a06b-e847b4133a38" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215210Z:f32c79f8-20bd-41b8-a06b-e847b4133a38" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3F4A82FA334F404582364B81B99886D7 Ref B: MNZ221060619019 Ref C: 2025-06-02T21:52:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:09 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Datacenter-Core-1903-with-Containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9EYXRhY2VudGVyLUNvcmUtMTkwMy13aXRoLUNvbnRhaW5lcnMtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15862,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43816" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8eb4ee96-79ba-48fa-bcd9-cbb4e108cf43" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/28851cdf-ce42-49b4-b9a7-e0dd87873c12" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3b3e44d6-28c1-4775-aed7-0b8e3548e600" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215353Z:3b3e44d6-28c1-4775-aed7-0b8e3548e600" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 64E4E6053BA64BC588290E1B9A615A0E Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/datacenter-core-1909-with-containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9kYXRhY2VudGVyLWNvcmUtMTkwOS13aXRoLWNvbnRhaW5lcnMtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f9770af2-52b9-48e8-bb91-1b6024f4519a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15922,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43916" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a8b3cdfe-6bf3-41bc-8047-b52d552cccae" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/699863a9-363a-4a39-8763-3a3d231dac0e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "81024e94-e71c-448f-8e58-fbfc3f19ff77" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215210Z:81024e94-e71c-448f-8e58-fbfc3f19ff77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 196AC4E995C24B2F8503DEF8E859ECB8 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:52:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:10 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/datacenter-core-1909-with-containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9kYXRhY2VudGVyLWNvcmUtMTkwOS13aXRoLWNvbnRhaW5lcnMtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15861,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43815" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "76ad1bd7-e23e-4315-aaf7-290551bd6e49" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bd6bc68b-b894-49ee-8f8e-5c3ffa942bb0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d3a8eb4e-6839-409d-a7e9-63fb8a7be33e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215354Z:d3a8eb4e-6839-409d-a7e9-63fb8a7be33e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9085410736454E899E677B3B1B51586D Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:53Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/datacenter-core-1909-with-containers-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9kYXRhY2VudGVyLWNvcmUtMTkwOS13aXRoLWNvbnRhaW5lcnMtc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9dbcd46b-432b-46d2-8826-b8ee886c4ac0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15921,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43915" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c4766dd7-b239-44a9-9f7d-16a619d010cf" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/39fb973d-bd39-4898-9ec9-4e850bf84354" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "12fa6989-3d19-4f4c-a36d-ad8f1df9b8f6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215210Z:12fa6989-3d19-4f4c-a36d-ad8f1df9b8f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 97658A9F17D04DBCBBF464AD73831835 Ref B: MNZ221060608053 Ref C: 2025-06-02T21:52:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:10 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/datacenter-core-1909-with-containers-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9kYXRhY2VudGVyLWNvcmUtMTkwOS13aXRoLWNvbnRhaW5lcnMtc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15860,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43814" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e41c42b9-a163-4ba4-941d-0f2e72761e47" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/39b8aaa6-180a-4a0e-bf17-6be44660a0ab" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "5164ade8-0142-448f-a6a4-80a49aaa7e11" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215354Z:5164ade8-0142-448f-a6a4-80a49aaa7e11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 884A96DDB1314619BDF46E9D245883AA Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/datacenter-core-2004-with-containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9kYXRhY2VudGVyLWNvcmUtMjAwNC13aXRoLWNvbnRhaW5lcnMtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ab5aaae8-e245-4601-a595-ba8a977766eb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15920,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43914" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "40a8f315-2678-49da-923a-41172d27f09d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c17a1321-96ef-4a02-9787-bcff87a41f99" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "897c6ff3-dd6d-403d-9aa6-24e350c74cf3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215210Z:897c6ff3-dd6d-403d-9aa6-24e350c74cf3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A8411AD4990E488496EA9BFE393A95A1 Ref B: MNZ221060610037 Ref C: 2025-06-02T21:52:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:10 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/datacenter-core-2004-with-containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9kYXRhY2VudGVyLWNvcmUtMjAwNC13aXRoLWNvbnRhaW5lcnMtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15859,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43813" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1612d63e-1832-4f18-ae98-6fe68f3f1ef4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/91c756fd-8ae7-45a1-b98a-314f7a6f3ce8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "65bafff1-5244-4c39-85aa-e820803a4aca" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215354Z:65bafff1-5244-4c39-85aa-e820803a4aca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4602EA3D099D4F27ABD92F09AAEAA309 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/datacenter-core-20h2-with-containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9kYXRhY2VudGVyLWNvcmUtMjBoMi13aXRoLWNvbnRhaW5lcnMtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bd3e29b3-6918-4933-9634-d98252bda0c9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15919,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43913" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "71b92b8d-7699-4e8b-8f50-8c11c9814589" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/693c4c20-c7ab-4ad5-8839-2fedef7acf60" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "029b6598-db20-486c-809e-f3f601b04c76" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215211Z:029b6598-db20-486c-809e-f3f601b04c76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E69692A639A84775B58452CDB1424801 Ref B: MNZ221060610051 Ref C: 2025-06-02T21:52:10Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:10 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/datacenter-core-20h2-with-containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9kYXRhY2VudGVyLWNvcmUtMjBoMi13aXRoLWNvbnRhaW5lcnMtc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15858,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43812" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0de1fc7c-096d-41e8-80a8-09816d878cf9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5db73560-2b86-433d-b939-7ad8ab89c14f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f54f24d7-610f-4802-ab74-8f9e392679a2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215354Z:f54f24d7-610f-4802-ab74-8f9e392679a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 71FF4CA5F3634EE28C851EA6825BD115 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/datacenter-core-20h2-with-containers-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9kYXRhY2VudGVyLWNvcmUtMjBoMi13aXRoLWNvbnRhaW5lcnMtc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "28f2b1db-8db4-43a8-a9c6-bfdd6f357dcc" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15918,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43912" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5091ee66-b2b6-4746-8582-1d3ea5727d3d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e125973f-bd64-4a2f-b089-652dd3ad94dc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6fa7d0d3-216b-407f-9757-9f97a62eebfb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215211Z:6fa7d0d3-216b-407f-9757-9f97a62eebfb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 136E9649516F48949577FF154F5625BB Ref B: MNZ221060618033 Ref C: 2025-06-02T21:52:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:10 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/datacenter-core-20h2-with-containers-smalldisk-g2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9kYXRhY2VudGVyLWNvcmUtMjBoMi13aXRoLWNvbnRhaW5lcnMtc21hbGxkaXNrLWcyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15857,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43811" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cb6df1e1-2cca-4e95-8003-447d8a626ae4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c826457b-fb1f-464f-be94-779edb25ec19" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "88a4d0b0-f998-4571-9de1-6aec6ef0bc7c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215354Z:88a4d0b0-f998-4571-9de1-6aec6ef0bc7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 049F981FA5E446E9A80A0BD49F21E6B8 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a2d8efe2-5408-43d0-b203-e6eda867c8c7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9994,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29988" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "3e6c338f-445a-4ede-9e0a-755fb70f0071" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6e39a146-1e4c-4d55-8660-c3a9419c1408" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7413a496-04c5-4bd8-b1de-448ed90d587d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215211Z:7413a496-04c5-4bd8-b1de-448ed90d587d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BF3A174191DE4A1F9AB7E8D4C9796B0E Ref B: MNZ221060610053 Ref C: 2025-06-02T21:52:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:10 GMT" + ], + "Content-Length": [ + "1284" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-r2-datacenter-gen2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2012-r2-datacenter-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-gen2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2016-datacenter-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-gen2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2019-datacenter-gen2\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9988,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29977" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "3b1f7201-3eca-400b-b10a-49b5895249b3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e890696f-f190-4ead-80b6-c78ff5459d72" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "bd09162e-1cff-4e0f-a600-80613464fc56" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215354Z:bd09162e-1cff-4e0f-a600-80613464fc56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 55FF1A2C054742078C883BFF0460CBAC Ref B: MNZ221060609053 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "1284" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-r2-datacenter-gen2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2012-r2-datacenter-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-gen2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2016-datacenter-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-gen2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2019-datacenter-gen2\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus/2012-r2-datacenter-gen2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cy8yMDEyLXIyLWRhdGFjZW50ZXItZ2VuMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c5360a1b-5c1d-48e5-8a0a-ea90ebb5796b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15917,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43911" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b5f678ff-0d52-44c2-b3b6-35470770788d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0d4191e1-97e3-4732-b2d3-cf634ebf93c1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0b2b58ec-faaf-4bf1-9512-5c2fa04a0f7f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215211Z:0b2b58ec-faaf-4bf1-9512-5c2fa04a0f7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E80E1FF3D0154706A9A77E5A450B5934 Ref B: MNZ221060618035 Ref C: 2025-06-02T21:52:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:11 GMT" + ], + "Content-Length": [ + "338" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19431.1908092124\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2012-r2-datacenter-gen2/Versions/9600.19431.1908092124\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus/2012-r2-datacenter-gen2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cy8yMDEyLXIyLWRhdGFjZW50ZXItZ2VuMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15856,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43810" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "914cf1af-3f27-4888-bb41-613a3f4c008d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/badc6e96-7789-43da-8741-91c79d72ecaf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b2b1e793-51d6-42cc-8206-d52a3097d061" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215354Z:b2b1e793-51d6-42cc-8206-d52a3097d061" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BA947E7E821148C39BFF4F9777505ABB Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "338" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19431.1908092124\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2012-r2-datacenter-gen2/Versions/9600.19431.1908092124\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus/2012-r2-datacenter-gen2/versions/9600.19431.1908092124?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cy8yMDEyLXIyLWRhdGFjZW50ZXItZ2VuMi92ZXJzaW9ucy85NjAwLjE5NDMxLjE5MDgwOTIxMjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5cfd278b-6e82-4bb1-bd12-35065724705c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12193,Microsoft.Compute/GetVMImageFromLocation30Min;73190" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "421abc71-a44c-43af-94b6-b7a192fd3a85" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d52c85e5-a618-4328-b3bd-bcadb8e9f318" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "005b830a-3125-490d-8516-0816c39a78b8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215211Z:005b830a-3125-490d-8516-0816c39a78b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AC3EE06BEFC64D77A3DB1E5C5A716084 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:52:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:10 GMT" + ], + "Content-Length": [ + "802" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19431.1908092124\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2012-r2-datacenter-gen2/Versions/9600.19431.1908092124\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus/2012-r2-datacenter-gen2/versions/9600.19431.1908092124?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cy8yMDEyLXIyLWRhdGFjZW50ZXItZ2VuMi92ZXJzaW9ucy85NjAwLjE5NDMxLjE5MDgwOTIxMjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11620,Microsoft.Compute/GetVMImageFromLocation30Min;72262" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c25c092c-827f-4d94-89e8-87b3c6d6c79d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9d93a258-57d2-46a6-9387-589afdc2baa0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "0fb563c5-233f-4e7d-b86f-99f19f4782fa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215354Z:0fb563c5-233f-4e7d-b86f-99f19f4782fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E6737F1A6384867A0A555076A8A3EFD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "802" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19431.1908092124\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2012-r2-datacenter-gen2/Versions/9600.19431.1908092124\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus/2016-datacenter-gen2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2VuMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3fe856c8-4e59-4b74-9920-d7ea775503c8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15916,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43910" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2edf4420-f9cf-432e-8b0d-d0b1872feae5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4ceaa465-3528-49b9-8388-f95917beec85" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b9b6cd92-5318-4d9f-b81c-a66a961c216d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215211Z:b9b6cd92-5318-4d9f-b81c-a66a961c216d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8739C401BC5545FD955235231DBDCD8C Ref B: MNZ221060609037 Ref C: 2025-06-02T21:52:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:11 GMT" + ], + "Content-Length": [ + "327" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20190620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2016-datacenter-gen2/Versions/2016.127.20190620\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus/2016-datacenter-gen2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2VuMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15855,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43809" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e8a5e0e8-78cd-491f-8f2f-7288a4712a3e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7d0c7fe7-3d7a-478e-94b1-ae93968b71fa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d5f8285a-94df-4707-aaeb-154623e6dd7d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215354Z:d5f8285a-94df-4707-aaeb-154623e6dd7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 30EFD01FBC044EC587F4154EF305302D Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "327" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20190620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2016-datacenter-gen2/Versions/2016.127.20190620\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus/2016-datacenter-gen2/versions/2016.127.20190620?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2VuMi92ZXJzaW9ucy8yMDE2LjEyNy4yMDE5MDYyMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "305d796c-5991-4ce8-8044-d87ea61a4ea5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12192,Microsoft.Compute/GetVMImageFromLocation30Min;73189" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b7abc048-134d-4f17-a29b-e640a3a6dcf3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ec59eebf-7736-47b8-8b6d-1ab316769d64" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4970c37d-fbe0-4d7e-b2ab-25a35b4c6ad5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215211Z:4970c37d-fbe0-4d7e-b2ab-25a35b4c6ad5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BE6A79DEB0F242D49056140AE984973D Ref B: MNZ221060608033 Ref C: 2025-06-02T21:52:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:10 GMT" + ], + "Content-Length": [ + "791" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20190620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2016-datacenter-gen2/Versions/2016.127.20190620\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus/2016-datacenter-gen2/versions/2016.127.20190620?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cy8yMDE2LWRhdGFjZW50ZXItZ2VuMi92ZXJzaW9ucy8yMDE2LjEyNy4yMDE5MDYyMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11619,Microsoft.Compute/GetVMImageFromLocation30Min;72261" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "df2ec624-c2ab-4b42-bf97-b68aba25c73d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3a8b46f4-716e-4377-9935-4b37690f3cc4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "507cbf6b-359f-494a-afaa-9a324e5024cc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215354Z:507cbf6b-359f-494a-afaa-9a324e5024cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 56953C79B90A46BA8339E2FC6A60FDE7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "791" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20190620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2016-datacenter-gen2/Versions/2016.127.20190620\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus/2019-datacenter-gen2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2VuMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "48577677-44eb-4451-a1c3-18c0bc857e4c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15915,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43909" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a1d715bc-77f1-48f6-b665-8fc5979689c2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/919e6118-70f0-493e-a849-1565ae864bf3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7fb75c4c-6693-42ba-a524-3b67735de236" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215211Z:7fb75c4c-6693-42ba-a524-3b67735de236" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1279796DF56A4E10BD6A8B67790C24B1 Ref B: MNZ221060619009 Ref C: 2025-06-02T21:52:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:11 GMT" + ], + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2019.0.20190620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2019-datacenter-gen2/Versions/2019.0.20190620\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus/2019-datacenter-gen2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2VuMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15854,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43808" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ebfa2ae8-e9a2-42d8-abb4-efe3672d41c4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f81fd2ab-b129-485a-9832-41dc3f824134" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2bb2bd91-48cf-4dca-ba0d-68631d1102ba" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215354Z:2bb2bd91-48cf-4dca-ba0d-68631d1102ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DF8D089B32584129A0AE7DFCCE010419 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2019.0.20190620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2019-datacenter-gen2/Versions/2019.0.20190620\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus/2019-datacenter-gen2/versions/2019.0.20190620?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2VuMi92ZXJzaW9ucy8yMDE5LjAuMjAxOTA2MjA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "54696c39-12a8-45bb-96c8-cdcbffad8084" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12191,Microsoft.Compute/GetVMImageFromLocation30Min;73188" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "61b8423e-1cd8-451e-8d03-52c3339b6997" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2b3ff2c5-0819-4c5f-b0b9-f6877a182a47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "375590c3-ab5f-4c1f-b088-0e6727e4ada2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215211Z:375590c3-ab5f-4c1f-b088-0e6727e4ada2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D0358557D5C347B9BAA05183B9161977 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:52:11Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:11 GMT" + ], + "Content-Length": [ + "787" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019.0.20190620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2019-datacenter-gen2/Versions/2019.0.20190620\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-gen2preview/skus/2019-datacenter-gen2/versions/2019.0.20190620?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItZ2VuMnByZXZpZXcvc2t1cy8yMDE5LWRhdGFjZW50ZXItZ2VuMi92ZXJzaW9ucy8yMDE5LjAuMjAxOTA2MjA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11618,Microsoft.Compute/GetVMImageFromLocation30Min;72260" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6482bd11-4a8b-49f8-a34a-3330b269d96a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/72201696-d28e-459f-ae3e-1b70bab24738" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4e2accaa-e0ea-45fa-96ab-597fa2e921a7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215354Z:4e2accaa-e0ea-45fa-96ab-597fa2e921a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 94B1815383094270901EFE94DFA0B395 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:53 GMT" + ], + "Content-Length": [ + "787" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019.0.20190620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview/Skus/2019-datacenter-gen2/Versions/2019.0.20190620\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-previewtest/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItcHJldmlld3Rlc3Qvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2b4bcbb7-9104-4056-a0f9-899f79807983" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9993,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29987" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "866792a6-58c4-449e-bef4-f98b2f34fa83" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d619d3d6-4601-428f-a2a8-c371ebd0d281" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f5bf0395-a0ed-4366-a694-d5eef947fdb0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215212Z:f5bf0395-a0ed-4366-a694-d5eef947fdb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B66017E92A4414E80635C673732912C Ref B: MNZ221060609031 Ref C: 2025-06-02T21:52:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:11 GMT" + ], + "Content-Length": [ + "426" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenterta3z\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-previewtest/Skus/2019-datacenterta3z\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-previewtest/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItcHJldmlld3Rlc3Qvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9987,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29976" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "8935f4a4-08b6-4452-87d3-a3523fdfecc3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4fcaaea2-6961-4a70-8b08-608740ea2e47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d27aaeb0-86cd-49ad-b379-a8f28f36c205" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215354Z:d27aaeb0-86cd-49ad-b379-a8f28f36c205" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F89273E458E241DA9E0C96A2E5929E0C Ref B: MNZ221060609053 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:54 GMT" + ], + "Content-Length": [ + "426" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenterta3z\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-previewtest/Skus/2019-datacenterta3z\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-previewtest/skus/2019-datacenterta3z/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItcHJldmlld3Rlc3Qvc2t1cy8yMDE5LWRhdGFjZW50ZXJ0YTN6L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "89ad646e-abf9-46c9-a2c3-192db1969b4a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15914,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43908" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c067573d-87e6-4fef-89f1-981f6628999b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2bcbe627-2735-4b25-875f-484bdcc54b30" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c1f743f0-e178-49d1-b28e-38583f0f829c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215212Z:c1f743f0-e178-49d1-b28e-38583f0f829c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 181223015AC14FFD9D094EA8CA40C547 Ref B: MNZ221060609037 Ref C: 2025-06-02T21:52:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:11 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver-previewtest/skus/2019-datacenterta3z/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXItcHJldmlld3Rlc3Qvc2t1cy8yMDE5LWRhdGFjZW50ZXJ0YTN6L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15853,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43807" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "85bcc4e3-d4de-414e-90ef-f5b55ed66b3c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/41c89242-fa60-457b-815f-ccccee0bf053" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "a0ccb3ff-fc87-4809-a307-495274c6fcb4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215354Z:a0ccb3ff-fc87-4809-a307-495274c6fcb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7B1447D83E4C4D958FECA9B8F3D66FA0 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:54 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3fb04695-0631-4a32-8d28-de70dff7dbd9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9992,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29986" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "656600d6-5ac8-4852-986e-fb6c8b04bbca" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f51de2b9-105b-4722-8ed9-33544f35fb6b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cfa6d240-176e-45af-9873-f3a9aef5af2d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215212Z:cfa6d240-176e-45af-9873-f3a9aef5af2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 69D75748ED9D432A98517AC1E6C9AEE4 Ref B: MNZ221060619023 Ref C: 2025-06-02T21:52:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:11 GMT" + ], + "Content-Length": [ + "2513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"ws2016-dotnetcore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"ws2016-dotnetcore-2-1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"ws2016-dotnetcore-2-2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"ws2019-dotnetcore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"ws2019-dotnetcore-2-1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"ws2019-dotnetcore-2-2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9986,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "18d1b9a9-a767-4ac0-8b4c-07815aec4e4f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4a8410fa-7c4f-4aa5-84fe-4ca19eff5675" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "dc52b22b-ee54-44e3-9ae3-df83e5baeb63" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215354Z:dc52b22b-ee54-44e3-9ae3-df83e5baeb63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0124B95901A341489F619B58BDD47AC3 Ref B: MNZ221060609053 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:54 GMT" + ], + "Content-Length": [ + "2513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"ws2016-dotnetcore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"ws2016-dotnetcore-2-1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"ws2016-dotnetcore-2-2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"ws2019-dotnetcore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"ws2019-dotnetcore-2-1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"ws2019-dotnetcore-2-2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "59ce4c15-77ed-43b8-9044-06b88ef747c5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15913,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43907" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1df6b9a0-3909-4cf5-95e1-580062986e46" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e78c3246-3fb8-419e-86b1-4ffff86addd5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "0d2332ff-eb39-4acb-84ba-6d2948a4fd3f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215212Z:0d2332ff-eb39-4acb-84ba-6d2948a4fd3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EDEF1337D1EF4F51B18262D07472A3FB Ref B: MNZ221060608011 Ref C: 2025-06-02T21:52:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:11 GMT" + ], + "Content-Length": [ + "5358" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7785.250131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15852,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43806" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "1080a4ab-63d2-48cc-8013-834d2a410203" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/99cbfc8f-af9c-4053-a14f-52f56221f61d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "9ec2cc9d-bb8e-4f80-8268-f70e298ec546" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215354Z:9ec2cc9d-bb8e-4f80-8268-f70e298ec546" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5C305894FA7D4471BD036505696F50E0 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:54 GMT" + ], + "Content-Length": [ + "5358" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6614.240104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6709.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6796.240302\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6897.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6981.240504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7070.240608\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7159.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7259.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7336.240830\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7428.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7785.250131\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My42NjE0LjI0MDEwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "90253452-e1a7-49ba-890a-40e5ec44fae2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12190,Microsoft.Compute/GetVMImageFromLocation30Min;73187" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2cf957ff-f054-4508-a2b0-51cb1dfe9e84" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e3d5fd73-16bd-41bf-87ae-0093bb31fd43" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1022d3ca-c669-4033-94fb-343def1c4eb7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215212Z:1022d3ca-c669-4033-94fb-343def1c4eb7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5B9952DDF32C4082B0A1C8038A7FFE15 Ref B: MNZ221060609017 Ref C: 2025-06-02T21:52:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:12 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.6614.240104?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My42NjE0LjI0MDEwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11617,Microsoft.Compute/GetVMImageFromLocation30Min;72259" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8807a02a-454d-41c7-84d1-e5d2ba53bcdd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e76b7727-c1b7-4276-8996-8d7c6451b196" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "345bc76a-5ce7-4bc2-b372-e41160bf9dae" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215355Z:345bc76a-5ce7-4bc2-b372-e41160bf9dae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9E4DED49D4B94FC399252A67001E2718 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:54Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:54 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6614.240104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6614.240104\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My42NzA5LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8d09750d-dc38-4b7b-8bb5-8a6caff8a7ba" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12189,Microsoft.Compute/GetVMImageFromLocation30Min;73186" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "580b74ff-c083-4cf6-acad-741582e0164b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0b643d5d-8b96-4c29-a3d3-3249dbcae910" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "03032df1-2f71-4d35-a51f-c081d23e599a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215212Z:03032df1-2f71-4d35-a51f-c081d23e599a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BFA1F827EDDD48FCA01B7C03F3EE0321 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:52:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:12 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.6709.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My42NzA5LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11616,Microsoft.Compute/GetVMImageFromLocation30Min;72258" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "54c1bc7d-2580-46de-b5f3-81ae6085794d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0eae2de7-ea02-49e4-a663-44aa5d0c7f25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0fac3f6e-f23a-4fa8-8962-381b57e0fe25" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215355Z:0fac3f6e-f23a-4fa8-8962-381b57e0fe25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DF70732401294A6684D0FFB9C57353A0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:54 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6709.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6709.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My42Nzk2LjI0MDMwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "975760b3-1547-4143-9fc0-08eb15b0c95b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12188,Microsoft.Compute/GetVMImageFromLocation30Min;73185" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "17ae634e-f8f4-439f-a80a-3450fc4a6c2f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9db6b7a7-1d62-43f5-9e74-313f5395a48b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1fbda453-f73d-46c0-85e2-148252dd67cf" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215212Z:1fbda453-f73d-46c0-85e2-148252dd67cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 850B7378A933492A9A369A5078245B6A Ref B: MNZ221060609025 Ref C: 2025-06-02T21:52:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:11 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.6796.240302?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My42Nzk2LjI0MDMwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11615,Microsoft.Compute/GetVMImageFromLocation30Min;72257" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6c84abb8-5167-41e4-b822-65383cb52b13" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9de04606-1fa2-49c1-95f1-33d015842cc8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "10d83211-894a-4f9d-9026-6a99b93cb12d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215355Z:10d83211-894a-4f9d-9026-6a99b93cb12d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7D8C65D517F145429A951B0F55FA1F8C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:54 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6796.240302\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6796.240302\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My42ODk3LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3c35b6fb-87de-4b20-bea8-fe3ac6fb6738" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12187,Microsoft.Compute/GetVMImageFromLocation30Min;73184" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1108e0ae-ba62-4503-aa27-d0d9ae1636ac" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bdf7005d-5d37-4e77-abef-4caa1e067b97" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2d4d5c3c-094d-451e-a9de-0e1957906d93" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215212Z:2d4d5c3c-094d-451e-a9de-0e1957906d93" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A45176EC6DC1495BBFE55D41BA5BFE6E Ref B: MNZ221060618023 Ref C: 2025-06-02T21:52:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:11 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.6897.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My42ODk3LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11614,Microsoft.Compute/GetVMImageFromLocation30Min;72256" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "759c6ef5-9226-4df5-bb53-e32e0e272e2f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9f6d7609-8ac4-4d8b-85fc-3a27aba78f95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "aa1540bf-aae6-4fd1-88ab-2d732be044ea" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215355Z:aa1540bf-aae6-4fd1-88ab-2d732be044ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9E6B92CB6FF24AA1A8C984064BD6DFF4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:54 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6897.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6897.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My42OTgxLjI0MDUwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dc37b9bb-f38b-406c-9b12-80c4310054b9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12186,Microsoft.Compute/GetVMImageFromLocation30Min;73183" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a55bac9b-3f12-4dcd-a681-33f2d0c0dacb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/459b1b0f-4f83-40d1-bacd-0f07ff0063b4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ad8c59f3-b69d-4bb8-9b42-84088a8c8624" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215212Z:ad8c59f3-b69d-4bb8-9b42-84088a8c8624" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A7E75CEE31E14EF0AEE9F90BB89E34E7 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:52:12Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:12 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.6981.240504?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My42OTgxLjI0MDUwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11613,Microsoft.Compute/GetVMImageFromLocation30Min;72255" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "69b5f6bd-523f-4775-aded-2f86d6ad1951" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/294cd7ea-b1b2-4831-9bfb-7448b79e828a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "fc5d20d2-9d3c-4b2d-ac62-a26de9d51049" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215355Z:fc5d20d2-9d3c-4b2d-ac62-a26de9d51049" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3DE73338EB704395A9400D1B554BBA6B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:54 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.6981.240504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.6981.240504\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43MDcwLjI0MDYwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5ba81f87-86c3-4402-8e9f-70f5e7727a03" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12185,Microsoft.Compute/GetVMImageFromLocation30Min;73182" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "878a3bf2-5006-41bf-a729-61885bff6a45" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5d5d47b8-592c-4b2e-9b57-4302933ef735" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2c95665e-adb6-4415-a435-533b77e03004" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215213Z:2c95665e-adb6-4415-a435-533b77e03004" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4B0A33622D534F8EBA1142C91A263F31 Ref B: MNZ221060608039 Ref C: 2025-06-02T21:52:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:12 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7070.240608?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43MDcwLjI0MDYwOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11612,Microsoft.Compute/GetVMImageFromLocation30Min;72254" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c0064857-d089-4925-b2bb-458565f8ee70" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/305ed34a-4501-4f74-9196-e48acf5e6dd7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9f329548-7a89-4ecf-94fb-122ba462a452" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215355Z:9f329548-7a89-4ecf-94fb-122ba462a452" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E3D93D632CFB40FCB75E64B9015B16EA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:54 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7070.240608\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7070.240608\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43MTU5LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a889e3fa-844f-431e-897c-ce09cafca012" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12184,Microsoft.Compute/GetVMImageFromLocation30Min;73181" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "27a4227d-b94b-425b-897f-642dc4953535" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/67d581cb-703d-4006-a3b0-e52392316a13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fbc9c3d4-3787-4b60-be44-1ceed7c3122c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215213Z:fbc9c3d4-3787-4b60-be44-1ceed7c3122c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E705F3D34759434A87971E351F29B47D Ref B: MNZ221060619009 Ref C: 2025-06-02T21:52:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:12 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7159.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43MTU5LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11611,Microsoft.Compute/GetVMImageFromLocation30Min;72253" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d1d1569c-a30c-466a-bf4a-07087be8e47f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f0b1797f-0929-4e8b-852d-70c5d46169a6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d4a8127f-d919-4047-94d3-6b026fdb279f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215355Z:d4a8127f-d919-4047-94d3-6b026fdb279f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FCB8F3219A9E415492F09461C72D61F6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:54 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7159.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7159.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43MjU5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "acfab42f-e039-453f-a45c-135f0f33dcd0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12183,Microsoft.Compute/GetVMImageFromLocation30Min;73180" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3fc13cc9-0c3d-4ece-905a-fe31abd03fd5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4ce5307f-f889-427a-b654-a13436603683" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "666fd47e-95f3-44af-94cd-18171b97c7d7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215213Z:666fd47e-95f3-44af-94cd-18171b97c7d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 12C0AED6B5464635B40D423A8A44D2F0 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:52:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:12 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7259.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43MjU5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11610,Microsoft.Compute/GetVMImageFromLocation30Min;72252" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8fb089a8-509d-404c-8d4e-70a7ac2f755b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2bb72d1d-8662-462a-9356-bdb017b52dc8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "140c34ee-9543-4998-9bd0-f47bc4f48f1d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215355Z:140c34ee-9543-4998-9bd0-f47bc4f48f1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E4F56D5463874B19BA1E8868C3C087B4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:54 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7259.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7259.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43MzM2LjI0MDgzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a21ce164-862b-4b50-8b62-63651aae104c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12182,Microsoft.Compute/GetVMImageFromLocation30Min;73179" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "35965ca5-b235-4526-8895-7220ca1787be" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/13d5f460-e9b2-4526-967c-088faf444c5b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5e066006-3da9-4ad2-bbd7-d2cb0bdfebf3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215213Z:5e066006-3da9-4ad2-bbd7-d2cb0bdfebf3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 189CA981CF34441F9511F4221866CCA7 Ref B: MNZ221060619045 Ref C: 2025-06-02T21:52:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:13 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7336.240830?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43MzM2LjI0MDgzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11609,Microsoft.Compute/GetVMImageFromLocation30Min;72251" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ad4fb211-832a-4294-bf46-d8ef31bca7e2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b7ff348c-dc6f-41a0-8a81-4ab7f9d7b100" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "88900955-1e31-4834-90fa-6117288beb1d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215355Z:88900955-1e31-4834-90fa-6117288beb1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1227044330DB401F8DCA6333B1B2E814 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:54 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7336.240830\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7336.240830\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43NDI4LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c33dddd4-03e6-4832-9ce0-f18b1e8eceb2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12181,Microsoft.Compute/GetVMImageFromLocation30Min;73178" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "51dfb022-c137-468d-8836-ecea2ee1f040" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c50293d2-3010-406f-8525-af872579b9dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d0ae0be7-cff5-464b-badd-8c270e8eb3d7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215213Z:d0ae0be7-cff5-464b-badd-8c270e8eb3d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F4E776B7CBF247DB98B8A0E2392EDB54 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:52:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:12 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7428.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43NDI4LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11608,Microsoft.Compute/GetVMImageFromLocation30Min;72250" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2b4961a4-bdfb-49a1-88d6-71c3ac27fe55" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0e1a9429-82c9-4905-b9f2-4bec44e24311" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fc7a5127-f2e4-4365-a7e8-dcfa486942c8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215355Z:fc7a5127-f2e4-4365-a7e8-dcfa486942c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C914DAE4E5BC4CC9A4EBFF1DF1F4F1CA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:55 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7428.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7428.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43NTE1LjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e7347071-54e7-46f7-a1c9-1db02a2cb074" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12180,Microsoft.Compute/GetVMImageFromLocation30Min;73177" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c64b7045-9887-48be-843e-856425b974ce" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e110b2b4-e403-4b5f-b635-8084bdcb8d01" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0ece1f0d-d248-40d9-bd4b-e3fb83bd18c1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215213Z:0ece1f0d-d248-40d9-bd4b-e3fb83bd18c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B3A3A0A4632A44AC94A337DB01A69E8F Ref B: MNZ221060609037 Ref C: 2025-06-02T21:52:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:13 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43NTE1LjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11607,Microsoft.Compute/GetVMImageFromLocation30Min;72249" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3cf73eff-731a-4fce-8934-49765bf5084d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/63983545-b8c4-42d4-9b33-6435092b3c34" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1bf8b51e-3f3e-485c-88fd-e2d952e3172a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215355Z:1bf8b51e-3f3e-485c-88fd-e2d952e3172a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B1C5F19C528A4501A17FF01C9A2E0B08 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:55 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43NjA2LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bfb89c29-c3dd-4e9c-b5c4-39d9539a774e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12179,Microsoft.Compute/GetVMImageFromLocation30Min;73176" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "63310572-cc85-4d34-adaf-53ecf906cf83" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/88ad0f16-8960-4015-9092-92dc6170df65" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "01b1075a-98dd-4af0-99b7-87e3fcf25408" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215213Z:01b1075a-98dd-4af0-99b7-87e3fcf25408" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0CC9769A335247A3B081ED2EC409CA70 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:52:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:13 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43NjA2LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11606,Microsoft.Compute/GetVMImageFromLocation30Min;72248" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "86c067c0-fd76-4b1b-8168-dfb56380e7ae" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/07a1d738-6f04-4946-9b61-cd3fc5f13cff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "45ae80f3-bea2-4a1e-8217-dd4925635a70" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215355Z:45ae80f3-bea2-4a1e-8217-dd4925635a70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C355BF9DE680444D8271351090FE0813 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:55 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43Njk5LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5a75f9ad-654f-409d-a6a8-49f2fb32c338" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12178,Microsoft.Compute/GetVMImageFromLocation30Min;73175" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3a422ed0-2fcd-4d69-8670-4131918aacb0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3137a0fc-dcfd-49b6-baa2-4089089043cf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "36b2c760-cf3d-434b-bdc1-ef5ba919cd40" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215213Z:36b2c760-cf3d-434b-bdc1-ef5ba919cd40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD5706DDF0AE4E71835C3DC39C868BFE Ref B: MNZ221060619009 Ref C: 2025-06-02T21:52:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:13 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43Njk5LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11605,Microsoft.Compute/GetVMImageFromLocation30Min;72247" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b85195e0-c27d-48f5-b684-4fe657c9bfa4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ec2ee549-a36b-47c3-9cc4-dc6adef1f2cf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dd0b77bf-674c-49af-b08c-261ab78a7571" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215356Z:dd0b77bf-674c-49af-b08c-261ab78a7571" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8254A07D7B294C418A617A4391EBB901 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:55Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:55 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7785.250131?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43Nzg1LjI1MDEzMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cf6fa5f3-f747-42a0-916f-f6c4943cc3c0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12177,Microsoft.Compute/GetVMImageFromLocation30Min;73174" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c1e23f3d-7c52-4f53-b282-623422e92f04" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/686f6bf4-a5fa-404d-9bd8-b60492ca062c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b63c6424-5cb0-4e21-ac1e-41713981b395" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215214Z:b63c6424-5cb0-4e21-ac1e-41713981b395" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D4978A5014394594AEF6DB0AF5BE975E Ref B: MNZ221060610017 Ref C: 2025-06-02T21:52:13Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:13 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-10T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7785.250131\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7785.250131?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43Nzg1LjI1MDEzMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11604,Microsoft.Compute/GetVMImageFromLocation30Min;72246" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cf142bdf-a593-431d-a3d9-2427eb5f088e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3ec23d1b-7538-4fbf-83e8-bb218b4b5d04" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "fed7548c-4e75-4ae3-a1ca-9ecddbc23999" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215356Z:fed7548c-4e75-4ae3-a1ca-9ecddbc23999" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 00752175F63B4A9CB105973401F42E9F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:55 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-10T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250131\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7785.250131\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43ODc2LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b39107e3-e437-486c-b580-b4bca69ed7ab" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12176,Microsoft.Compute/GetVMImageFromLocation30Min;73173" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "77c2a608-c72d-4cd0-84e2-00c9922e8ba3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8fb7a786-252b-438c-8944-efc118c8f1a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "55c7be82-72e9-45e6-8cff-a8a0f900425f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215214Z:55c7be82-72e9-45e6-8cff-a8a0f900425f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 813332134DD94FB2A185060293F45F24 Ref B: MNZ221060610009 Ref C: 2025-06-02T21:52:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:14 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43ODc2LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11603,Microsoft.Compute/GetVMImageFromLocation30Min;72245" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "91e07256-217b-4363-927b-6ae3e466ac21" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ddd8a36e-880c-46c1-8853-c5f29910f2d7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "9a600d4d-6d45-4819-9f8d-b0561c05102d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215356Z:9a600d4d-6d45-4819-9f8d-b0561c05102d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7359DC3B006D43598F8F9E4F583925CE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:55 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43OTczLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2f7bafce-f171-4383-ba5e-1a6478de5fe0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12175,Microsoft.Compute/GetVMImageFromLocation30Min;73172" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "93c8593d-71c9-4485-b266-0e2145b55719" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b46db65e-db3e-439d-a99b-8b3fee90ec8f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "6adc93e6-6b01-45b4-9e81-afcb10e506bb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215214Z:6adc93e6-6b01-45b4-9e81-afcb10e506bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D72BBF2B1C8C4914A4C54DD719D2DD76 Ref B: MNZ221060608049 Ref C: 2025-06-02T21:52:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:13 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My43OTczLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11602,Microsoft.Compute/GetVMImageFromLocation30Min;72244" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ea461695-8a34-46e3-9332-7a39cb4bd8bb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f52593d1-589c-4ca9-b65b-b36eec5234ad" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "1fe25724-61d7-4eba-ae2b-eba1c9fee8f9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215356Z:1fe25724-61d7-4eba-ae2b-eba1c9fee8f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 82452BF66D074E30998D5C95A6326FEE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:55 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My44MDY2LjI1MDUxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5388acfd-534f-44ef-8e5b-feccea846efe" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12174,Microsoft.Compute/GetVMImageFromLocation30Min;73171" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c1fdbe8c-b63b-4002-8a62-e9949bdd3e0b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7a365ed0-4381-4c4f-9478-f3e6edb90e72" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a9ae2f05-46a6-4917-b266-b436b9bd0c79" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215214Z:a9ae2f05-46a6-4917-b266-b436b9bd0c79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 87DCC28A6D9148F0A7F83C97EC223BF4 Ref B: MNZ221060609029 Ref C: 2025-06-02T21:52:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:13 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS92ZXJzaW9ucy8xNDM5My44MDY2LjI1MDUxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11601,Microsoft.Compute/GetVMImageFromLocation30Min;72243" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "35bccf34-e457-4dff-a9f7-4e51a7f9a18b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9b850810-64e3-4910-b80d-2d76ec62c6d9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "e4ab472c-7bdd-4469-9b2f-72615a61afa8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215356Z:e4ab472c-7bdd-4469-9b2f-72615a61afa8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 249D4DDDC9794660AF7989737B464987 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:55 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c8cb11a5-12bb-4ebb-bba2-bb24552afd59" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15912,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43906" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9b65677d-b02c-4589-8fe4-b759a8f26165" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/056105c7-d3b8-4971-8918-69dd5086207d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6c8c9f79-8eca-4506-887a-c47e95aa7a7b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215214Z:6c8c9f79-8eca-4506-887a-c47e95aa7a7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4CCB0BE2FD484928AD657623BF3B2DBF Ref B: MNZ221060610011 Ref C: 2025-06-02T21:52:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:13 GMT" + ], + "Content-Length": [ + "4254" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3204.1909070001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3204.1909070001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3274.1910061629\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3274.1910061629\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3326.1911120150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3326.1911120150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3384.1912042333\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3384.1912042333\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3443.2001090113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3443.2001090113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3504.2002070914\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3504.2002070914\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3564.2003072353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3564.2003072353\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3630.2004101604\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3630.2004101604\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3686.2005061700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3686.2005061700\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3750.2006031549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3750.2006031549\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3808.2007101707\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3808.2007101707\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3866.2008081933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3866.2008081933\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3930.2009041537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3930.2009041537\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15851,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43805" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4e91ab10-43e3-4e1d-b273-2c6296d869c7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4d281eca-4719-4ba5-8ade-85db67cf59e4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "d84f1010-e4a0-4e6c-9789-37e4d7d87bdb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215356Z:d84f1010-e4a0-4e6c-9789-37e4d7d87bdb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7871B8FA847F4288B24695AE8ED44FBF Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:55 GMT" + ], + "Content-Length": [ + "4254" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3204.1909070001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3204.1909070001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3274.1910061629\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3274.1910061629\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3326.1911120150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3326.1911120150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3384.1912042333\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3384.1912042333\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3443.2001090113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3443.2001090113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3504.2002070914\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3504.2002070914\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3564.2003072353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3564.2003072353\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3630.2004101604\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3630.2004101604\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3686.2005061700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3686.2005061700\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3750.2006031549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3750.2006031549\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3808.2007101707\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3808.2007101707\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3866.2008081933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3866.2008081933\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3930.2009041537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3930.2009041537\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3204.1909070001?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzIwNC4xOTA5MDcwMDAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a76364c6-616a-475b-be0a-7f02f2850611" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12173,Microsoft.Compute/GetVMImageFromLocation30Min;73170" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fedcfeeb-fd4e-4292-946e-715532346a15" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6e2a5356-ec35-40dc-a5bb-bba13a3eee33" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a3e66a68-6742-4f5d-a3e8-8188796e3126" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215214Z:a3e66a68-6742-4f5d-a3e8-8188796e3126" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 63B2F6D96F3A4B40B07F3A33A74BD360 Ref B: MNZ221060609027 Ref C: 2025-06-02T21:52:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:14 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3204.1909070001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3204.1909070001\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3204.1909070001?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzIwNC4xOTA5MDcwMDAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11600,Microsoft.Compute/GetVMImageFromLocation30Min;72242" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b462f374-7005-45f3-8b4f-c6321763baf3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e4218051-099f-4a3c-934b-34318a3718e5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "de4eff71-fa53-43c5-93ee-a16b80147daa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215356Z:de4eff71-fa53-43c5-93ee-a16b80147daa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5D91542D734C431291CA64E9370F70DE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:55 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3204.1909070001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3204.1909070001\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3274.1910061629?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzI3NC4xOTEwMDYxNjI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7b5b3145-4128-4d14-9c9d-71b7917cc087" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12172,Microsoft.Compute/GetVMImageFromLocation30Min;73169" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5a05aa5e-dafc-4ce0-82d8-cc77d1bc7979" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/241a9c35-ffdd-47e4-abc3-cc1f9c302204" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d069e929-d26c-4bda-9b07-0821d2186642" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215214Z:d069e929-d26c-4bda-9b07-0821d2186642" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 88837089CD234C8B8CF2E3FCAF289BF4 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:52:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:14 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3274.1910061629\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3274.1910061629\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3274.1910061629?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzI3NC4xOTEwMDYxNjI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11599,Microsoft.Compute/GetVMImageFromLocation30Min;72241" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0a46ba17-9044-4332-a12c-c9e778991933" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8b9220f7-ef70-48cb-972a-cc3f4653f77a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "a1770888-19e0-444f-b29f-4efd72135707" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215356Z:a1770888-19e0-444f-b29f-4efd72135707" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FA301DB4A2964025B4ED8DB0C5CEC28F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:55 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3274.1910061629\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3274.1910061629\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3326.1911120150?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzMyNi4xOTExMTIwMTUwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e89f22a5-6715-424a-8879-d7866f9f86a5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12171,Microsoft.Compute/GetVMImageFromLocation30Min;73168" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ea8da22b-6d30-4602-9e06-2688c29bb7d0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e00ff9e1-3f58-45bb-bc94-3a763a6319a8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cac0ec92-fd73-4395-ada9-922a6b21f0e2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215215Z:cac0ec92-fd73-4395-ada9-922a6b21f0e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FA025F17CBA24E7ABA2A2096CE57A320 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:14Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:14 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3326.1911120150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3326.1911120150\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3326.1911120150?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzMyNi4xOTExMTIwMTUwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11598,Microsoft.Compute/GetVMImageFromLocation30Min;72240" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "213cdabd-5317-45df-9e1d-3b2730909b6a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7d1144f4-8e19-4039-a6fe-55b86fe13be9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a0b8be10-b137-4c1e-a186-c520514b7255" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215356Z:a0b8be10-b137-4c1e-a186-c520514b7255" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 241816B0E52A4B34AF10247EAF0BA055 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:55 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3326.1911120150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3326.1911120150\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3384.1912042333?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzM4NC4xOTEyMDQyMzMzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "10e69509-6a73-425d-8ec1-58621d1b02e5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12170,Microsoft.Compute/GetVMImageFromLocation30Min;73167" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c767d7bd-1861-4fc1-868f-86ff80f0df0f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0fb80857-c9a8-4e76-a0d6-17672122ebee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ca59cd59-f792-4d0d-8573-0fba5b9fc29c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215215Z:ca59cd59-f792-4d0d-8573-0fba5b9fc29c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7BF830B8990F4D9F8CFA8D52AF78B23C Ref B: MNZ221060619035 Ref C: 2025-06-02T21:52:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:14 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3384.1912042333\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3384.1912042333\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3384.1912042333?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzM4NC4xOTEyMDQyMzMzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11597,Microsoft.Compute/GetVMImageFromLocation30Min;72239" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "289653ed-376d-4b65-8ac6-eef84bb5a4a4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b821a032-f423-4ad2-98d0-39b4adb7bdbd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9e5a5c48-a08c-4806-adb5-d5b8b2e88e29" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215356Z:9e5a5c48-a08c-4806-adb5-d5b8b2e88e29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 98D0AE3BABDA41B193FAAFFB5876F5CB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:55 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3384.1912042333\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3384.1912042333\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3443.2001090113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzQ0My4yMDAxMDkwMTEzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b69e287f-cad8-4af7-8337-649dd497ddb7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12169,Microsoft.Compute/GetVMImageFromLocation30Min;73166" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "69bf972a-7c2a-4b06-b7cc-4c98bbd2684e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/17bfaf0a-6721-44fc-8aef-6809884ad107" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4e0d6dfb-1270-49f4-973b-667262a56d68" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215215Z:4e0d6dfb-1270-49f4-973b-667262a56d68" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 47A266CFDAA64030AAF5C3CCAF1E67D1 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:52:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:15 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3443.2001090113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3443.2001090113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3443.2001090113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzQ0My4yMDAxMDkwMTEzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11596,Microsoft.Compute/GetVMImageFromLocation30Min;72238" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0138f6bb-ffcd-45ee-acec-c5664a017ac0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/151deeef-2d09-4a20-af24-fee7fe460786" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c81abd38-cb99-44cb-b2a1-dec6b9c912a4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215356Z:c81abd38-cb99-44cb-b2a1-dec6b9c912a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1C8F89D58D77499DB3301FB4E4E21FE7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3443.2001090113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3443.2001090113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3504.2002070914?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzUwNC4yMDAyMDcwOTE0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c09bdfb8-b8ed-4980-b00f-026d995ec3db" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12168,Microsoft.Compute/GetVMImageFromLocation30Min;73165" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "71abc323-05ec-4e18-bfd4-06317995abb3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a1ab9a30-8049-40f1-bb38-752927f13596" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "17714aeb-e59f-4cdb-b841-dbb5d01e9a82" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215215Z:17714aeb-e59f-4cdb-b841-dbb5d01e9a82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 23F4203EF02D4DB6B5EA7EDD6695C7E8 Ref B: MNZ221060619029 Ref C: 2025-06-02T21:52:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:15 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3504.2002070914\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3504.2002070914\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3504.2002070914?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzUwNC4yMDAyMDcwOTE0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11595,Microsoft.Compute/GetVMImageFromLocation30Min;72237" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "78be6c0c-ce8d-408b-b3f0-2db3f37ff454" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f4eb8a32-887f-43ad-9963-6969941b37df" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "66dd8043-ee31-480e-8e76-60688e52a5ce" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215356Z:66dd8043-ee31-480e-8e76-60688e52a5ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1AFD988F789E49A182F87CF363D95182 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3504.2002070914\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3504.2002070914\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3564.2003072353?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzU2NC4yMDAzMDcyMzUzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "473f6916-2f8a-4056-a78c-725dc5853054" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12167,Microsoft.Compute/GetVMImageFromLocation30Min;73164" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "117aa7aa-9a94-49a5-996a-15ea5fdfc1bc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/34f18691-5504-418e-8b7c-a07966e07a28" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1044617a-292e-488b-8641-39147fe6b521" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215215Z:1044617a-292e-488b-8641-39147fe6b521" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B059CF869FFF4F2CBE43503673157611 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:52:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:15 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3564.2003072353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3564.2003072353\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3564.2003072353?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzU2NC4yMDAzMDcyMzUzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11594,Microsoft.Compute/GetVMImageFromLocation30Min;72236" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4064a9f7-4110-41e0-8b95-23b0768aaba8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/510679e1-d3ff-4d02-8bb3-fa72546476d8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f43e6c27-c8ee-496c-b777-465b1d06db8a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215356Z:f43e6c27-c8ee-496c-b777-465b1d06db8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F74A86CA754C4CCCA40583764B9C08E2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3564.2003072353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3564.2003072353\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3630.2004101604?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzYzMC4yMDA0MTAxNjA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "265a97df-6076-4899-b42e-180d714ba97d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12166,Microsoft.Compute/GetVMImageFromLocation30Min;73163" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ebad05e8-629a-4d14-b761-6811873221d7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b74c176e-a3f7-475e-b334-f192a7bc544c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "32a8fddc-42ae-4e3a-96ee-aceeb2611b90" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215215Z:32a8fddc-42ae-4e3a-96ee-aceeb2611b90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 64760455047C4547BC26D31CFFD46059 Ref B: MNZ221060608031 Ref C: 2025-06-02T21:52:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:15 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3630.2004101604\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3630.2004101604\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3630.2004101604?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzYzMC4yMDA0MTAxNjA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11593,Microsoft.Compute/GetVMImageFromLocation30Min;72235" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4557d451-7533-4a6b-a604-50736051f55a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/21124628-c82c-4692-bd29-3ae45f5ccf28" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4647d368-dc31-4ce2-a13e-03b882c21639" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:4647d368-dc31-4ce2-a13e-03b882c21639" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5876D049C0714B85A3E6B23ACEC2AB9B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:56Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3630.2004101604\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3630.2004101604\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3686.2005061700?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzY4Ni4yMDA1MDYxNzAwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b3d0099c-88f9-4b82-84a5-efb5166609e2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12165,Microsoft.Compute/GetVMImageFromLocation30Min;73162" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ed940c34-15b5-4339-92bc-f1934c3f13c5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4fc04a1e-0f5a-4509-8382-56c05b293d27" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cbfb6baf-7699-4577-b206-2ba1ca440e83" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215215Z:cbfb6baf-7699-4577-b206-2ba1ca440e83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5776F65AC6CC4C0C99C10C4C4DF7ADE3 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:52:15Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:15 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3686.2005061700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3686.2005061700\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3686.2005061700?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzY4Ni4yMDA1MDYxNzAwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11592,Microsoft.Compute/GetVMImageFromLocation30Min;72234" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3db11a49-f021-4f66-b3e5-e53913660a80" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/082c90b6-0bad-4a19-ad36-3ba12d9f1c23" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "238f3082-7f6d-4ac5-9d0b-c3f489d18ae9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:238f3082-7f6d-4ac5-9d0b-c3f489d18ae9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 13DF8A869E16452B98DA77CCDF43DB1C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3686.2005061700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3686.2005061700\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3750.2006031549?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzc1MC4yMDA2MDMxNTQ5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "575f1f15-564d-473c-8a21-81714f8080b0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12164,Microsoft.Compute/GetVMImageFromLocation30Min;73161" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2854a0ef-1d89-4723-8dab-daf65f49cefc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2832ad50-16ea-4436-9d61-d4f6dd013321" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c49932dc-040f-47d6-8e6a-3382edc2a60c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215216Z:c49932dc-040f-47d6-8e6a-3382edc2a60c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E2E685548D8A443D8B97373EA1AA9628 Ref B: MNZ221060618037 Ref C: 2025-06-02T21:52:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:15 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3750.2006031549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3750.2006031549\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3750.2006031549?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzc1MC4yMDA2MDMxNTQ5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11591,Microsoft.Compute/GetVMImageFromLocation30Min;72233" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2e079a5c-d449-4fb0-9536-5b246082f21f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/375e41e0-3e68-40be-a404-176a4305408c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c7dd7eeb-724f-4d17-901a-4d81f4f4a1e7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:c7dd7eeb-724f-4d17-901a-4d81f4f4a1e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0746AB17F72B46A3A0E960BA39253253 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3750.2006031549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3750.2006031549\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3808.2007101707?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzgwOC4yMDA3MTAxNzA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "81d77539-099a-4c75-980b-fee28b322062" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12163,Microsoft.Compute/GetVMImageFromLocation30Min;73160" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7f024959-45b2-4f80-a1ee-ded375e00cba" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/687f193c-cfdc-4431-81b3-64b700a413cb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "cf4177b2-4cee-4978-a12c-2dd0ef8f1019" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215216Z:cf4177b2-4cee-4978-a12c-2dd0ef8f1019" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BAC10001C44849F18E52B93DFA81D81C Ref B: MNZ221060619053 Ref C: 2025-06-02T21:52:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:15 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3808.2007101707\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3808.2007101707\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3808.2007101707?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzgwOC4yMDA3MTAxNzA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11590,Microsoft.Compute/GetVMImageFromLocation30Min;72232" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5dd4482c-dd18-4990-b8ee-a25de80739df" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/17218dbd-ff90-4186-a130-48f8f61001e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "4f5b5fd0-976a-4a27-882a-654db6f7cba4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:4f5b5fd0-976a-4a27-882a-654db6f7cba4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 15FDD1D784C646B3B541404E1D7EF3DF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3808.2007101707\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3808.2007101707\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3866.2008081933?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzg2Ni4yMDA4MDgxOTMzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5ad22b70-c3e5-4875-915e-68166efb1a54" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12162,Microsoft.Compute/GetVMImageFromLocation30Min;73159" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a3dde30f-3a01-4d6f-962e-280364c417b2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3cc35906-9bc5-4070-988f-4a5f43dc9e62" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "af4d374f-a7bc-4593-bc81-50321b011269" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215216Z:af4d374f-a7bc-4593-bc81-50321b011269" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 88DA39418E6246ECAC463A3D53419829 Ref B: MNZ221060618027 Ref C: 2025-06-02T21:52:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:15 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3866.2008081933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3866.2008081933\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3866.2008081933?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzg2Ni4yMDA4MDgxOTMzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11589,Microsoft.Compute/GetVMImageFromLocation30Min;72231" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7198f993-3d6c-4f26-bfbe-926ed8165e16" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4fd77a94-c4b6-4b94-8458-022b5afd09f6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "0d088c91-ada4-4082-baf9-1abf34008363" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:0d088c91-ada4-4082-baf9-1abf34008363" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 781D8840A89A4D3F97000A814C4E51B4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3866.2008081933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3866.2008081933\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3930.2009041537?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzkzMC4yMDA5MDQxNTM3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e531f021-e069-422c-a561-704b516dc0b7" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12161,Microsoft.Compute/GetVMImageFromLocation30Min;73158" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6a47ff86-94de-4f39-87b3-c70136d477fe" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0a5e039f-dd9e-4148-9c08-fb0543fd6e45" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "05997bf6-a51c-442d-afc5-edf26f5fe20b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215216Z:05997bf6-a51c-442d-afc5-edf26f5fe20b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AC0377E1790A4206A9DBAFD48D258B74 Ref B: MNZ221060608051 Ref C: 2025-06-02T21:52:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:15 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3930.2009041537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3930.2009041537\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-1/versions/14393.3930.2009041537?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTQzOTMuMzkzMC4yMDA5MDQxNTM3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11588,Microsoft.Compute/GetVMImageFromLocation30Min;72230" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b320b7d1-9acf-42b5-898a-f78cab496cb1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a8aeec68-fc03-4dd1-9595-ce49b6d8dfaf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "0dbc2926-567a-4040-bfec-296b125965d3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:0dbc2926-567a-4040-bfec-296b125965d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0D5DB8AFE63440019E8E351769F5CADE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3930.2009041537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-1/Versions/14393.3930.2009041537\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "15b0aac7-81dd-40c2-a636-fc76ff878810" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15911,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43905" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fe78b157-b1c4-43b0-a814-584a5fe382ed" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/25802886-3b14-4cf1-9881-028520dc1675" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "840d9403-e983-4540-a9be-fb5fcfeb9306" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215216Z:840d9403-e983-4540-a9be-fb5fcfeb9306" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 34328CA44C6646E295091297BA73B0C2 Ref B: MNZ221060618027 Ref C: 2025-06-02T21:52:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:15 GMT" + ], + "Content-Length": [ + "4254" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3204.1909070001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3204.1909070001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3274.1910061629\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3274.1910061629\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3326.1911120150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3326.1911120150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3384.1912042333\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3384.1912042333\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3443.2001090113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3443.2001090113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3504.2002070914\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3504.2002070914\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3564.2003072353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3564.2003072353\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3630.2004101604\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3630.2004101604\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3686.2005061700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3686.2005061700\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3750.2006031549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3750.2006031549\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3808.2007101707\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3808.2007101707\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3866.2008081933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3866.2008081933\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3930.2009041537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3930.2009041537\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15850,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43804" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "dde7f453-9b54-459c-adbe-a72d8677d3b0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9ab4c072-5913-427c-8a8c-312a77d82359" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a14dc4a1-8019-4c92-900a-b0b8af04d159" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215357Z:a14dc4a1-8019-4c92-900a-b0b8af04d159" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4F03B56328504ACBB782221BF7363621 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "4254" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3204.1909070001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3204.1909070001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3274.1910061629\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3274.1910061629\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3326.1911120150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3326.1911120150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3384.1912042333\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3384.1912042333\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3443.2001090113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3443.2001090113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3504.2002070914\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3504.2002070914\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3564.2003072353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3564.2003072353\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3630.2004101604\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3630.2004101604\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3686.2005061700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3686.2005061700\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3750.2006031549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3750.2006031549\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3808.2007101707\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3808.2007101707\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3866.2008081933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3866.2008081933\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3930.2009041537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3930.2009041537\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3204.1909070001?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzIwNC4xOTA5MDcwMDAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f4efc6f1-792f-4d9d-9444-c22f05afbf57" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12160,Microsoft.Compute/GetVMImageFromLocation30Min;73157" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b04f58ca-d074-452f-b2fa-32d26c6a2a28" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9764b746-72aa-4971-ae91-c31440a29813" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9c5a9880-ebde-4e52-b3b2-b18aa1d9eb63" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215216Z:9c5a9880-ebde-4e52-b3b2-b18aa1d9eb63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 18650F06E48D4A1CB0C355DA72315484 Ref B: MNZ221060609021 Ref C: 2025-06-02T21:52:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:16 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3204.1909070001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3204.1909070001\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3204.1909070001?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzIwNC4xOTA5MDcwMDAxP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11587,Microsoft.Compute/GetVMImageFromLocation30Min;72229" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e44205ee-8302-499b-a4d7-5d17b102f654" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/203595ee-fbd5-4175-8962-a5287470e8c5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "7f4b344b-d75b-4bd5-91cd-cbf5b289771c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:7f4b344b-d75b-4bd5-91cd-cbf5b289771c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 48B01EDFD60242C4A6176DE77A8A3580 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3204.1909070001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3204.1909070001\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3274.1910061629?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzI3NC4xOTEwMDYxNjI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "30e08b74-9931-4162-ac8e-173b55f975c4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12159,Microsoft.Compute/GetVMImageFromLocation30Min;73156" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ea048ed4-eaaf-4444-8406-c56e5082ef05" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9a3ce2ed-715e-4f5f-bd93-8ebdf3467582" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "79637931-aecd-4ff5-965c-12485e3af7fd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215217Z:79637931-aecd-4ff5-965c-12485e3af7fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 45DADA4A01294C79A9A554698EFA5018 Ref B: MNZ221060609027 Ref C: 2025-06-02T21:52:16Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:16 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3274.1910061629\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3274.1910061629\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3274.1910061629?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzI3NC4xOTEwMDYxNjI5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11586,Microsoft.Compute/GetVMImageFromLocation30Min;72228" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ca7604ac-b625-4e78-b305-1959e1fbae58" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d4b19401-112c-41ea-9d69-a3bb9fad991c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "81f49779-ec72-43e4-8e4b-520d58b1e66d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:81f49779-ec72-43e4-8e4b-520d58b1e66d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 59CEA97508B64C0D88EACEEBB6D06AE5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3274.1910061629\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3274.1910061629\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3326.1911120150?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzMyNi4xOTExMTIwMTUwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "89f35feb-8acd-4500-b2dc-d06f15194fd0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12158,Microsoft.Compute/GetVMImageFromLocation30Min;73155" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5fa928f3-405f-4432-8302-591527f6826f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a296a11a-3929-4b55-bbb7-78a3ace42a5b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1d327881-1124-4de3-8553-c3c6c027975c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215217Z:1d327881-1124-4de3-8553-c3c6c027975c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 92A8CE9C792A415D95235E3E174A6090 Ref B: MNZ221060610047 Ref C: 2025-06-02T21:52:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:16 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3326.1911120150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3326.1911120150\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3326.1911120150?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzMyNi4xOTExMTIwMTUwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11585,Microsoft.Compute/GetVMImageFromLocation30Min;72227" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cd905edd-45a8-4ebb-a148-5dde687ab8d6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d86489b9-f977-4237-a383-2de28c8f23f6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "9a6fb314-0b76-401e-8124-36a37d627837" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:9a6fb314-0b76-401e-8124-36a37d627837" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC2C047A85094441AE55F1279B9DEA79 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3326.1911120150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3326.1911120150\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3384.1912042333?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzM4NC4xOTEyMDQyMzMzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7897ec32-19b7-4964-8372-428690ffc5d5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12157,Microsoft.Compute/GetVMImageFromLocation30Min;73154" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bd9009ad-b7ca-49af-ada2-e1e8eaafdc37" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a5c15b36-af04-4988-938f-d4af22478062" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "32a37138-c344-45c8-95f4-7607109254b0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215217Z:32a37138-c344-45c8-95f4-7607109254b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4270577D80DF4090A710ECF0793783E7 Ref B: MNZ221060618021 Ref C: 2025-06-02T21:52:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:17 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3384.1912042333\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3384.1912042333\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3384.1912042333?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzM4NC4xOTEyMDQyMzMzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11584,Microsoft.Compute/GetVMImageFromLocation30Min;72226" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "278791d2-5f19-42a0-99e2-fff01ed09695" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f6a5019e-0dbe-4c1d-8b9d-956f1a0776b4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5a0e044d-ac11-4f71-b90e-75faafb8a4f4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:5a0e044d-ac11-4f71-b90e-75faafb8a4f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A7B66D18B0DA4601BC67EF55D3CD7D59 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:56 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3384.1912042333\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3384.1912042333\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3443.2001090113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzQ0My4yMDAxMDkwMTEzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6c22f2fc-b861-45c6-a9e0-13e8343ca09d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12156,Microsoft.Compute/GetVMImageFromLocation30Min;73153" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9858f600-89be-42e7-8509-932229eae767" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/569a0739-9fb5-4080-88ac-c356d83994f5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7fdf5662-6820-4f71-9d3c-834ca634ed2a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215217Z:7fdf5662-6820-4f71-9d3c-834ca634ed2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1EE43B6A6B8A45769321EF1839429784 Ref B: MNZ221060619029 Ref C: 2025-06-02T21:52:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:17 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3443.2001090113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3443.2001090113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3443.2001090113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzQ0My4yMDAxMDkwMTEzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11583,Microsoft.Compute/GetVMImageFromLocation30Min;72225" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0cdac37e-8b52-4d64-b533-5e6acdad090c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/375fa0d9-2944-47a3-b2a1-43d28eac1726" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "5415afca-91c1-4de4-beb2-6673503b2cf8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:5415afca-91c1-4de4-beb2-6673503b2cf8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 75F1ACB1BF764056B1300A48B9BDAAE9 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3443.2001090113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3443.2001090113\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3504.2002070914?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzUwNC4yMDAyMDcwOTE0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ca9a49a5-9491-40e4-9a11-e1512daf3be3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12155,Microsoft.Compute/GetVMImageFromLocation30Min;73152" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7e96c459-1825-4049-a3f4-c36f01f80741" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b28b0b43-be1b-42e4-9e48-822df34f2e81" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "408a994d-c3a3-408b-8249-bc5af490e68c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215218Z:408a994d-c3a3-408b-8249-bc5af490e68c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 05EDFE3AECDC4CDEA1CD579084D6830E Ref B: MNZ221060609053 Ref C: 2025-06-02T21:52:17Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:17 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3504.2002070914\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3504.2002070914\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3504.2002070914?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzUwNC4yMDAyMDcwOTE0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11582,Microsoft.Compute/GetVMImageFromLocation30Min;72224" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2e06c6f5-ae86-4b8c-b334-b1b928fa25ea" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0bd1bbff-a08b-4ac6-97e8-881d865f1d07" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "23d1837a-8ca2-4ccd-b460-fd92e228f27f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:23d1837a-8ca2-4ccd-b460-fd92e228f27f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 74192EAB53CE45929D2125F3099D526F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3504.2002070914\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3504.2002070914\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3564.2003072353?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzU2NC4yMDAzMDcyMzUzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fb3f93a4-a132-4b6c-86b7-14e3c1287a07" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12154,Microsoft.Compute/GetVMImageFromLocation30Min;73151" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "84d03a46-517e-41ad-a6a0-22f869ca2cd2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6b5fe593-d963-4e01-b882-1ac8049a27bd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b427a46c-0bba-4764-8022-d11eca429f6b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215218Z:b427a46c-0bba-4764-8022-d11eca429f6b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6B0999FFC58C4A48B40FCCDFEE43F569 Ref B: MNZ221060609035 Ref C: 2025-06-02T21:52:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:17 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3564.2003072353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3564.2003072353\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3564.2003072353?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzU2NC4yMDAzMDcyMzUzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11581,Microsoft.Compute/GetVMImageFromLocation30Min;72223" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2d56c217-b6d6-4392-84ed-0de0cbb0df38" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a6863d5b-6a45-4e65-9b93-1cb5cb97d9bf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "bcf14db1-0cfd-4c8c-9a13-5b2bc3b65d0f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:bcf14db1-0cfd-4c8c-9a13-5b2bc3b65d0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D5931BD9908D46138894C667794E452D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3564.2003072353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3564.2003072353\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3630.2004101604?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzYzMC4yMDA0MTAxNjA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "eba8ce36-6f88-4179-8965-151ee2803e6e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12153,Microsoft.Compute/GetVMImageFromLocation30Min;73150" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6831b656-d9cf-4dd4-968c-46ba76ce97d6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a84c8145-591d-45df-a5c9-ff2f9c228833" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b5c750da-49a3-438f-aa8a-aab214209873" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215218Z:b5c750da-49a3-438f-aa8a-aab214209873" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 87E8E2A765F5469EAFBE85A450B0A2D6 Ref B: MNZ221060618039 Ref C: 2025-06-02T21:52:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:17 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3630.2004101604\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3630.2004101604\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3630.2004101604?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzYzMC4yMDA0MTAxNjA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11580,Microsoft.Compute/GetVMImageFromLocation30Min;72222" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a1ab81f1-42da-4313-a168-1a583c7013a2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/56c99bb9-d52c-4d12-b9a7-27ec8ae06a1f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "0f2e5196-045d-447d-ae44-06dfdfec3101" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215357Z:0f2e5196-045d-447d-ae44-06dfdfec3101" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 467BEBA1F70E454085823EE2EC13AC55 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:57Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3630.2004101604\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3630.2004101604\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3686.2005061700?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzY4Ni4yMDA1MDYxNzAwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "df5cdcf4-1a57-45fc-9508-f200632f58a4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12152,Microsoft.Compute/GetVMImageFromLocation30Min;73149" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3615e649-462c-4b8d-8d2e-0fec40569936" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2aff4518-8487-451e-a57e-a682eb063341" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dfca7451-bbfb-49ae-856b-67ed5039e2d7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215218Z:dfca7451-bbfb-49ae-856b-67ed5039e2d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F770167C1BA418DB870F1427CD2788A Ref B: MNZ221060618031 Ref C: 2025-06-02T21:52:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:17 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3686.2005061700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3686.2005061700\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3686.2005061700?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzY4Ni4yMDA1MDYxNzAwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11579,Microsoft.Compute/GetVMImageFromLocation30Min;72221" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c952a242-d63b-4612-bbda-f12fe150ad65" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0d053f01-8ba1-4021-b1e8-3e690728ae58" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "bbb8e852-ef5c-42ee-99a6-269675f555e9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215358Z:bbb8e852-ef5c-42ee-99a6-269675f555e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D45CD5D0F9CA474BBD3235DF623B2ED1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3686.2005061700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3686.2005061700\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3750.2006031549?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzc1MC4yMDA2MDMxNTQ5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5e43b94c-41c2-4289-a1fa-4bf4d9809b79" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12151,Microsoft.Compute/GetVMImageFromLocation30Min;73148" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "95cbca96-4a26-4543-884f-482d3a425df0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/278c9e57-697f-4c84-9f62-a2d98cf06bc8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "17625ddb-9e39-4bfa-af8d-e64f6e119dd9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215218Z:17625ddb-9e39-4bfa-af8d-e64f6e119dd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E4C5D98E51C94BE6B8D8746F423A30F9 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:52:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:17 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3750.2006031549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3750.2006031549\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3750.2006031549?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzc1MC4yMDA2MDMxNTQ5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11578,Microsoft.Compute/GetVMImageFromLocation30Min;72220" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6c403980-823a-45b8-8748-4ec71f93c737" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e126680f-5b43-4b7f-8751-c4ac74e75ed2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "5f4d8e71-a1ae-42ca-9baa-3426b78b2578" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215358Z:5f4d8e71-a1ae-42ca-9baa-3426b78b2578" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 57854B88CC0F401D847EE150ACDDBAF7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3750.2006031549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3750.2006031549\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3808.2007101707?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzgwOC4yMDA3MTAxNzA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5a60cead-4878-4656-8e2d-f0a99c4eece8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12150,Microsoft.Compute/GetVMImageFromLocation30Min;73147" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d727aca8-fd29-47e3-b165-41576d0708f1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9bda47b7-2399-45ed-b307-33d409ef84bb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fd80f639-7c37-460d-af64-f8609a88e320" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215218Z:fd80f639-7c37-460d-af64-f8609a88e320" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F277ABB4B3704416980DC4B20745A0C8 Ref B: MNZ221060609031 Ref C: 2025-06-02T21:52:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:18 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3808.2007101707\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3808.2007101707\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3808.2007101707?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzgwOC4yMDA3MTAxNzA3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11577,Microsoft.Compute/GetVMImageFromLocation30Min;72219" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fe038219-f07b-4e3a-ad34-7b325df7775b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d48e445b-55e1-4765-9283-639d07e7052f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "26dbfa1e-c1cf-48d3-8bb1-05546a4b2468" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215358Z:26dbfa1e-c1cf-48d3-8bb1-05546a4b2468" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 069924E863724F3FBADBBFB8CC706245 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3808.2007101707\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3808.2007101707\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3866.2008081933?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzg2Ni4yMDA4MDgxOTMzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3435e8e9-e06f-4f17-b933-9c15c6f942a9" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12149,Microsoft.Compute/GetVMImageFromLocation30Min;73146" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ea4c8793-a754-4264-ad01-b548f0adae5b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dc73c77e-66cc-4680-ae90-c1cf42b4a051" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0b5579c1-06fa-4bfa-bf01-c38ca3eca9ea" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215218Z:0b5579c1-06fa-4bfa-bf01-c38ca3eca9ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7DDF89F96F6E459183A4B882F3879FC7 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:52:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:18 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3866.2008081933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3866.2008081933\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3866.2008081933?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzg2Ni4yMDA4MDgxOTMzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11576,Microsoft.Compute/GetVMImageFromLocation30Min;72218" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "34236a0f-ce92-406c-8bef-535d9a9df996" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b131db08-38b7-4b13-8f0f-b8a1b9f52108" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "231b821f-e232-46fc-b591-8729cd42c796" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215358Z:231b821f-e232-46fc-b591-8729cd42c796" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 042236CF9ACD4A658E074103EEB1D8CF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3866.2008081933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3866.2008081933\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3930.2009041537?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzkzMC4yMDA5MDQxNTM3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "084c367c-73de-4c2c-a17d-15b606e22fd1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12148,Microsoft.Compute/GetVMImageFromLocation30Min;73145" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e6624643-ad33-497b-972a-9c676b80f561" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b94e08ca-7c04-4385-a421-5329468c2ef1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "114ae114-2bbf-41fa-9c42-726dc44e63cc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215218Z:114ae114-2bbf-41fa-9c42-726dc44e63cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 96671A6D14234308879FACD7933C37AA Ref B: MNZ221060619035 Ref C: 2025-06-02T21:52:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:18 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3930.2009041537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3930.2009041537\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2016-dotnetcore-2-2/versions/14393.3930.2009041537?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTYtZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTQzOTMuMzkzMC4yMDA5MDQxNTM3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11575,Microsoft.Compute/GetVMImageFromLocation30Min;72217" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7d032294-6616-4247-9277-817856d1c8f9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3dec2d74-455f-4421-b3a8-81d1a529b6d7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7260c9a5-1b43-4e9e-932c-6c27bb6c697b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215358Z:7260c9a5-1b43-4e9e-932c-6c27bb6c697b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 09BC2408569D4A039CCCDA3F1A45D206 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.3930.2009041537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2016-dotnetcore-2-2/Versions/14393.3930.2009041537\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6e394e3b-e758-4231-adb9-0d85b8c6538d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15910,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43904" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e57581e3-2de1-4d45-8e8d-8d7790692526" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ca3b1be2-56be-4310-87b0-e8a52c9848a5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5c8809b2-7730-4766-8b32-60edf0c721b7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215219Z:5c8809b2-7730-4766-8b32-60edf0c721b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E471C0A0DA804C27B0AFE9B2FAAA3D16 Ref B: MNZ221060610039 Ref C: 2025-06-02T21:52:18Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:18 GMT" + ], + "Content-Length": [ + "5673" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6893.250207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15849,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43803" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d069c504-0d68-422c-ad29-1fa2009b949a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/90d44829-056b-483a-aea0-4b8b5f8b6680" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7bb719f1-c586-4d25-a17a-a5ca26613141" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215358Z:7bb719f1-c586-4d25-a17a-a5ca26613141" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 432BD48CB10F4737A74D95DA5B7DD7D8 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "5673" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5329.231230\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5458.240206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5576.240304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5696.240406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5820.240510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5936.240607\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6054.240703\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6189.240811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6293.240905\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6414.241004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6893.250207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My41MzI5LjIzMTIzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "aadd9662-2c03-46e1-95b9-82e22240ccdb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12147,Microsoft.Compute/GetVMImageFromLocation30Min;73144" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d823b33d-695d-4d22-8ce6-60dea7639fa5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2857880d-36bf-42e4-abf1-0e45169d5d65" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "eccb3f93-4f46-4468-8ef9-d76ec79f1edb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215219Z:eccb3f93-4f46-4468-8ef9-d76ec79f1edb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 420C990D90DA44B3A3CFDCEF6B246DF1 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:52:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:18 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.5329.231230?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My41MzI5LjIzMTIzMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11574,Microsoft.Compute/GetVMImageFromLocation30Min;72216" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0103efa1-0af0-4c3c-93f4-d2d5a7e52a78" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/134a67cf-fccb-48c7-996c-90202c5e6ede" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "f897deb6-ac1c-48ca-b653-b770c96f26bd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215358Z:f897deb6-ac1c-48ca-b653-b770c96f26bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4822333949BD4C629B03E40CDBB4D117 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5329.231230\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5329.231230\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My41NDU4LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "98cb8f20-572f-46f5-83da-d6a9ce283e03" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12146,Microsoft.Compute/GetVMImageFromLocation30Min;73143" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a2664e1f-7186-4baa-976a-b8c07fdf028b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a84fce16-959f-411e-a363-7da49e094f90" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c260c26a-0c64-4359-a561-f8ed5edcf8ca" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215219Z:c260c26a-0c64-4359-a561-f8ed5edcf8ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 92E47F78C2A7466D8870CB0A2993F364 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:52:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:19 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.5458.240206?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My41NDU4LjI0MDIwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11573,Microsoft.Compute/GetVMImageFromLocation30Min;72215" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "24f5aad6-7840-465a-bbc4-89f75c567e1d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2896ce07-19a9-475f-a782-6ac786980e87" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "31765997-1f2c-4c29-b2a3-69a93823e9fc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215358Z:31765997-1f2c-4c29-b2a3-69a93823e9fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3176D8CDD56B4AF0BDB1B59F9BBC1822 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5458.240206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5458.240206\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My41NTc2LjI0MDMwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d012b32b-cbd7-45e6-b6db-3630d7f38006" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12145,Microsoft.Compute/GetVMImageFromLocation30Min;73142" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "34fb8eee-9266-4833-9f29-d1495f60f69e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d9285ec5-82fc-407f-8a23-5d13e904e86b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "b733bb9d-afc5-4814-8d44-2d2c7f6325d4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215219Z:b733bb9d-afc5-4814-8d44-2d2c7f6325d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 90A98D43E8954E949E8138B247F24DC8 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:52:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:18 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.5576.240304?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My41NTc2LjI0MDMwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11572,Microsoft.Compute/GetVMImageFromLocation30Min;72214" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d733d8bd-2341-4a0f-9bb1-f388f96cab02" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/798298b2-3d8a-40ed-b4a9-202f8396a559" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "55b042ab-f23d-45ce-a5ba-220d0d4be2df" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215358Z:55b042ab-f23d-45ce-a5ba-220d0d4be2df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 53C64D21DAD74CCC83F7CE63924A436E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5576.240304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5576.240304\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My41Njk2LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1c9d8f00-2c82-4c85-a390-662683408885" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12144,Microsoft.Compute/GetVMImageFromLocation30Min;73141" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c0c1395e-2823-4e9e-a54f-b5eebfe25e62" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9ec40c2f-2805-46ed-b892-414e70679857" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "46cb58b9-0b61-4117-a5a4-56a2045196a6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215219Z:46cb58b9-0b61-4117-a5a4-56a2045196a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D6215B53EA3543CE8311CE8C9058940C Ref B: MNZ221060610047 Ref C: 2025-06-02T21:52:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:18 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.5696.240406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My41Njk2LjI0MDQwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11571,Microsoft.Compute/GetVMImageFromLocation30Min;72213" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "400af2c6-003a-4e05-9f26-56de62dc0985" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d258d859-365f-4fa2-ab81-1b57921e64dc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "c8f63148-2f6a-4a7b-b011-95dc5a681710" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215358Z:c8f63148-2f6a-4a7b-b011-95dc5a681710" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E606E1F46D1748CCAF48694DE4D343B8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "1137" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5696.240406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5696.240406\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My41ODIwLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6bd106e2-3b02-4c7d-b675-1317e0c06c2f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12143,Microsoft.Compute/GetVMImageFromLocation30Min;73140" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "76da9d5d-78df-429d-9300-ed69bade1e90" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d651f99d-7dc1-4609-a97a-62ebafaef464" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ad0902aa-03df-4f89-af6b-09760f57db02" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215219Z:ad0902aa-03df-4f89-af6b-09760f57db02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 034F0D9D36644799969388F873FFAE83 Ref B: MNZ221060608049 Ref C: 2025-06-02T21:52:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:18 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.5820.240510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My41ODIwLjI0MDUxMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11570,Microsoft.Compute/GetVMImageFromLocation30Min;72212" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "73b1a618-0a7a-4d34-a0e3-865d94393c98" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/43422e7f-4de2-4057-81de-8118645f24cf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3386bae9-f453-442d-a5f5-fe602a571029" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215358Z:3386bae9-f453-442d-a5f5-fe602a571029" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B201B7006E574B25B75CA5FFB8076885 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:57 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5820.240510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5820.240510\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My41OTM2LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "77aea80c-0411-4315-99f8-d35ba57e48f6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12142,Microsoft.Compute/GetVMImageFromLocation30Min;73139" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "beb14b2a-fc60-4a0a-a0f1-c8fc08c295ef" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f05ac9ff-f164-4e34-b487-6939cd32fa1a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2a9b0013-d82d-42cb-a4b1-b5f9ae68d0fc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215219Z:2a9b0013-d82d-42cb-a4b1-b5f9ae68d0fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 289718B890404F80A60BE71F6DC3E94F Ref B: MNZ221060619025 Ref C: 2025-06-02T21:52:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:19 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.5936.240607?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My41OTM2LjI0MDYwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11569,Microsoft.Compute/GetVMImageFromLocation30Min;72211" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5415319e-ee1e-4026-85ed-6876a6a58d73" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/df1d7603-09bb-4c5d-ae99-7c07a04145bd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "63c2a2f4-db9f-44c8-a76f-198416879e78" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215358Z:63c2a2f4-db9f-44c8-a76f-198416879e78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5DA1509F2073496D857DDD6EDCC0804E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.5936.240607\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.5936.240607\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42MDU0LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b3e2ae0b-75ec-4214-a1f7-c5033187853e" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12141,Microsoft.Compute/GetVMImageFromLocation30Min;73138" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e96bfb5d-4926-4e30-9b91-36519c1a1ee7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ec471776-a37f-4f6c-8a38-3acc3815f672" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1103c94a-12d4-4da3-8eda-1f3687ed991d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215219Z:1103c94a-12d4-4da3-8eda-1f3687ed991d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FB295506303D406193E7AA823A35C2BE Ref B: MNZ221060609009 Ref C: 2025-06-02T21:52:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:19 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6054.240703?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42MDU0LjI0MDcwMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11568,Microsoft.Compute/GetVMImageFromLocation30Min;72210" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "63bae1a1-adee-4f85-9d82-b280f4cf140d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f314ee32-0345-44ac-8116-b48d31568fcf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "9613d95d-6a9a-49bf-a73e-aa60e709360a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215358Z:9613d95d-6a9a-49bf-a73e-aa60e709360a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E8FDC127EFEF418386A9BF73C3965E79 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6054.240703\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6054.240703\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42MTg5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "412dfddd-daef-4c47-8ffc-942714506d6d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12140,Microsoft.Compute/GetVMImageFromLocation30Min;73137" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "610de9fe-0a02-45dc-9a5a-d7128842b7f1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f8ee6433-caed-4f2a-8009-33a03ba2c3aa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1d150a81-b16b-4fc5-99dd-72d8666a544b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215220Z:1d150a81-b16b-4fc5-99dd-72d8666a544b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BBC1A4B63CF447E2963C5527BB15811B Ref B: MNZ221060609039 Ref C: 2025-06-02T21:52:19Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:19 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6189.240811?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42MTg5LjI0MDgxMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11567,Microsoft.Compute/GetVMImageFromLocation30Min;72209" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "56835213-c6eb-4cfc-bcff-21a1cb8fec41" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ee1d6620-56ab-4fc6-86ef-3010c91678c3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4a88584c-1ea6-45cc-bf6b-c8f362dc02c2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215358Z:4a88584c-1ea6-45cc-bf6b-c8f362dc02c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9CF1527103E9475E9128596BD667F14E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6189.240811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6189.240811\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42MjkzLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3e374689-b515-40f4-9f2c-9baa7a1ee98c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12139,Microsoft.Compute/GetVMImageFromLocation30Min;73136" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bed6202e-b0a2-4762-bf7f-9d7acb97123c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a0fd5e1b-6837-4344-bccf-c85843ddbc5a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7e42c895-5c90-4509-9eb0-893c50a89287" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215220Z:7e42c895-5c90-4509-9eb0-893c50a89287" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D0E3E10E84AD480EBE624428AA73B102 Ref B: MNZ221060619027 Ref C: 2025-06-02T21:52:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:19 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6293.240905?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42MjkzLjI0MDkwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11566,Microsoft.Compute/GetVMImageFromLocation30Min;72208" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6ff0a22c-3fe7-4a22-911a-f251236f4681" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/72a2038a-4e06-4f46-9fbf-1bd5b4263879" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "fc3888b9-5553-4426-ab43-bf79be2df8e1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215359Z:fc3888b9-5553-4426-ab43-bf79be2df8e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5807333EBDFF415FAD0C57BDFD201D38 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:58Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-09-09T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6293.240905\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6293.240905\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42NDE0LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f829e885-c08e-4f66-96ec-95b333976a5f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12138,Microsoft.Compute/GetVMImageFromLocation30Min;73135" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2473867a-559d-44f5-8de1-928ee713cf4f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/938fe40c-0c33-471a-ad83-59efabef7c01" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "157cf216-fc56-458f-a12d-c6477b87163d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215220Z:157cf216-fc56-458f-a12d-c6477b87163d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 121D49DBC77F4EB18A4639A67CB7723E Ref B: MNZ221060609019 Ref C: 2025-06-02T21:52:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:20 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6414.241004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42NDE0LjI0MTAwND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11565,Microsoft.Compute/GetVMImageFromLocation30Min;72207" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "457885f3-80db-4219-b038-005c843f944d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/94962e09-08ec-4a60-84db-74a5fe02948d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "0dab865b-b28e-4e74-9d61-b700243b5335" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215359Z:0dab865b-b28e-4e74-9d61-b700243b5335" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0D48BCF609E04330B86702C9082A2F44 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-10-07T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6414.241004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6414.241004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42NTMyLjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e8d6a7d4-a0be-4817-b6b5-3a06304a6b48" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12137,Microsoft.Compute/GetVMImageFromLocation30Min;73134" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8902b2e7-08c1-4185-9047-91181cb8bc9b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a279d65a-6f2a-4732-9b97-025ca1287f5a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e7017a0f-5293-44a1-81a7-a9cf9d62b55d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215220Z:e7017a0f-5293-44a1-81a7-a9cf9d62b55d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4AA707274EB740AD83E4DD1869E980E5 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:52:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:19 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42NTMyLjI0MTEwMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11564,Microsoft.Compute/GetVMImageFromLocation30Min;72206" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d5495970-0434-440c-96fd-caa562878f15" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3c7c921d-00bb-42fe-9d53-40e84d5862ee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "10a92746-b180-4b4d-88c3-484749b0a4f0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215359Z:10a92746-b180-4b4d-88c3-484749b0a4f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F110CC65532F481E8F265781715EE361 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42NjU5LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2b344e4c-46ba-434d-ad25-7d527f685d9c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12136,Microsoft.Compute/GetVMImageFromLocation30Min;73133" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "530a6d49-e797-4939-9134-0e571f393395" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e500a6e5-b5c0-4760-ac4a-34b7760c21f4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3be688a7-9ba4-419d-b307-5c09080c9f2d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215220Z:3be688a7-9ba4-419d-b307-5c09080c9f2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8B651D0D2BB14F9FA66F443E64DDB30A Ref B: MNZ221060608045 Ref C: 2025-06-02T21:52:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:20 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42NjU5LjI0MTIwNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11563,Microsoft.Compute/GetVMImageFromLocation30Min;72205" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fee62323-1db2-4162-9704-f1301a25a262" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/838db8a3-3a68-4603-a77d-8f9bcefd7da8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "3b5925ba-2533-413c-b085-3c4e842985d9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215359Z:3b5925ba-2533-413c-b085-3c4e842985d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 041881AE6F9140F180A2ADA1FD2C9E41 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42Nzc1LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0e21dd7d-d837-430f-85d4-b995e9483faa" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12135,Microsoft.Compute/GetVMImageFromLocation30Min;73132" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3eed964c-cd6a-4bcf-911f-7f2bd43c35d5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/418e066d-1b21-4ed1-b89d-7e4974103d05" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7ff1187a-ae1f-4c32-a299-b71120e4052e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215220Z:7ff1187a-ae1f-4c32-a299-b71120e4052e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CF8E7A3E73484324ACFA2F9A9BCDA6DD Ref B: MNZ221060608029 Ref C: 2025-06-02T21:52:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:19 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42Nzc1LjI1MDEwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11562,Microsoft.Compute/GetVMImageFromLocation30Min;72204" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0c9b9723-a5e1-4d32-a177-6149203c0326" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d0e6b3ac-f836-4aeb-a38f-dca371b1f815" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e6c2478b-1b1b-4c88-b479-982575eb28a8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215359Z:e6c2478b-1b1b-4c88-b479-982575eb28a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A6D001523EAC4F29831650E7BD8DEFFD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6893.250207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42ODkzLjI1MDIwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "39eda60f-1ba9-44f9-b4e1-42c277974c10" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12134,Microsoft.Compute/GetVMImageFromLocation30Min;73131" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f6daad5-2568-47e5-aa26-c1a29791bab2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6761c43f-ea6c-47d4-ba06-a21e699888c2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "99c9f8b4-f956-41e1-89c6-14a359bb5a2d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215220Z:99c9f8b4-f956-41e1-89c6-14a359bb5a2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A860B21F2F9C4A628949D90ECE0367CB Ref B: MNZ221060608009 Ref C: 2025-06-02T21:52:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:19 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-10T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6893.250207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.6893.250207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My42ODkzLjI1MDIwNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11561,Microsoft.Compute/GetVMImageFromLocation30Min;72203" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e078f125-ee0e-4b52-9d32-a6670c142153" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0f476a99-9d93-4460-aa51-becb324822a2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "45631bfd-8c2b-434d-b688-38f47d881e89" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215359Z:45631bfd-8c2b-434d-b688-38f47d881e89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7711647E1DBA403886EB87AB053C3C40 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-10T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.6893.250207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My43MDA5LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c66db4a6-a6c6-46a7-8a1c-7c3b5ba76694" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12133,Microsoft.Compute/GetVMImageFromLocation30Min;73130" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e15348c8-1cff-4137-a992-6223dfb0f29d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f3d91711-b8c6-4deb-8f95-2c774f5a7e99" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "64ee4fb6-5d87-46e8-82c5-0f2f680768d1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215220Z:64ee4fb6-5d87-46e8-82c5-0f2f680768d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C475EB8EB7414B5797F2D6811957FC86 Ref B: MNZ221060609011 Ref C: 2025-06-02T21:52:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:20 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My43MDA5LjI1MDMwNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11560,Microsoft.Compute/GetVMImageFromLocation30Min;72202" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0be23b79-3e8a-4ff9-adfc-e3a2211fa270" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ae73e814-e9b5-4f6d-b000-2a5b7cd8720e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ce35d745-c6b5-4896-9473-f370a5d0ab8d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215359Z:ce35d745-c6b5-4896-9473-f370a5d0ab8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0D3F3007473847AB8C5A5C89C03F6CC4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My43MjQwLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b8cfe5a2-459c-48be-9b83-255591b1cb60" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12132,Microsoft.Compute/GetVMImageFromLocation30Min;73129" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3a5dd9b1-0c3a-48d9-853c-a2bdb04cdc97" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/42ef9a7c-3d85-47ee-af7d-6f61fefb891e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "817a172d-b004-4828-9ffb-6de1de50ddfe" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215221Z:817a172d-b004-4828-9ffb-6de1de50ddfe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B0726515F888458D8C6ED792B8DBBEFD Ref B: MNZ221060619009 Ref C: 2025-06-02T21:52:20Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:20 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My43MjQwLjI1MDQwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11559,Microsoft.Compute/GetVMImageFromLocation30Min;72201" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "54621865-e16e-4b3a-a466-2726cc9040ad" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9eb24a43-2fd7-408d-aec2-4788c46201e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "f56488fb-adde-4195-b8b9-8b4c081af0bc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215359Z:f56488fb-adde-4195-b8b9-8b4c081af0bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 47B659AA63E44D61BE522F90A657759F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My43MzE0LjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0c066315-d878-46bb-b8ec-1e213ad7a9d6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12131,Microsoft.Compute/GetVMImageFromLocation30Min;73128" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6a527d67-e791-431c-97e3-019722c4b239" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b1317ba5-baff-4d6d-8176-19c23101a39f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e5758370-523b-443a-9721-81c16e375bab" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215221Z:e5758370-523b-443a-9721-81c16e375bab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F413EC7F82AB4EF8A9D2F368A9F5131A Ref B: MNZ221060619035 Ref C: 2025-06-02T21:52:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:20 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My43MzE0LjI1MDUwOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11558,Microsoft.Compute/GetVMImageFromLocation30Min;72200" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e310aa82-a3dc-4115-9da7-f7fb0f4884b8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e4bed77e-77e2-4f1c-923a-d6cfa80060b8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "4bd18639-cb85-469d-81b7-805c0595e680" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215359Z:4bd18639-cb85-469d-81b7-805c0595e680" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 633D4812B9DA4513B7745189C1AACAF0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My43MzIyLjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "2358a7ae-3f08-4429-a64f-dad0ce3130c2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12130,Microsoft.Compute/GetVMImageFromLocation30Min;73127" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f5bdc2a9-e99f-4207-b31b-efffe77d0f2f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c03237ca-7993-40db-ae12-f2a1b7996330" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "625f4994-8385-4c1a-a97d-885a95a1c382" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215221Z:625f4994-8385-4c1a-a97d-885a95a1c382" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 69F4C9C40CDD416A8440314BD2EA5015 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:52:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:21 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS92ZXJzaW9ucy8xNzc2My43MzIyLjI1MDUyND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11557,Microsoft.Compute/GetVMImageFromLocation30Min;72199" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "84d4afd7-ef33-4563-a16a-e2b7a5d9905b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7455ed0b-3a38-4b33-a3f2-1144986b3551" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5c6dd615-88e6-428f-8d77-62c1e392a10c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215359Z:5c6dd615-88e6-428f-8d77-62c1e392a10c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D9103CA970554106B6C18EE365603E10 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "1285" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bfabe28e-93da-436c-b648-7ad3b5a8221c" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15909,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43903" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "72bc1486-9964-4095-a51f-881194104d32" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/abecd20f-d71f-49ab-be21-88a51960ef3c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f2026a63-86a1-4cbf-9ae9-e0c228bef3ba" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215221Z:f2026a63-86a1-4cbf-9ae9-e0c228bef3ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 46A8FDC218CE4536BBBE6985DB437539 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:52:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:21 GMT" + ], + "Content-Length": [ + "3919" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1039.2002091844\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1039.2002091844\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1098.2003062342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1098.2003062342\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1158.2004131759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1158.2004131759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1217.2005081535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1217.2005081535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1282.2006061952\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1282.2006061952\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1339.2007101755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1339.2007101755\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1397.2008070242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1397.2008070242\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1457.2009030514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1457.2009030514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.805.1910061628\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.805.1910061628\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.864.1911120152\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.864.1911120152\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.914.1912042330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.914.1912042330\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.973.2001110547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.973.2001110547\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15848,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43802" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9f12ea11-0fa0-47d6-b296-b5af63331f58" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/46343c10-214a-4ff1-aa02-94d91684e8ff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "905186f4-2ef0-43cd-b5a3-bdc0e9e36daf" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215359Z:905186f4-2ef0-43cd-b5a3-bdc0e9e36daf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0AFAFAB5562848D4BECFCA9696F7A3AE Ref B: MNZ221060610031 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:59 GMT" + ], + "Content-Length": [ + "3919" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1039.2002091844\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1039.2002091844\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1098.2003062342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1098.2003062342\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1158.2004131759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1158.2004131759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1217.2005081535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1217.2005081535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1282.2006061952\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1282.2006061952\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1339.2007101755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1339.2007101755\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1397.2008070242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1397.2008070242\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1457.2009030514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1457.2009030514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.805.1910061628\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.805.1910061628\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.864.1911120152\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.864.1911120152\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.914.1912042330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.914.1912042330\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.973.2001110547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.973.2001110547\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1039.2002091844?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTAzOS4yMDAyMDkxODQ0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "86568634-00bc-42e5-a968-0eb4ea4c53a1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12129,Microsoft.Compute/GetVMImageFromLocation30Min;73126" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "299a7ba8-7e9e-42f1-b2ff-916a464eebf7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a8353879-330d-475b-b1ae-03a53d397a31" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8da4997e-ece1-4d9b-8138-2fc2e58901ce" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215221Z:8da4997e-ece1-4d9b-8138-2fc2e58901ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D28C17A28E3B4BEEB307B005465B909B Ref B: MNZ221060608031 Ref C: 2025-06-02T21:52:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:21 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1039.2002091844\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1039.2002091844\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1039.2002091844?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTAzOS4yMDAyMDkxODQ0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11556,Microsoft.Compute/GetVMImageFromLocation30Min;72198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ab18eb1e-714c-4490-ac97-bea3d2465122" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/45ef0469-21d0-46e7-ad06-ed978d901ad6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "ecd445a8-9125-4dbc-b59d-0266e7dfa5a7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215359Z:ecd445a8-9125-4dbc-b59d-0266e7dfa5a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F6589EAB564D4271B4E1176144AD817E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:58 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1039.2002091844\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1039.2002091844\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1098.2003062342?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTA5OC4yMDAzMDYyMzQyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "91832d82-a2ef-49e3-92a9-419c1aef5fb1" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12128,Microsoft.Compute/GetVMImageFromLocation30Min;73125" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5b4f1262-8aef-4e0c-b4c5-f63968a08852" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7f002c9d-4fa3-448d-9684-0f611f512718" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "139de2dc-21c1-4481-9da8-e4e2dd76925e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215221Z:139de2dc-21c1-4481-9da8-e4e2dd76925e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 34962382AC4A49949C5153C600BC9E29 Ref B: MNZ221060618009 Ref C: 2025-06-02T21:52:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:21 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1098.2003062342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1098.2003062342\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1098.2003062342?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTA5OC4yMDAzMDYyMzQyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11555,Microsoft.Compute/GetVMImageFromLocation30Min;72197" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fb1e15c3-1994-4802-a65d-510e09933ad7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/17b30c4e-2a3a-43db-8985-a3e1edf4da27" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "7ceac164-7e4f-4f6a-b09d-8561b391ee63" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215359Z:7ceac164-7e4f-4f6a-b09d-8561b391ee63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E9511F055C4C408EAC8A2245BC86AA53 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:59 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1098.2003062342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1098.2003062342\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1158.2004131759?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTE1OC4yMDA0MTMxNzU5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "26393b8e-e552-40ac-bf83-32ac9655f772" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12127,Microsoft.Compute/GetVMImageFromLocation30Min;73124" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d4c1274c-6e5a-4824-9d6b-55003bd47325" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/aff13245-f337-4fc1-b558-44929dae1486" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d1664ee4-09dc-49dc-99b3-97fd1adb124f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215222Z:d1664ee4-09dc-49dc-99b3-97fd1adb124f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C89CFB802027492399F9974EF87F54C8 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:52:21Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:21 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1158.2004131759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1158.2004131759\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1158.2004131759?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTE1OC4yMDA0MTMxNzU5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11554,Microsoft.Compute/GetVMImageFromLocation30Min;72196" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9d8e34f7-3a8f-4968-8126-fbd180339442" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e720c9db-8d28-47d5-918e-bd75f3101d03" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "ace53ca8-bbaa-4d68-8962-5e318086a984" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215359Z:ace53ca8-bbaa-4d68-8962-5e318086a984" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D7D4F22CFF66429CBBF38D320836CB88 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:59 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1158.2004131759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1158.2004131759\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1217.2005081535?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTIxNy4yMDA1MDgxNTM1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "108655c3-c6bb-42b0-8fdc-fe1e9987682b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12126,Microsoft.Compute/GetVMImageFromLocation30Min;73123" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "82d8f2ea-a0c6-485b-997e-dc7d4a015efc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e28fff6f-10d6-4554-8a8b-fe32edf8a9f5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "945edddc-e040-40a8-bd72-78a1337d73d0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215222Z:945edddc-e040-40a8-bd72-78a1337d73d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E13E010E1A7E4485B872DD1D96244E73 Ref B: MNZ221060610053 Ref C: 2025-06-02T21:52:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:21 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1217.2005081535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1217.2005081535\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1217.2005081535?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTIxNy4yMDA1MDgxNTM1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11735,Microsoft.Compute/GetVMImageFromLocation30Min;72195" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "30996889-57ce-45a3-9474-3438ae125c40" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fd207045-615b-4533-b08d-8a866de441d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "9fd7ae8f-f161-48f4-b302-8fd0c6ae39a8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215400Z:9fd7ae8f-f161-48f4-b302-8fd0c6ae39a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F0E934CBD3C34094B83FC283E18BEBBB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:53:59Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:59 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1217.2005081535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1217.2005081535\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1282.2006061952?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTI4Mi4yMDA2MDYxOTUyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7068aa65-6130-4437-8138-a1707f466159" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12125,Microsoft.Compute/GetVMImageFromLocation30Min;73122" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c0c6525-ea06-4524-a49d-eaf4cea1a07a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cc074ade-04e0-443a-b1f9-289718386786" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "efa18883-114e-4877-8a83-4cc77fb54215" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215222Z:efa18883-114e-4877-8a83-4cc77fb54215" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 38640AAB349E4975A058C871593EBF4C Ref B: MNZ221060618023 Ref C: 2025-06-02T21:52:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:21 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1282.2006061952\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1282.2006061952\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1282.2006061952?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTI4Mi4yMDA2MDYxOTUyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11734,Microsoft.Compute/GetVMImageFromLocation30Min;72194" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6d0d32e3-4a36-4684-9874-8dfc1a998ccd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a690fdea-1bc4-43ae-b543-64f976443364" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "de0a1855-de60-4481-8614-f35a347f6d42" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215400Z:de0a1855-de60-4481-8614-f35a347f6d42" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8096679FBBAC4E5CA54C5A068BD1C42A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:59 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1282.2006061952\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1282.2006061952\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1339.2007101755?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTMzOS4yMDA3MTAxNzU1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "b23677ee-a121-4ded-bede-f56684973380" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12124,Microsoft.Compute/GetVMImageFromLocation30Min;73121" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ae61da4f-01b7-491e-a361-893aa0473122" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8ad6f316-e73f-46b9-b55c-fcdb094fe7e8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "68a10c80-7fa9-4c62-8bf6-b04393c19b3d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215222Z:68a10c80-7fa9-4c62-8bf6-b04393c19b3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3C4CD575B3AF4932966CC14868E017FF Ref B: MNZ221060609009 Ref C: 2025-06-02T21:52:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:21 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1339.2007101755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1339.2007101755\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1339.2007101755?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTMzOS4yMDA3MTAxNzU1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11733,Microsoft.Compute/GetVMImageFromLocation30Min;72193" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ae2c5e82-77f1-44e9-b914-af5d192bb0c9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/13daa5e8-a00c-453e-99b3-afd8426a55ca" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "8f29d058-9ae7-4679-847d-cc1b4e978452" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215400Z:8f29d058-9ae7-4679-847d-cc1b4e978452" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 08EB015CE1124DFE919F030D0746B987 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:59 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1339.2007101755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1339.2007101755\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1397.2008070242?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTM5Ny4yMDA4MDcwMjQyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0d8c1db8-39d9-4115-8298-9bfe610e7624" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12123,Microsoft.Compute/GetVMImageFromLocation30Min;73120" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "481ef6f6-2fc9-4e63-ad4b-71b90648b353" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d78a4e3f-eafb-4cf9-b4f0-325fe5a25859" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "73e14e40-c678-495e-a462-82de033ae0dd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215222Z:73e14e40-c678-495e-a462-82de033ae0dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D2A3564F1D8049BC82A3965EE9E43A57 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:52:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:22 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1397.2008070242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1397.2008070242\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1397.2008070242?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTM5Ny4yMDA4MDcwMjQyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11732,Microsoft.Compute/GetVMImageFromLocation30Min;72192" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "6201c797-3df0-4aad-8400-8afb4fa9756c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/09e5d291-9698-4adb-943c-be1ad94b2c98" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "aa55f1d6-7205-4151-bef6-e0696c87a816" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215400Z:aa55f1d6-7205-4151-bef6-e0696c87a816" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E779A97EF3BB494D99EE509DF63D7B58 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:59 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1397.2008070242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1397.2008070242\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1457.2009030514?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTQ1Ny4yMDA5MDMwNTE0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "0b1a1d79-d0f1-4cb1-a553-8b87473e7657" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12122,Microsoft.Compute/GetVMImageFromLocation30Min;73119" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "13e52801-7433-4db4-8b0d-2311e8b93ede" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5c222721-e1ea-4cd0-86a1-07df6e64aa57" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "98d990a0-ccf4-4aa1-9073-43b3b21bbf7f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215222Z:98d990a0-ccf4-4aa1-9073-43b3b21bbf7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A2A616BF84DA4DB19F0A2C4E87727E5E Ref B: MNZ221060618021 Ref C: 2025-06-02T21:52:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:22 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1457.2009030514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1457.2009030514\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.1457.2009030514?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuMTQ1Ny4yMDA5MDMwNTE0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11731,Microsoft.Compute/GetVMImageFromLocation30Min;72191" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "374a4626-0ec1-4baa-aebf-fd7d5b2aa440" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dd29cb2c-5cac-4a86-a19f-d984d7928cfb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "8306e233-6dd5-43b0-b53f-17c248666c70" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215400Z:8306e233-6dd5-43b0-b53f-17c248666c70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9484C054BBA64651A79EB774F1F6C4EB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:59 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1457.2009030514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.1457.2009030514\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.805.1910061628?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuODA1LjE5MTAwNjE2Mjg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8de242eb-a012-42d7-a80d-f0e9d31a494d" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12121,Microsoft.Compute/GetVMImageFromLocation30Min;73118" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3ede21b3-2a2f-4613-8eaf-6e38d96618a0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b5b55388-73a1-4e26-b5f2-63b8e14ac6cb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2df10d9a-4b63-45a3-8efc-b8c426c09721" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215222Z:2df10d9a-4b63-45a3-8efc-b8c426c09721" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9C8449093FB040A98268C532BF75691A Ref B: MNZ221060609029 Ref C: 2025-06-02T21:52:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:22 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.805.1910061628\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.805.1910061628\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.805.1910061628?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuODA1LjE5MTAwNjE2Mjg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11730,Microsoft.Compute/GetVMImageFromLocation30Min;72190" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "9682201d-9948-45f6-bfe4-875c6154f62c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/78136b0d-6111-4aa9-96e4-3a0a23d8e5ba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "c07336c3-9b6a-44a0-ad30-e139083a1728" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215400Z:c07336c3-9b6a-44a0-ad30-e139083a1728" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F0D191E542E64F2580039FD98E59D5BC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:59 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.805.1910061628\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.805.1910061628\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.864.1911120152?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuODY0LjE5MTExMjAxNTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "d733f241-e872-4c9d-8a86-1c57c453cd32" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12120,Microsoft.Compute/GetVMImageFromLocation30Min;73117" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3d4451c0-cbb3-4e6b-b2a4-d0d68144b16d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d488b7f5-905e-4c98-a8fc-a766a4062676" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8086ec11-3d18-4997-b53f-143a3a9a8617" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215222Z:8086ec11-3d18-4997-b53f-143a3a9a8617" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F961775D3BB340819AD2AEBD86F3DA10 Ref B: MNZ221060618037 Ref C: 2025-06-02T21:52:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:22 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.864.1911120152\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.864.1911120152\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.864.1911120152?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuODY0LjE5MTExMjAxNTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11729,Microsoft.Compute/GetVMImageFromLocation30Min;72189" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f3e7f557-1dfc-4e08-b322-f596be6a9188" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fca580fc-c15f-4ded-bd90-98f9c4d753bf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b04959f2-56ff-4d8b-a5ba-99e44c9bba55" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215400Z:b04959f2-56ff-4d8b-a5ba-99e44c9bba55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3668F37E1B2F4590AA8CF11015A1E46E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:59 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.864.1911120152\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.864.1911120152\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.914.1912042330?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuOTE0LjE5MTIwNDIzMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "87174a28-1d27-4af9-ac12-6c407747e3a6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12119,Microsoft.Compute/GetVMImageFromLocation30Min;73116" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6b9f2e35-a881-4c0d-899f-b5c4b141ee2f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/76718a3d-276a-4032-83b2-fcc6c2689423" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5fdabc36-907a-49df-8489-cdbfc78ef7d0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215222Z:5fdabc36-907a-49df-8489-cdbfc78ef7d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC104391D1714A87992449F690207949 Ref B: MNZ221060619045 Ref C: 2025-06-02T21:52:22Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:22 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.914.1912042330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.914.1912042330\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.914.1912042330?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuOTE0LjE5MTIwNDIzMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11728,Microsoft.Compute/GetVMImageFromLocation30Min;72188" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f4a83a4e-3824-401a-b6c4-8a9b3b53b444" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0d958352-0bf1-40c6-aecd-47fd5f44123d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "ecf3bd20-5526-4b41-8f21-64fe73bacf82" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215400Z:ecf3bd20-5526-4b41-8f21-64fe73bacf82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BF35A74813CF4EED9AA6CE82CE145F6B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:59 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.914.1912042330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.914.1912042330\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.973.2001110547?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuOTczLjIwMDExMTA1NDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cd263229-c466-42c6-be77-3c996aa577f8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12118,Microsoft.Compute/GetVMImageFromLocation30Min;73115" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fb984476-9eaf-4e7a-b7bc-d9f7be80ee89" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6e7ffdb4-796b-4fd6-b614-b95030302e0e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "029a6f0d-8658-464e-8a88-070c983d047f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215223Z:029a6f0d-8658-464e-8a88-070c983d047f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C8D657A1CB7D462A8E6CC3E48E0F8504 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:52:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:22 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.973.2001110547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.973.2001110547\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-1/versions/17763.973.2001110547?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTEvdmVyc2lvbnMvMTc3NjMuOTczLjIwMDExMTA1NDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11727,Microsoft.Compute/GetVMImageFromLocation30Min;72187" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "666884cb-f8e6-47c7-9511-51ed48a6055c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6386a85b-e7bf-405e-b2a9-7b6d1bc9afdc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "5c5da2d7-8be8-48ed-92f2-dab559bbb2a0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215400Z:5c5da2d7-8be8-48ed-92f2-dab559bbb2a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FDDB0077CB3A484A910F03C53F8D0C3C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:53:59 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.973.2001110547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-1/Versions/17763.973.2001110547\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a715b771-7e53-4b33-8768-29dacfd4158f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15908,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43902" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "70ae73ad-efc2-4812-91a6-5954a7c65a82" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1124c0a8-c596-45d0-bfa7-1d182a3de05e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e41593a8-5e5b-442d-b323-cf9158df3296" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215223Z:e41593a8-5e5b-442d-b323-cf9158df3296" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8B9E01FFD2BA432482BE5940B0A6C3AD Ref B: MNZ221060609009 Ref C: 2025-06-02T21:52:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:22 GMT" + ], + "Content-Length": [ + "4244" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1039.2002091844\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1039.2002091844\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1098.2003062342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1098.2003062342\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1158.2004131759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1158.2004131759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1217.2005081535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1217.2005081535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1282.2006061952\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1282.2006061952\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1339.2007101755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1339.2007101755\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1397.2008070242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1397.2008070242\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1457.2009030514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1457.2009030514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.737.1909062324\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.737.1909062324\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.805.1910061628\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.805.1910061628\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.864.1911120152\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.864.1911120152\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.914.1912042330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.914.1912042330\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.973.2001110547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.973.2001110547\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15862,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43801" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2afdf7c6-158f-4372-ad2e-5a14332f43b1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fa82ba0b-2fe3-4f49-973a-7877b9320717" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "0ff9dc18-43bc-4b5d-acec-d01c3fe073fc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215400Z:0ff9dc18-43bc-4b5d-acec-d01c3fe073fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 33081B7063B54C50B4786B61E2EB58F6 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "4244" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1039.2002091844\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1039.2002091844\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1098.2003062342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1098.2003062342\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1158.2004131759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1158.2004131759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1217.2005081535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1217.2005081535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1282.2006061952\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1282.2006061952\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1339.2007101755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1339.2007101755\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1397.2008070242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1397.2008070242\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1457.2009030514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1457.2009030514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.737.1909062324\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.737.1909062324\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.805.1910061628\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.805.1910061628\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.864.1911120152\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.864.1911120152\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.914.1912042330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.914.1912042330\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.973.2001110547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.973.2001110547\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1039.2002091844?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTAzOS4yMDAyMDkxODQ0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "29cb0f74-71d5-4b3a-9c92-48914189b27b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12117,Microsoft.Compute/GetVMImageFromLocation30Min;73114" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9121fbe8-4bea-4d03-866b-f01135bef33f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2a69083f-1220-4145-a37b-aec46d942be4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "795098a3-9611-4f41-bee0-f1ad4e963b26" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215223Z:795098a3-9611-4f41-bee0-f1ad4e963b26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C4D5397DD0FA44E3BD7D185874D48CED Ref B: MNZ221060609023 Ref C: 2025-06-02T21:52:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:23 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1039.2002091844\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1039.2002091844\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1039.2002091844?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTAzOS4yMDAyMDkxODQ0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11726,Microsoft.Compute/GetVMImageFromLocation30Min;72186" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "fe1048ef-7764-4ab8-bdf5-64881921a486" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6ef6fcf4-ae31-477a-a447-e352a511a5d9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "5beeb018-953a-479e-a25c-1029914bd4f5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215400Z:5beeb018-953a-479e-a25c-1029914bd4f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F67DB5CB1BB4464EBB2B9DA737352A80 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1039.2002091844\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1039.2002091844\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1098.2003062342?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTA5OC4yMDAzMDYyMzQyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "38964319-9214-4058-8a9e-0774b867ef41" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12116,Microsoft.Compute/GetVMImageFromLocation30Min;73113" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fe894ec4-da9b-4325-a3a4-a8ca886f1d19" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/46bf9941-e87c-4adf-b844-ea21a0c2f66b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "77ddbd1f-ca08-4d92-9530-33ccd9b9aa61" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215223Z:77ddbd1f-ca08-4d92-9530-33ccd9b9aa61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E2FD9D332CE94F3DA262A7B9A8252676 Ref B: MNZ221060609039 Ref C: 2025-06-02T21:52:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:23 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1098.2003062342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1098.2003062342\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1098.2003062342?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTA5OC4yMDAzMDYyMzQyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11725,Microsoft.Compute/GetVMImageFromLocation30Min;72185" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "12392a88-d6a9-4041-bd4a-47c87ab77246" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4c398953-5a33-47cd-8b31-3e3417cd29db" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "f1bf5282-3c82-4359-8b11-eed86c7bc16a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215400Z:f1bf5282-3c82-4359-8b11-eed86c7bc16a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A7F7815F4AF945D8B9F5D3A4EF31DC7D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1098.2003062342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1098.2003062342\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1158.2004131759?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTE1OC4yMDA0MTMxNzU5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "80aed27c-4e12-4815-9740-1ef66dc35e56" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12115,Microsoft.Compute/GetVMImageFromLocation30Min;73112" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3ef003bd-d952-4745-a7c0-66b105582b92" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fe861626-962e-453f-934e-adaecf41034e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1f90b7f2-e2d9-49e6-88a8-00dc281fbe91" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215223Z:1f90b7f2-e2d9-49e6-88a8-00dc281fbe91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9D786E27F04541B08D0E8B7E61326C13 Ref B: MNZ221060610051 Ref C: 2025-06-02T21:52:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:23 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1158.2004131759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1158.2004131759\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1158.2004131759?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTE1OC4yMDA0MTMxNzU5P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11724,Microsoft.Compute/GetVMImageFromLocation30Min;72184" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f615e5b0-c482-45de-ad16-693ed2e9dd80" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9bebe879-884b-4b67-9924-33e1da19b3d9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "5abc5219-71f9-4771-85a8-4bceef2dd660" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215401Z:5abc5219-71f9-4771-85a8-4bceef2dd660" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41DD6B78A4BF4EDE94CD322AE157A001 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:00Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1158.2004131759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1158.2004131759\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1217.2005081535?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTIxNy4yMDA1MDgxNTM1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c1661640-9b10-476b-abf5-7c2979e09445" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12114,Microsoft.Compute/GetVMImageFromLocation30Min;73111" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2720cc91-f5cd-4e3f-b09f-6f9f509b0fc6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/96178624-c594-4a49-939e-a64522e12355" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5d42f2a2-b1b3-428c-b577-43a4271d09f4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215223Z:5d42f2a2-b1b3-428c-b577-43a4271d09f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2C7CA2E97A0246CEBFCE28287E21C6AD Ref B: MNZ221060619031 Ref C: 2025-06-02T21:52:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:22 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1217.2005081535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1217.2005081535\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1217.2005081535?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTIxNy4yMDA1MDgxNTM1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11723,Microsoft.Compute/GetVMImageFromLocation30Min;72183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "530d5edf-d8d8-484a-a41d-31338c67ba04" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0234ee06-d703-4251-977a-c704c4468156" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b7d212e0-40ed-4c68-a3d8-3befa1f69de2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215401Z:b7d212e0-40ed-4c68-a3d8-3befa1f69de2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B49A012544094D1897D63DC68CDCB190 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1217.2005081535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1217.2005081535\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1282.2006061952?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTI4Mi4yMDA2MDYxOTUyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4cfe1175-f79a-446e-9836-3292605d4282" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12113,Microsoft.Compute/GetVMImageFromLocation30Min;73110" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6c76543a-7c87-4126-9e1f-58dbd0eae660" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cddea8cc-ee69-4a27-ae85-a6d674ab94a0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "199f69b5-9981-433f-9113-ee79dfe360b9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215224Z:199f69b5-9981-433f-9113-ee79dfe360b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0C4A2051F2F04687A0A3DADC634C62E3 Ref B: MNZ221060609017 Ref C: 2025-06-02T21:52:23Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:24 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1282.2006061952\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1282.2006061952\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1282.2006061952?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTI4Mi4yMDA2MDYxOTUyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11722,Microsoft.Compute/GetVMImageFromLocation30Min;72182" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "8714bb3a-6b45-411c-8689-e029906ecdf5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f4d97152-1147-467e-88de-e338b72cffc6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "e67c055b-666d-4c1b-8f87-f11456939a7b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215401Z:e67c055b-666d-4c1b-8f87-f11456939a7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D0C3C0BAC8604C4FBE229E8FE5AC6AA8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1282.2006061952\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1282.2006061952\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1339.2007101755?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTMzOS4yMDA3MTAxNzU1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "9ed5a6ea-3ae9-4553-a9a2-3f3027812c91" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12112,Microsoft.Compute/GetVMImageFromLocation30Min;73109" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0c97aa2b-48f7-4523-805b-15d1b58b1cd5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/66118eba-74f6-4f93-bbe2-9c5596ddfa97" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "70a33a1b-6698-4cfc-8913-439d7378a492" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215224Z:70a33a1b-6698-4cfc-8913-439d7378a492" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 31734065B4AB4290BF45465B4452B6E3 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:52:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:23 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1339.2007101755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1339.2007101755\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1339.2007101755?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTMzOS4yMDA3MTAxNzU1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11721,Microsoft.Compute/GetVMImageFromLocation30Min;72181" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e290ff74-ea91-43f6-916f-032e2214edc8" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/64ef3b80-a02c-41c9-900c-31a3f1c1d426" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9e03d68a-a37a-4f23-bf94-cfa70a48c9ed" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215401Z:9e03d68a-a37a-4f23-bf94-cfa70a48c9ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5C145C11F51246D4BB3C62F009E4296F Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1339.2007101755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1339.2007101755\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1397.2008070242?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTM5Ny4yMDA4MDcwMjQyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f216c5e3-5bcb-4009-b90f-ac7f454c3b19" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12111,Microsoft.Compute/GetVMImageFromLocation30Min;73108" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1eefde0e-449e-4284-abf8-62ba4d59e108" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5d339ce5-4da2-483a-933c-a974a6c37c65" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fb2e9ad5-956b-4eb2-bd1a-16f77aed4376" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215224Z:fb2e9ad5-956b-4eb2-bd1a-16f77aed4376" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FBDE3CF7851445BEBE3816B808A75CC8 Ref B: MNZ221060619053 Ref C: 2025-06-02T21:52:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:23 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1397.2008070242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1397.2008070242\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1397.2008070242?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTM5Ny4yMDA4MDcwMjQyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11720,Microsoft.Compute/GetVMImageFromLocation30Min;72180" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3fa9914f-cc35-4fc4-b69d-6a95def5bb93" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a2f60599-ea68-4821-a4de-5bde02d12b13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "7ff7a6d5-ce7c-462a-a1c6-7a077a8d4130" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215401Z:7ff7a6d5-ce7c-462a-a1c6-7a077a8d4130" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7D8B58E3D0B94F87A252E3895A7DA287 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1397.2008070242\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1397.2008070242\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1457.2009030514?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTQ1Ny4yMDA5MDMwNTE0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f363488f-e245-403f-a5ae-a2fa01dff9ef" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12110,Microsoft.Compute/GetVMImageFromLocation30Min;73107" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8814d943-fa2d-437d-b696-5cea2edfef98" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/94dc65bc-4b4c-493c-afa3-56f2e1c665a6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ccdc1836-749c-4738-80e0-30df5396cf11" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215224Z:ccdc1836-749c-4738-80e0-30df5396cf11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AFDDFCBC239F40D8A210F36E647F778A Ref B: MNZ221060618029 Ref C: 2025-06-02T21:52:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:23 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1457.2009030514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1457.2009030514\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.1457.2009030514?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuMTQ1Ny4yMDA5MDMwNTE0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11719,Microsoft.Compute/GetVMImageFromLocation30Min;72179" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "db6957b2-0325-48ac-ae81-f74e79c22812" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f80c76ff-13cb-4b97-8d50-68ab156a9987" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6834e9ed-b792-4f8b-856e-6213a7875a7e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215401Z:6834e9ed-b792-4f8b-856e-6213a7875a7e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B1699E4E8B0D4C0985D2AC0539B14E44 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1457.2009030514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.1457.2009030514\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.737.1909062324?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuNzM3LjE5MDkwNjIzMjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "342452ec-7418-46ab-b721-8ae4ec0b13b6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12109,Microsoft.Compute/GetVMImageFromLocation30Min;73106" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d1cb3b5d-4879-45ba-b09d-6e9d74878d84" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7fde51f4-4af3-4efd-80db-346458858d1c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "37460543-ccf8-47b6-a489-003fb5bbc4c6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215224Z:37460543-ccf8-47b6-a489-003fb5bbc4c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2F7740F488F94E249616E7327D1E113D Ref B: MNZ221060610007 Ref C: 2025-06-02T21:52:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:24 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.737.1909062324\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.737.1909062324\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.737.1909062324?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuNzM3LjE5MDkwNjIzMjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11718,Microsoft.Compute/GetVMImageFromLocation30Min;72178" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "d9a6d134-399c-4ffe-ae53-af5f797f7bbc" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6f1a0374-cde6-4849-9db4-7b518aaf032b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "b2f86b82-a5e4-4e36-b2bb-9b873b401e8d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215401Z:b2f86b82-a5e4-4e36-b2bb-9b873b401e8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC40B04485894395992332FD517D5F66 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.737.1909062324\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.737.1909062324\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.805.1910061628?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuODA1LjE5MTAwNjE2Mjg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "68d98975-f6b1-4f5f-996f-64ec94eab830" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12108,Microsoft.Compute/GetVMImageFromLocation30Min;73105" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c7f6f2ee-ef4e-480f-b0a1-b9a93e500c0e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7fc3e869-a669-4bb1-9a9a-55f6cadd2e32" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "473c1a40-0844-4685-b885-9990ff833f72" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215224Z:473c1a40-0844-4685-b885-9990ff833f72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AF0D2660774347A1B3D8A52EC54A7EFE Ref B: MNZ221060609011 Ref C: 2025-06-02T21:52:24Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:24 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.805.1910061628\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.805.1910061628\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.805.1910061628?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuODA1LjE5MTAwNjE2Mjg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11717,Microsoft.Compute/GetVMImageFromLocation30Min;72177" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0fb0a25e-3641-4626-bd1c-91b5d9dbcb99" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c503cfdb-c596-481c-8376-730620da90b7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "61514db1-c352-4e0f-a4a4-729478d523fe" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215401Z:61514db1-c352-4e0f-a4a4-729478d523fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F500FFC1642414EA04C443A4E5838B5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.805.1910061628\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.805.1910061628\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.864.1911120152?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuODY0LjE5MTExMjAxNTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "22202543-a944-42e3-8ed0-29e132ca666b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12107,Microsoft.Compute/GetVMImageFromLocation30Min;73104" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "628c4d4e-a532-41b9-bf1f-5f45c61d03ff" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/50473793-f7f7-4833-b122-c724fa81ac42" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3d97f85d-2ae9-4ebd-8b7c-e403ace1d31d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215225Z:3d97f85d-2ae9-4ebd-8b7c-e403ace1d31d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E1129BF0611F4AF8AB95669087DF538D Ref B: MNZ221060608053 Ref C: 2025-06-02T21:52:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:24 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.864.1911120152\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.864.1911120152\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.864.1911120152?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuODY0LjE5MTExMjAxNTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11716,Microsoft.Compute/GetVMImageFromLocation30Min;72176" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3ef57a0a-0ccf-461b-b766-b042139436aa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/38adb81f-eaaa-4730-9bcb-5f2af2ec0ae4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "c734a434-1130-495c-a364-6261adeca0be" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215401Z:c734a434-1130-495c-a364-6261adeca0be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D628384928314A6699D2F822B3793855 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.864.1911120152\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.864.1911120152\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.914.1912042330?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuOTE0LjE5MTIwNDIzMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "968076a7-b8af-4f50-b9b0-e581a3bae199" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12106,Microsoft.Compute/GetVMImageFromLocation30Min;73103" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "acfa28dd-c4b4-44b0-a489-b2c6597946ab" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5dc13e7c-d766-44d1-92cf-662a8b7fcf6c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0be2290e-a7a2-4a7a-991b-27b078d13d85" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215225Z:0be2290e-a7a2-4a7a-991b-27b078d13d85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D1B6F12F4B5144A8978ED142F7A20053 Ref B: MNZ221060609053 Ref C: 2025-06-02T21:52:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:24 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.914.1912042330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.914.1912042330\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.914.1912042330?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuOTE0LjE5MTIwNDIzMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11715,Microsoft.Compute/GetVMImageFromLocation30Min;72175" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f0dfcec2-e604-4720-8690-ce63cfcc442e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a783e2a1-43a1-4f13-abce-44f2707aff6b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5444fab2-20f8-4235-bce4-5b2caea88223" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215401Z:5444fab2-20f8-4235-bce4-5b2caea88223" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E70E28B2E0924A5EA787A6B12EB2E32B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.914.1912042330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.914.1912042330\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.973.2001110547?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuOTczLjIwMDExMTA1NDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "54a19af4-f2d5-4465-8620-159d93d83199" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12105,Microsoft.Compute/GetVMImageFromLocation30Min;73102" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6081c53e-984c-4746-9ea9-44a4185bf692" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5b4c0a65-251e-4acf-b4ad-e8f9fe78f029" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "114fc7bf-5539-47ca-ba00-abda3ecf461d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215225Z:114fc7bf-5539-47ca-ba00-abda3ecf461d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 346CA504A5EA457EA4CD074C5AA5AD26 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:52:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:24 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.973.2001110547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.973.2001110547\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverdotnet/skus/ws2019-dotnetcore-2-2/versions/17763.973.2001110547?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJkb3RuZXQvc2t1cy93czIwMTktZG90bmV0Y29yZS0yLTIvdmVyc2lvbnMvMTc3NjMuOTczLjIwMDExMTA1NDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11714,Microsoft.Compute/GetVMImageFromLocation30Min;72174" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "44cdbd32-3798-4438-8c18-e2f438314d4c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e9ad9e5d-dcfb-440a-a7b9-5620edd9dda1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "82c9dd02-5d4f-47db-988b-b014f51432f3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215401Z:82c9dd02-5d4f-47db-988b-b014f51432f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9CA3F745483E4282AD666A78A59B7845 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:00 GMT" + ], + "Content-Length": [ + "957" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-28T20:00:00-04:00\",\r\n \"alternativeOption\": {\r\n \"type\": \"Offer\",\r\n \"value\": \"windowsserver\"\r\n }\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.973.2001110547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet/Skus/ws2019-dotnetcore-2-2/Versions/17763.973.2001110547\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverhotpatch-previews/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJob3RwYXRjaC1wcmV2aWV3cy9za3VzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "37aa772b-8f7b-4b12-82c7-c6073be65241" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9991,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "3fb925c5-6ed0-4a9a-a02b-be3f3437382b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ed12744c-9e38-49c6-a5e8-666ba9226787" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c07d0bf0-b9c1-485b-97d5-ee8151d33c41" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215225Z:c07d0bf0-b9c1-485b-97d5-ee8151d33c41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B0D1BA4E46B74C84A7FE799C970E079F Ref B: MNZ221060619011 Ref C: 2025-06-02T21:52:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:25 GMT" + ], + "Content-Length": [ + "477" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-2022-azure-edition-hotpatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverhotpatch-previews/Skus/windows-server-2022-azure-edition-hotpatch\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverhotpatch-previews/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJob3RwYXRjaC1wcmV2aWV3cy9za3VzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9985,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29974" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "c6d15bf3-8d69-43b9-8c3f-071f07b1f60a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/be49b406-b823-41c2-8e2a-615d54403709" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7e2e7bf5-113c-4913-8564-9687a9152fee" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215401Z:7e2e7bf5-113c-4913-8564-9687a9152fee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 10278CD8D8D649CDA98A3B0649096580 Ref B: MNZ221060609053 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:01 GMT" + ], + "Content-Length": [ + "477" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-2022-azure-edition-hotpatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverhotpatch-previews/Skus/windows-server-2022-azure-edition-hotpatch\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverhotpatch-previews/skus/windows-server-2022-azure-edition-hotpatch/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJob3RwYXRjaC1wcmV2aWV3cy9za3VzL3dpbmRvd3Mtc2VydmVyLTIwMjItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8cdc0f1e-d59d-48c4-89e6-1284ed6c40ff" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15907,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43901" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7d7afc5b-a725-473b-be17-6dc0f244014d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/112e90fb-f880-4f18-9183-c85337161efc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b64f18c7-3d72-4b2d-a0a5-c6cdd6686adc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215225Z:b64f18c7-3d72-4b2d-a0a5-c6cdd6686adc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E9C5A0747AA040C39BFC7EF2FB3A5D78 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:52:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:25 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverhotpatch-previews/skus/windows-server-2022-azure-edition-hotpatch/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJob3RwYXRjaC1wcmV2aWV3cy9za3VzL3dpbmRvd3Mtc2VydmVyLTIwMjItYXp1cmUtZWRpdGlvbi1ob3RwYXRjaC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15861,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43800" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "90c6f266-776c-4b91-85e5-430ef87d1eb6" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0f24705a-1fea-40b5-a053-0f735e2e6316" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a22875d4-90a8-47d4-81c6-5df2dae92051" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215401Z:a22875d4-90a8-47d4-81c6-5df2dae92051" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 82F5F79C5F3E49D0841D539A80DB7F60 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:01 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "4d769113-3772-4543-bc33-410c4a673e25" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9990,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29984" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "367ff4e1-e864-438b-8b57-a55303f5ec0a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fff208ed-0c0d-4ae8-9a7e-cba8339a1fa1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e06f7f5a-0a7f-43fb-931b-e7d44c61fa35" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215225Z:e06f7f5a-0a7f-43fb-931b-e7d44c61fa35" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F729FD0C5D624182937A33F8F4BF04DB Ref B: MNZ221060619021 Ref C: 2025-06-02T21:52:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:25 GMT" + ], + "Content-Length": [ + "1396" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1709-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1709-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1803-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9984,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29973" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "91c216ec-0a04-4fa9-94a2-da5d7ae5321d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9c172ede-c39d-41f7-9d04-84031c26cfa7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "2253657e-cc1c-432d-9f9b-4ee705ddc022" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215402Z:2253657e-cc1c-432d-9f9b-4ee705ddc022" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 66104489A9E84F679CC9ECF73D130F6B Ref B: MNZ221060609053 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:01 GMT" + ], + "Content-Length": [ + "1396" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1709-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1709-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1803-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "81b095bc-6a2b-4de8-9eac-3cb75e81ce73" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15906,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43900" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b44be978-6def-48cb-a42e-ab335aeb2148" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2949787f-5689-403e-9182-62d412b5c1ea" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a22fce1f-9f06-49bf-889f-5fc83a37cfaa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215225Z:a22fce1f-9f06-49bf-889f-5fc83a37cfaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1601A62320FC4F67BE6C676429E64491 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:52:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:25 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15860,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43799" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7ba4c332-f8e0-4a41-a65c-1c4b50addce7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d94fbb57-89bf-48f4-9715-073a30eb3402" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "46289530-ab79-4ba9-86f0-0982ab093eec" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215402Z:46289530-ab79-4ba9-86f0-0982ab093eec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6CA452DF64124F70BE50C71C020E710F Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:01Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:01 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ef16beab-4340-48a3-ad77-c0af919c156b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15905,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43899" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2871ba52-6e41-4414-95ea-8ba6cd500464" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d48d7862-58be-4aff-8608-c20b394df7fc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9d62e803-dacb-4b0e-893c-c70162ff752d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215225Z:9d62e803-dacb-4b0e-893c-c70162ff752d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 99884888A362463D91BC2AF0CFE14EF4 Ref B: MNZ221060608051 Ref C: 2025-06-02T21:52:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:25 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15859,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43798" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "46f4f236-087a-4dd6-ae49-ae27b7f3c5b2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5f8241bb-d4ac-4f25-9e9d-f1d289bf6fb0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0b24ebd0-0332-47e0-a77e-bbcf63794f8f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215402Z:0b24ebd0-0332-47e0-a77e-bbcf63794f8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 18E542E384AE4CA390BBC6E5067FEA59 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:01 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1803-with-Containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE4MDMtd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "90ffc593-bb48-428b-8558-8dde032a86b6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15904,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43898" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0e093519-2afd-49b3-ba77-275c327a5368" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c556d5bf-e026-4358-8406-4df78ee7ee3b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0cab3bcd-7b88-49bb-a488-669bf56cd953" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215226Z:0cab3bcd-7b88-49bb-a488-669bf56cd953" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F23D911E7DC4B2A8FA37EFB2E82605B Ref B: MNZ221060610051 Ref C: 2025-06-02T21:52:25Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:25 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1803-with-Containers-smalldisk/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE4MDMtd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15858,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43797" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4217e025-fbba-484a-a5d0-bd1301515e5c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8342742e-a3df-4b56-8f00-22004dfec62c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a1ec972b-b433-4f4a-9fc6-effb2db0dd1d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215402Z:a1ec972b-b433-4f4a-9fc6-effb2db0dd1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4832905AC16A4E03B6A190A976B6B074 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:01 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "aa052481-c093-421c-8932-ac44055a55d4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9989,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29983" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "aefc25a4-7feb-45e4-8de8-284e742d19df" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3472c1fc-74d1-40b5-a337-3283a8801810" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c1f82015-6691-4c4e-9ce2-764ec7307cce" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215226Z:c1f82015-6691-4c4e-9ce2-764ec7307cce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5A347532F3EA4EF2B7077F1F79D4793D Ref B: MNZ221060610039 Ref C: 2025-06-02T21:52:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:25 GMT" + ], + "Content-Length": [ + "2073" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"server2012upgrade\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2012upgrade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"server2016upgrade\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"server2019upgrade\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"server2022upgrade\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"server2025upgrade\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9983,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29972" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_133910183252774807" + ], + "x-ms-request-id": [ + "05fbd9d2-f1ce-421e-903a-ca35cc90ed8c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/557c634b-2dba-4965-8654-96a637735ff0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6dbf04fd-95e7-4e19-a200-9d03d5647806" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215402Z:6dbf04fd-95e7-4e19-a200-9d03d5647806" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 22F06E4792F4457E8D21EB7FCD8B05A9 Ref B: MNZ221060609053 Ref C: 2025-06-02T21:54:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:01 GMT" + ], + "Content-Length": [ + "2073" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"server2012upgrade\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2012upgrade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"server2016upgrade\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"server2019upgrade\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"server2022upgrade\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"server2025upgrade\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2012upgrade/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxMnVwZ3JhZGUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1d8399d5-bb2c-4cc9-971a-c492d0095f34" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15903,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43897" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "21b85a4d-728a-4db7-882c-f00495791363" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f8bfb407-602b-47dd-8fb4-8606ea0760e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "569f5f62-a3c1-4b8f-afd8-769273af3545" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215226Z:569f5f62-a3c1-4b8f-afd8-769273af3545" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 648BA86336DB43419867E75AE3A49971 Ref B: MNZ221060618051 Ref C: 2025-06-02T21:52:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:25 GMT" + ], + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.24523.231004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2012upgrade/Versions/14393.24523.231004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.5996.230622\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2012upgrade/Versions/14393.5996.230622\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2012upgrade/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxMnVwZ3JhZGUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15857,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43796" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4a1b2ca0-2e05-442d-8b1d-4097a9dfd39d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cc42867a-77e7-4bbd-bbf4-ac0e899a3637" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "9c823cd0-d811-4ab7-bcb5-1f8a906e678b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215402Z:9c823cd0-d811-4ab7-bcb5-1f8a906e678b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4D0BC773D6FD4410AFB20517C45DACE5 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:01 GMT" + ], + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.24523.231004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2012upgrade/Versions/14393.24523.231004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.5996.230622\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2012upgrade/Versions/14393.5996.230622\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2012upgrade/versions/14393.24523.231004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxMnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuMjQ1MjMuMjMxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "f5bb4f25-1a96-4c0b-a14e-285721bc60fe" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12104,Microsoft.Compute/GetVMImageFromLocation30Min;73101" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e9487834-ff25-4bdf-9b13-5cbc5fc1d9a0" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0a77c3ec-494e-4999-94b7-dbc764b68235" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "58190cdd-c586-4fe3-80f4-eb1595fe5489" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215226Z:58190cdd-c586-4fe3-80f4-eb1595fe5489" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 89A024FCF07D4608953A36F8C8AFF19F Ref B: MNZ221060619047 Ref C: 2025-06-02T21:52:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:26 GMT" + ], + "Content-Length": [ + "1058" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.24523.231004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2012upgrade/Versions/14393.24523.231004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2012upgrade/versions/14393.24523.231004?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxMnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuMjQ1MjMuMjMxMDA0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11713,Microsoft.Compute/GetVMImageFromLocation30Min;72173" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "da033178-8d1a-4fcf-8d6f-b5e610f13946" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9ea704dc-b714-4c51-9181-837035fcf9a9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "2a7ec0cd-f1db-4a41-84f8-24afe00b1a70" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215402Z:2a7ec0cd-f1db-4a41-84f8-24afe00b1a70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B516B465A7EA4653B01AC0986A0902E8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:01 GMT" + ], + "Content-Length": [ + "1058" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.24523.231004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2012upgrade/Versions/14393.24523.231004\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2012upgrade/versions/14393.5996.230622?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxMnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNTk5Ni4yMzA2MjI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "395a0175-51ad-4f81-aa47-e092f92fc730" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12103,Microsoft.Compute/GetVMImageFromLocation30Min;73100" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "361f5cd7-3adf-4a43-8c6e-6c264817ca8e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cb06b8a8-31d3-43db-b94b-e66635667d64" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0f1b6acd-8990-4c8f-b692-5988ea618165" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215226Z:0f1b6acd-8990-4c8f-b692-5988ea618165" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 33611618A2FC440BB177F93FDFF40C2D Ref B: MNZ221060609007 Ref C: 2025-06-02T21:52:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:25 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.5996.230622\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2012upgrade/Versions/14393.5996.230622\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2012upgrade/versions/14393.5996.230622?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxMnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNTk5Ni4yMzA2MjI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11712,Microsoft.Compute/GetVMImageFromLocation30Min;72172" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "028be99c-516a-488a-ae90-b8e5e4f9a59c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ca3cc666-5066-4a59-9d8c-32529e0be1a0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9e53f355-7225-4b61-a48a-1d1c20bffb32" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215402Z:9e53f355-7225-4b61-a48a-1d1c20bffb32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 55016277E02B4D0E8653A29E139003E4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:01 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.5996.230622\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2012upgrade/Versions/14393.5996.230622\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "3b8f755d-ef09-492a-802a-afe6c9a6bc82" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15902,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43896" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "63130102-211f-427a-ade7-df7cbed37276" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d6fb771c-0372-452a-a90a-ec984decb56b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c541d6ef-153a-4365-a3f3-7aab32d0bf98" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215226Z:c541d6ef-153a-4365-a3f3-7aab32d0bf98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B5AF6FD749464D9FBE6A6F8F9D19E020 Ref B: MNZ221060608019 Ref C: 2025-06-02T21:52:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:26 GMT" + ], + "Content-Length": [ + "2215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15856,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43795" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e8950c77-0a2e-4e70-b4ed-d2e1530c192d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8445c8b5-fb2e-4f23-905f-7f8b7ead2adb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "83b4f4bb-a30d-44aa-9b12-9db8b4b09d1c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215402Z:83b4f4bb-a30d-44aa-9b12-9db8b4b09d1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E50206983BE3447D8699ABE20D960E04 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:01 GMT" + ], + "Content-Length": [ + "2215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7515.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7606.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7699.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7785.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7876.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7973.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.8066.250511\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNzUxNS4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "bbe2e662-7aa8-4e23-b7c8-ce9baa4898b2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12102,Microsoft.Compute/GetVMImageFromLocation30Min;73099" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bda5b271-3054-48bb-b1c5-e2b40796dadd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3563d623-a790-4d8a-82b2-e145c170bbd8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "075ff6c3-20df-4832-ba0b-fb202e951e55" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215226Z:075ff6c3-20df-4832-ba0b-fb202e951e55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0D5ECCE1B34E423AA0AA24C08A5CC39B Ref B: MNZ221060619021 Ref C: 2025-06-02T21:52:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:26 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.7515.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNzUxNS4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11711,Microsoft.Compute/GetVMImageFromLocation30Min;72171" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "909d6f13-b15c-476a-a979-0aad2bee60f9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a0ee63d2-c8d7-41f2-bb34-b797ef8388eb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "acef842d-12a5-49f7-be11-cdfc12d54fd4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215402Z:acef842d-12a5-49f7-be11-cdfc12d54fd4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 627B165AD4D949EB81E72E78441CCC5C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:01 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7515.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7515.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNzYwNi4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "278287b8-d938-4b2d-8259-a7501338cc62" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12101,Microsoft.Compute/GetVMImageFromLocation30Min;73098" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e44a3872-9578-4d85-a8d1-23d431a3178b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/91adf8af-e787-400f-95fb-cea01a8d28ed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5449d93b-49b0-46fd-a01a-cd05bf1fedd2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215226Z:5449d93b-49b0-46fd-a01a-cd05bf1fedd2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 07EF615C0AC648AD93615444707C4DC1 Ref B: MNZ221060609035 Ref C: 2025-06-02T21:52:26Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:26 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.7606.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNzYwNi4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11710,Microsoft.Compute/GetVMImageFromLocation30Min;72170" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "e6998c7e-0969-4a62-b325-f79ba1e75259" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c10c9b30-5631-4474-b145-19bab54c5d12" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6aa70d62-f332-49f5-bbf7-82edd8c7d5b8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215402Z:6aa70d62-f332-49f5-bbf7-82edd8c7d5b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BBD3AFA2D922437A9193121503DBA5DA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:01 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7606.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7606.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNzY5OS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "33646115-ae31-4c8e-859c-06b561d8051f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12100,Microsoft.Compute/GetVMImageFromLocation30Min;73097" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a2a5b932-7eeb-4f71-8b47-728009b85c09" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c09e0d94-ddab-4380-8814-b17e09e52736" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1e3f1f3f-52fb-4973-87f6-512bbfa36d09" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215227Z:1e3f1f3f-52fb-4973-87f6-512bbfa36d09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 725F1566B643434684E43633DDBB2737 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:52:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:26 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.7699.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNzY5OS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11709,Microsoft.Compute/GetVMImageFromLocation30Min;72169" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3e1475d8-1ba1-4544-996d-ebadffb4a289" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d97d4ae5-b97f-4fb0-a058-74d578800914" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "1a113ac3-c1f5-4c8d-8192-935f75115558" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215402Z:1a113ac3-c1f5-4c8d-8192-935f75115558" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D04E1DC1EB8048D4AC0B7BE9D55C0107 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:02 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7699.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7699.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNzc4NS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "44b895ca-559b-4884-8fc9-adf01cacc3e6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12099,Microsoft.Compute/GetVMImageFromLocation30Min;73096" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "93b3d4a3-8a9a-4907-8853-3989efe1c1de" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4e893121-d88a-4680-969e-10226420651c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "6de799f6-9dc8-4632-a2ab-1bfaeca46e5d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215227Z:6de799f6-9dc8-4632-a2ab-1bfaeca46e5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 04E5BCE9070E40FC9BEAE82D3B7A41A4 Ref B: MNZ221060619049 Ref C: 2025-06-02T21:52:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:26 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.7785.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNzc4NS4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11708,Microsoft.Compute/GetVMImageFromLocation30Min;72168" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "c6235a93-6686-4fa2-b409-81b0d4763ea7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a97100a9-a833-40a7-8ffe-f3632394ac17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "910ee448-bf8a-4252-aba3-9039f03fd098" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215402Z:910ee448-bf8a-4252-aba3-9039f03fd098" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 357C57E9CB31442E90865502850667D8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:02 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7785.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7785.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNzg3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "23d6cd8f-4e8f-4ee0-99cb-5b20af46c2d3" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12098,Microsoft.Compute/GetVMImageFromLocation30Min;73095" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "052102d3-689d-46c2-b977-37a26df691d4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0ce5f55b-64ce-4a19-b631-62eabcfbf8c5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d2cbf60a-a6fb-42ac-823a-e16ef612e1d8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215227Z:d2cbf60a-a6fb-42ac-823a-e16ef612e1d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7B4B239AA3BD4F088717D89C1218325B Ref B: MNZ221060619033 Ref C: 2025-06-02T21:52:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:26 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.7876.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNzg3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11707,Microsoft.Compute/GetVMImageFromLocation30Min;72167" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7ecdd479-9214-47d6-a9fd-6c4b3ffb4467" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a19c86b7-293a-48c1-a07d-f1f318d33787" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "6c44ee25-1678-4d69-a210-38ad9cc788de" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215402Z:6c44ee25-1678-4d69-a210-38ad9cc788de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FD01C977723A460D9346966E257C29A6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:02Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:02 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7876.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7876.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNzk3My4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "45c1121e-3968-4c3a-9454-777980637670" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12097,Microsoft.Compute/GetVMImageFromLocation30Min;73094" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b103c071-01fd-4184-9464-3ce2756fb24c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2cfaa5bc-a362-42ba-a669-f211c8269ba4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "013f9ab5-5e8a-4260-a11a-b349ce759bbc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215227Z:013f9ab5-5e8a-4260-a11a-b349ce759bbc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D4556D20EFCA4E7AABD45F99B7C2F43C Ref B: MNZ221060608033 Ref C: 2025-06-02T21:52:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:26 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.7973.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuNzk3My4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11706,Microsoft.Compute/GetVMImageFromLocation30Min;72166" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ea17ca94-f53a-481c-9b59-483dde00553c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/663e33be-2b1a-425a-b1c4-595e75d3eb8e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "9c06af03-7f6a-4443-b68c-46901a86290f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215403Z:9c06af03-7f6a-4443-b68c-46901a86290f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 75A448F99FC749D389C782154C45B9B1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:02 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.7973.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.7973.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuODA2Ni4yNTA1MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7832b597-a932-42e2-a142-db309d7c224b" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12096,Microsoft.Compute/GetVMImageFromLocation30Min;73093" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8b441294-034e-406c-bd2c-d670c155e659" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0cf36050-ea14-470c-81e0-a3d4eae96cf3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8d05d704-ed37-4df0-b28b-84ddb39c1731" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215227Z:8d05d704-ed37-4df0-b28b-84ddb39c1731" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 17EC54E0532F4F64844A8854571C5802 Ref B: MNZ221060610009 Ref C: 2025-06-02T21:52:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:27 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2016upgrade/versions/14393.8066.250511?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxNnVwZ3JhZGUvdmVyc2lvbnMvMTQzOTMuODA2Ni4yNTA1MTE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11705,Microsoft.Compute/GetVMImageFromLocation30Min;72165" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "7c591e92-6c2c-4d67-a786-f2eab48311bb" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/55eb4425-e278-4d50-beff-ec98b627e21f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d65ef6c3-e3f2-4808-b147-120726740f4f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215403Z:d65ef6c3-e3f2-4808-b147-120726740f4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 82DA43A25B124B5E8B6CE3870D173910 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:02 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"14393.8066.250511\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2016upgrade/Versions/14393.8066.250511\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fdec86c0-a299-4fb3-87ad-8de97c69bb7f" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15901,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43895" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6028ae73-410a-4184-9a87-179a955325f1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0de7e010-f150-4550-aa5d-143551ebe90a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f7728f20-7f81-44ef-ac58-fd83eedab002" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215227Z:f7728f20-7f81-44ef-ac58-fd83eedab002" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 056B967C69EF4C3D845BA9D0F21CCAFB Ref B: MNZ221060618027 Ref C: 2025-06-02T21:52:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:26 GMT" + ], + "Content-Length": [ + "2531" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15855,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43794" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "10736190-a696-4b62-9a02-b46ce84f9e33" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/be9c1ca4-7f88-40dd-9c87-e4aa5d57b18a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "a1a4ca3f-3130-4252-84f6-cdc493d4f05f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215403Z:a1a4ca3f-3130-4252-84f6-cdc493d4f05f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0606C997F7F345509FF26E58FDA56BBF Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:02 GMT" + ], + "Content-Length": [ + "2531" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6532.241101\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6659.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6775.250109\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6893.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7009.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7240.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7314.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7322.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNjUzMi4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "fe23a850-3252-4f45-9744-7a4ebbcb131a" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12095,Microsoft.Compute/GetVMImageFromLocation30Min;73092" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "59a0b155-8ea5-4401-91f6-03e8aa7d2936" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a0ea0027-2623-4416-a959-7fa3762bdb9d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4f5d9af3-9e82-468a-b19b-d9c1a82199e7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215227Z:4f5d9af3-9e82-468a-b19b-d9c1a82199e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 65CC78458759435D83A7DA7580078D49 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:52:27Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:26 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.6532.241101?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNjUzMi4yNDExMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11704,Microsoft.Compute/GetVMImageFromLocation30Min;72164" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "b5c2222e-708d-4477-b968-44b45df4b500" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/6643b293-88a9-4da3-8ea3-82de6380b067" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c48eef59-b5d8-4e27-bff3-fb5ff11ff424" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215403Z:c48eef59-b5d8-4e27-bff3-fb5ff11ff424" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4A3DF78B285F4E84B0799B86F1BA9FD0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:02 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6532.241101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6532.241101\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNjY1OS4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "49a9f040-5ab6-4d0b-adbd-b216872d8866" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12094,Microsoft.Compute/GetVMImageFromLocation30Min;73091" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4bf0e0e8-b37c-4bc2-b8e5-f72b3c12a02f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3fb50ad5-ec8a-454b-bd8d-b84ea9c8a7c1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d36c77f1-0c41-459d-8abc-30dd0ffc61cb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215228Z:d36c77f1-0c41-459d-8abc-30dd0ffc61cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C422D8F922CF4FC2B16C2FFE6C314BB2 Ref B: MNZ221060618045 Ref C: 2025-06-02T21:52:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:27 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.6659.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNjY1OS4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11703,Microsoft.Compute/GetVMImageFromLocation30Min;72163" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "5114fcc2-c47d-40d9-866a-19c1b32a3f86" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7705f149-2a19-483f-abf6-d17b25c656e3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "80c01197-1620-4f81-8c98-7743cd5096ca" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215403Z:80c01197-1620-4f81-8c98-7743cd5096ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1F7C3AF6EE29462BB5DA037170452596 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:02 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6659.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6659.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "90567418-3912-44e6-afbf-b1b38d4ed792" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12093,Microsoft.Compute/GetVMImageFromLocation30Min;73090" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2947c485-536f-403c-8a11-097782c16b2b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/01e2efeb-85a2-4886-bb91-9b9d32c03f37" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e204dfaf-ba1f-40ed-9edb-ef237239bd4f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215228Z:e204dfaf-ba1f-40ed-9edb-ef237239bd4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2F6934A0EB044E2EB4087712BD2611CC Ref B: MNZ221060618011 Ref C: 2025-06-02T21:52:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:28 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.6775.250109?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNjc3NS4yNTAxMDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11702,Microsoft.Compute/GetVMImageFromLocation30Min;72162" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "06226a09-4f17-4159-b78c-7fd9917b4ec7" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/814429fd-005a-482e-a42f-34baa05ae41a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "6e9bf220-e3d7-4750-8de3-8981ee4ad53b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215403Z:6e9bf220-e3d7-4750-8de3-8981ee4ad53b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3161B8FAEBCE4ADCBD2B086F2D8765DA Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:02 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6775.250109\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6775.250109\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "c34529cd-0456-4aff-b674-269352d776c0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12092,Microsoft.Compute/GetVMImageFromLocation30Min;73089" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "607d9ebf-d522-4439-bbd6-942b0fa26107" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c21aa9e2-0915-4b3e-b513-0b41218b7700" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d4250083-34d3-4949-9208-a9b3c537ed18" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215228Z:d4250083-34d3-4949-9208-a9b3c537ed18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 62826559A4594F31860791FF8DF019C2 Ref B: MNZ221060619047 Ref C: 2025-06-02T21:52:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:28 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.6893.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNjg5My4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11701,Microsoft.Compute/GetVMImageFromLocation30Min;72161" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "3b8dcd87-cb84-4803-83f9-d7909e20db1c" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2f68f74b-b07a-4b03-902b-251b7b06cbcf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "3a385933-308c-40c7-98e9-f81c7803cf9d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215403Z:3a385933-308c-40c7-98e9-f81c7803cf9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1F71C14B7B4245E79A1295C5C4F8C85B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:02 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.6893.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.6893.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "845cbe0a-5e95-4ab3-9090-184d79fb47f2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12091,Microsoft.Compute/GetVMImageFromLocation30Min;73088" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "418c6483-0718-435f-ba99-3b622431d5ac" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6a6a155c-6c58-4fdf-8cac-766b65829c75" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5a3b9260-3499-4c66-903d-41fa38d3bc3d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215228Z:5a3b9260-3499-4c66-903d-41fa38d3bc3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CA8A28EF9A8C43E4B9AB7CEA1E51738B Ref B: MNZ221060619047 Ref C: 2025-06-02T21:52:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:28 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.7009.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNzAwOS4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11700,Microsoft.Compute/GetVMImageFromLocation30Min;72160" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "71cebf8f-b99d-4bd4-98ea-2592cc8e11b1" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2fbf9e96-d874-4e2c-80b4-23d46a1111b1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "05311386-14de-4e7e-b86e-9b6b98703623" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215403Z:05311386-14de-4e7e-b86e-9b6b98703623" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 94C417E89D9D44E397C1B9DF47A0E74A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:03 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7009.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7009.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "52029118-7e3c-4d9a-b082-27a84f35e999" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12090,Microsoft.Compute/GetVMImageFromLocation30Min;73087" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d4357c7f-ba25-48cf-8671-07e0bd574add" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/cbfcc397-03be-472e-9c2a-82e70e9df224" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "57688ea0-57c6-48cc-99f8-8cd7bd9ddbe2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215228Z:57688ea0-57c6-48cc-99f8-8cd7bd9ddbe2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FBCC809BF03F488D8F8E39A652F8AE2C Ref B: MNZ221060610029 Ref C: 2025-06-02T21:52:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:28 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.7240.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNzI0MC4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11699,Microsoft.Compute/GetVMImageFromLocation30Min;72159" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ea2cbdc9-091f-4db8-bace-c4de6ed6d50d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2f21ed8e-5b2a-4739-89d8-4798891f2944" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" + ], + "x-ms-correlation-request-id": [ + "b9e5bcc1-f4c7-4737-b113-c124ad5e7134" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215403Z:b9e5bcc1-f4c7-4737-b113-c124ad5e7134" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C9A6BD7A130249F7BE60476698FD961C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:03 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7240.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7240.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "6ea7cc5d-b4b0-4ea1-abb8-6980e7fbaaa0" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12089,Microsoft.Compute/GetVMImageFromLocation30Min;73086" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "19f29388-6ff0-4bad-a34d-9f7d2f0a620a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/eb4ea7a0-f2ec-42f4-af61-53e6894476ff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "56b33271-129d-44f0-8682-20948225745e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215228Z:56b33271-129d-44f0-8682-20948225745e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6E75D73AC4DA4EA5840825106BD46500 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:52:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:28 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.7314.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNzMxNC4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11698,Microsoft.Compute/GetVMImageFromLocation30Min;72158" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a14a6a35-9615-4749-984f-c831169e41b9" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8675c1e5-d62a-4d45-839b-3a19b37c0ad8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "43773379-8cb7-44cb-814e-281c9c80da22" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215403Z:43773379-8cb7-44cb-814e-281c9c80da22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6D1D484513D34FBBBA57FE951EC9DAB4 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:03 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7314.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7314.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "dde1b9fb-31f4-464f-921c-c6660b3946c6" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12088,Microsoft.Compute/GetVMImageFromLocation30Min;73085" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cea8c8b3-f208-46cc-bbfc-1873b372fe76" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/435f3d64-9acf-49d3-a829-82316781a067" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8bbcaba8-9d54-40eb-b93e-fb7e30be689a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215228Z:8bbcaba8-9d54-40eb-b93e-fb7e30be689a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FB8E219AB9D84282A1E4FAB7B96CE93F Ref B: MNZ221060608017 Ref C: 2025-06-02T21:52:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:28 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2019upgrade/versions/17763.7322.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAxOXVwZ3JhZGUvdmVyc2lvbnMvMTc3NjMuNzMyMi4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11697,Microsoft.Compute/GetVMImageFromLocation30Min;72157" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "f8b088ec-9b85-48a8-8ef1-cf7c721dea8f" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0ef5239c-b332-4056-a8e7-ee21af9eda3a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" + ], + "x-ms-correlation-request-id": [ + "5cf74bb3-accb-4461-a266-ced1676c8d3d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215404Z:5cf74bb3-accb-4461-a266-ced1676c8d3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0347C0D0B98B42829E02B949E37E1712 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:03Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:03 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.7322.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2019upgrade/Versions/17763.7322.250524\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "cc77d03d-db93-4ba1-8754-0033bfff0714" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15900,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43894" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5f80b960-d7d6-4f17-93cb-718ab197baff" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/82eab7c0-0a78-424d-8114-c38afcb53abb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0d7411a0-fe9a-4d37-b9c8-0fec95ba1efc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215228Z:0d7411a0-fe9a-4d37-b9c8-0fec95ba1efc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 78C91354986542BCA46DAD1D239DAA27 Ref B: MNZ221060608021 Ref C: 2025-06-02T21:52:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:28 GMT" + ], + "Content-Length": [ + "2531" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15854,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43793" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "0c0c9f58-0dd5-464c-b8e0-cca7f5e4ac62" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3e69cc03-4945-4b4f-8f48-c864c575f317" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b546cb0c-6172-4e81-bef2-f6abba314ad3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215404Z:b546cb0c-6172-4e81-bef2-f6abba314ad3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 559C6229FB274BF687223E223675760F Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:03 GMT" + ], + "Content-Length": [ + "2531" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.2849.241102\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.2966.241205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3091.250112\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3207.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3328.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3561.250409\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3692.250509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3695.250523\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMjg0OS4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7ec7df46-4a2b-4f43-affa-864bcf36bd91" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12087,Microsoft.Compute/GetVMImageFromLocation30Min;73084" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "97ce4538-2f36-4090-88dd-edd7871e5874" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8b0bcaf9-1411-487a-ada3-bbca9b811d35" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "246ca7eb-bb93-46ea-bba6-85b3c578ee1d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215229Z:246ca7eb-bb93-46ea-bba6-85b3c578ee1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3FE4BF9DEBA34A049AA18B5D7B22725A Ref B: MNZ221060610011 Ref C: 2025-06-02T21:52:28Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:28 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.2849.241102?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMjg0OS4yNDExMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11696,Microsoft.Compute/GetVMImageFromLocation30Min;72156" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "80760225-9ad3-4117-889c-dd6a0f351fe5" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/141fa27b-5dd2-4e77-8a5c-2d49537cd45a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" + ], + "x-ms-correlation-request-id": [ + "64567a21-0857-4ddf-9f69-e43babc21e43" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215404Z:64567a21-0857-4ddf-9f69-e43babc21e43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC89EF4A6C394A5BABE4FA556598DA09 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:03 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2849.241102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.2849.241102\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMjk2Ni4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7047b843-b301-42c1-8ded-d963833ea8e8" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12086,Microsoft.Compute/GetVMImageFromLocation30Min;73083" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "58a3bddb-b6af-44da-a3e1-36d7a4b97219" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2a969530-2b5d-48f1-b3c2-88561d36dc6b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "4e9d9c42-d4f6-4390-88ff-efe9be245a65" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215229Z:4e9d9c42-d4f6-4390-88ff-efe9be245a65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 17E3736D06074690B8A7AD290993CB3D Ref B: MNZ221060618035 Ref C: 2025-06-02T21:52:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:29 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.2966.241205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMjk2Ni4yNDEyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11695,Microsoft.Compute/GetVMImageFromLocation30Min;72155" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "2ca2e68e-3ec8-4b1b-b8ea-44e9f2dd1450" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2d6a888d-e85d-4dea-ade8-08d28facd722" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" + ], + "x-ms-correlation-request-id": [ + "69c26188-6779-4329-b535-4d7e0e1c2b0b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215404Z:69c26188-6779-4329-b535-4d7e0e1c2b0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D200FAB7C53D4A92A082777CDB7D49D7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:03 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2966.241205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.2966.241205\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "40d46c38-e582-468e-bfd6-0bf42ee5d377" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12085,Microsoft.Compute/GetVMImageFromLocation30Min;73082" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "67fd1c64-8708-476e-8674-b70c1e59c8f3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/77419cf5-c8e3-4497-8200-20d56290837a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "5377c1eb-c763-48b2-8b0e-ef29c6399a4d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215229Z:5377c1eb-c763-48b2-8b0e-ef29c6399a4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E8B3F36F390D4EEA8B84FAF9520EE643 Ref B: MNZ221060610047 Ref C: 2025-06-02T21:52:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:28 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.3091.250112?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMzA5MS4yNTAxMTI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11694,Microsoft.Compute/GetVMImageFromLocation30Min;72154" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "cb13dc51-d6ae-4637-8e2a-c4879e82bc68" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fb7f0df8-907b-4f26-9dda-842a5c5920a4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "1a4980fe-a911-4bb4-b365-206388f47a8e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215404Z:1a4980fe-a911-4bb4-b365-206388f47a8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D1FA5328F89241C6A248209B69A8C3CE Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:03 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3091.250112\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3091.250112\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMzIwNy4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5fd04c36-13cf-460e-a2d1-b163e6405dbd" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12084,Microsoft.Compute/GetVMImageFromLocation30Min;73081" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0d4f8cda-9f59-4c7d-86c9-8fd1c5ab1330" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d6752721-36db-4a33-bff0-c00cdbc2f05e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "b22a337c-9080-42bf-a663-c2aeab5c3fdc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215229Z:b22a337c-9080-42bf-a663-c2aeab5c3fdc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A9E0DCCDA77645EBA4DBF2F13B959AD3 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:52:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:28 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.3207.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMzIwNy4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11693,Microsoft.Compute/GetVMImageFromLocation30Min;72153" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "a18457b9-8939-4903-b319-34817f2f602b" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/75e4f881-82b2-47bb-8198-564f6a7b60f4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "f277d8f1-c117-4fe2-8c31-72a16ecd9941" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215404Z:f277d8f1-c117-4fe2-8c31-72a16ecd9941" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 91DA11BF067D40328DD1D2DBDAE86730 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:03 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-25T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3207.250210\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMzMyOC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "44194848-b8a0-4b0e-8d0c-fd03b6f84aa5" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12083,Microsoft.Compute/GetVMImageFromLocation30Min;73080" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b00707e-9ae7-4fa9-89d2-07d1d9deed9a" + "d4944708-ad3c-4dcd-a9c2-f2d127300c73" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7f878f5d-0450-4b53-99c1-eea6f37bf345" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "0aa14590-becb-47cf-8977-97584534262d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215229Z:0aa14590-becb-47cf-8977-97584534262d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9C5C4C7C420D47ADA21B781C87080B0E Ref B: MNZ221060608053 Ref C: 2025-06-02T21:52:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:28 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3328.250306\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.3328.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMzMyOC4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11692,Microsoft.Compute/GetVMImageFromLocation30Min;72152" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "4265cd8b-9901-4c8d-b4a2-6c3060600ff4" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/a7025149-d883-4d67-982a-3a2f592ada63" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14608" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "0e0a15c2-fc91-4a68-ae27-37f0e611c0b2" + "4da859df-cf7a-4446-ba5d-ff13ae7ba27c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012720Z:0e0a15c2-fc91-4a68-ae27-37f0e611c0b2" + "EASTUS2:20250602T215404Z:4da859df-cf7a-4446-ba5d-ff13ae7ba27c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 27B73FB1361044EBB116C5180C1BC72A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:04Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:19 GMT" + "Mon, 02 Jun 2025 21:54:03 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3328.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3328.250306\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNTEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f3844bbe-7f92-4576-9273-cf22ff4080db" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "78551085-4530-4f63-8ee4-c49b69b5cb7a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12082,Microsoft.Compute/GetVMImageFromLocation30Min;73079" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b077291a-e6e6-45fe-b39d-80a765efe0fd" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7a7d16b0-ecdb-41fd-a75b-8101e842b337" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "3cc67454-772a-4655-b091-b7ff33ef85c5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215229Z:3cc67454-772a-4655-b091-b7ff33ef85c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9BF9E44AC4114F6FAE8F6916F2A8B115 Ref B: MNZ221060618037 Ref C: 2025-06-02T21:52:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:28 GMT" + ], "Content-Length": [ - "427" + "1104" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3561.250409\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.3561.250409?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMzU2MS4yNTA0MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11691,Microsoft.Compute/GetVMImageFromLocation30Min;72151" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], "x-ms-request-id": [ - "b2c34375-7e7c-4f43-801e-8a21b0ed3f6c" + "b3b36ee7-64ca-4c84-a6d1-adc1273b8178" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/51994035-7cf1-4b46-87cc-8074e09adfc9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14821" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "05c0d316-8508-42b6-ac07-e36f98797896" + "08609a8a-597e-4f94-b6bc-717df2119243" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012651Z:05c0d316-8508-42b6-ac07-e36f98797896" + "EASTUS2:20250602T215404Z:08609a8a-597e-4f94-b6bc-717df2119243" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 39D48D5117A64154B8878BDF0C88FB33 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:04Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:50 GMT" + "Mon, 02 Jun 2025 21:54:03 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3561.250409\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3561.250409\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNTEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMzY5Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "22d66c27-0d35-465f-8f1f-56f2afb442ad" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "0cb9f195-e5b9-4fe5-aea5-c672b98cb7ca" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12081,Microsoft.Compute/GetVMImageFromLocation30Min;73078" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ce8060e1-b249-4aec-b272-4bcceaa6303a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/148aa7ab-1a5a-4b23-8b89-01c6fe3f3f40" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e0234c67-3ec1-47cc-9e9a-eef62d6fd34a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215229Z:e0234c67-3ec1-47cc-9e9a-eef62d6fd34a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DD2FCBCEDE664415924CBE73F0E6CD80 Ref B: MNZ221060608007 Ref C: 2025-06-02T21:52:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:29 GMT" + ], "Content-Length": [ - "427" + "1104" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3692.250509\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.3692.250509?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMzY5Mi4yNTA1MDk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11690,Microsoft.Compute/GetVMImageFromLocation30Min;72150" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], "x-ms-request-id": [ - "898495b7-53c3-45a1-810d-46fe0ed450c4" + "a9a5a317-c55d-4607-bb57-2ed1f24f46b9" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/251ff414-bc14-4055-a61e-a7fb2128dbf5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14607" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "c3263a5a-4e29-45c3-9399-3fb6cfda74c0" + "56ed4dc1-0241-4d21-8654-804b6d07a1ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012720Z:c3263a5a-4e29-45c3-9399-3fb6cfda74c0" + "EASTUS2:20250602T215404Z:56ed4dc1-0241-4d21-8654-804b6d07a1ab" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EA5228D8B7CA497C952370E74E0A9A2B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:04Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:19 GMT" + "Mon, 02 Jun 2025 21:54:03 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3692.250509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3692.250509\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170619?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNjE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMzY5NS4yNTA1MjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6812638d-60c6-4b5a-8b98-5c355b7826eb" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "98ed4582-05bd-42fa-a285-f146686c04a0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170619\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170619\"\r\n}", + "RequestBody": "", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12080,Microsoft.Compute/GetVMImageFromLocation30Min;73077" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b3912ccd-6721-48bd-9d9e-573d3e0f0b97" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c3b10a8b-fd57-4416-9deb-7e210331be71" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "d0068821-97ee-4d12-872a-866826c1aacf" + ], + "x-ms-routing-request-id": [ + "EASTUS:20250602T215229Z:d0068821-97ee-4d12-872a-866826c1aacf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 916791640CBF4278BDF39BD2362C99E4 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:52:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:28 GMT" + ], "Content-Length": [ - "427" + "1104" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3695.250523\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2022upgrade/versions/20348.3695.250523?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyMnVwZ3JhZGUvdmVyc2lvbnMvMjAzNDguMzY5NS4yNTA1MjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11689,Microsoft.Compute/GetVMImageFromLocation30Min;72149" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], "x-ms-request-id": [ - "c9a8da9c-008b-4056-ae96-beae964a9505" + "89794d9f-3b98-4c2d-bc71-8ae50692e3a1" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/98d72944-9e20-412f-8ce2-886eecb0a18a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14820" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "74066a14-e1b5-4924-bce5-23942de91601" + "4e856389-8d11-477b-b98d-3a692f8ac1f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012651Z:74066a14-e1b5-4924-bce5-23942de91601" + "EASTUS2:20250602T215404Z:4e856389-8d11-477b-b98d-3a692f8ac1f3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9774DA402EB64020A386ECF4124451A1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:04Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:51 GMT" + "Mon, 02 Jun 2025 21:54:03 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3695.250523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2022upgrade/Versions/20348.3695.250523\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170619?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNjE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c7cace2a-4260-484e-8664-2612a06c1dee" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "ffa5f5ae-ea5c-474d-a1e1-4fd8ddf32688" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170619\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170619\"\r\n}", + "RequestBody": "", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15899,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43893" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f23daf94-0838-44a6-8d0b-ded73455caaa" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/1e052b1a-78ae-446b-9420-af0f7d8fe946" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "60b74a3e-ec57-4ef1-8e86-26ec67831991" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215229Z:60b74a3e-ec57-4ef1-8e86-26ec67831991" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EF5ED0BCA9134970AAE451AEA9D5A004 Ref B: MNZ221060619039 Ref C: 2025-06-02T21:52:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:29 GMT" + ], "Content-Length": [ - "427" + "2531" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.4066.250524\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15853,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43792" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], "x-ms-request-id": [ - "3eff115c-b9a4-47bc-96eb-85993d3eb722" + "3d116edf-79c7-4b05-a5e5-1461ef1a2257" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b7576b5a-ea5d-496a-9a2f-e8b57dce635b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14606" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c8c9530d-fdd2-43e9-99d3-221fb552eb00" + "4f79a215-d761-4630-b7bd-baca269e8a2a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012720Z:c8c9530d-fdd2-43e9-99d3-221fb552eb00" + "EASTUS:20250602T215404Z:4f79a215-d761-4630-b7bd-baca269e8a2a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C291F8BC0D394679841050733AD7D4D4 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:04Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:20 GMT" + "Mon, 02 Jun 2025 21:54:04 GMT" + ], + "Content-Length": [ + "2531" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.2314.241107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.2605.241207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.2894.250113\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.3194.250210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.3476.250306\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.3775.250406\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.4061.250510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.4066.250524\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNzEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuMjMxNC4yNDExMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "854ec921-3610-4514-b479-99f665986b4a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "37ca86fc-e4a2-41a2-86b7-1e30d3fdf0a6" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12108,Microsoft.Compute/GetVMImageFromLocation30Min;73076" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d96e7060-8aba-407e-af51-f22ac4d0e108" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e7616574-9cfe-4762-a47e-1fc3bad03069" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dc0a4b17-d6db-43f6-88a1-29ebd618ffa2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215230Z:dc0a4b17-d6db-43f6-88a1-29ebd618ffa2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FD34B5D8C30647AAB439685C5674098A Ref B: MNZ221060608017 Ref C: 2025-06-02T21:52:29Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:52:29 GMT" + ], "Content-Length": [ - "427" + "1185" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.2314.241107?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuMjMxNC4yNDExMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11688,Microsoft.Compute/GetVMImageFromLocation30Min;72148" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], "x-ms-request-id": [ - "a9d0053b-2c66-4222-9610-bb748f9536cc" + "9f6c5ff5-3c61-4bd3-9dae-2a3266bcac91" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/63d7779c-993d-4cd2-9089-60f60e3f8cf3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-correlation-request-id": [ + "e2dba11f-fc8c-4aca-aaa0-9804ca295cbf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215404Z:e2dba11f-fc8c-4aca-aaa0-9804ca295cbf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CA18CDEDF80D4718968308A33BD58E04 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:04 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-06-09T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-11-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2314.241107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.2314.241107\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuMjYwNS4yNDEyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "ca9a4fd8-88c6-4e98-b12f-021dd5048ac4" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12107,Microsoft.Compute/GetVMImageFromLocation30Min;73075" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d7aac2ac-3f48-4591-bdd1-0f701941e579" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/20e99ffe-0359-416c-bc3d-cbee6c896201" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14819" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "397c1315-3228-4f36-827c-69a0501c33df" + "4f48fadd-7905-4d1a-8902-63f04f4151b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012651Z:397c1315-3228-4f36-827c-69a0501c33df" + "EASTUS:20250602T215230Z:4f48fadd-7905-4d1a-8902-63f04f4151b0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E4C7036AB4F4E2F85E008B8899EEE63 Ref B: MNZ221060619051 Ref C: 2025-06-02T21:52:30Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:51 GMT" + "Mon, 02 Jun 2025 21:52:29 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.2605.241207\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170712?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNzEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.2605.241207?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuMjYwNS4yNDEyMDc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9f521e1a-22ee-4c23-83fb-1de45dcd1f0e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170712\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170712\"\r\n}", + "RequestBody": "", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11687,Microsoft.Compute/GetVMImageFromLocation30Min;72147" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], + "x-ms-request-id": [ + "ccc97cd0-dc98-4ef0-804d-643cdd765a92" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/51d24cc3-e0f5-4eca-acab-d4cfecf1a11d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ddd6696b-8b22-42a6-8a07-a07fd2ad72fa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20250602T215404Z:ddd6696b-8b22-42a6-8a07-a07fd2ad72fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0CB17865C5F5452F8A700F57EC713A58 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:04Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:04 GMT" + ], "Content-Length": [ - "427" + "1185" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-07-10T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2024-12-09T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2605.241207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.2605.241207\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e013151f-2f97-4cf4-bdfe-dc21f71b1d19" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12106,Microsoft.Compute/GetVMImageFromLocation30Min;73074" + ], + "x-ms-served-by": [ + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" - ], "x-ms-request-id": [ - "8900f758-8e8f-4926-ad2e-17fb8a776afb" - ], - "Cache-Control": [ - "no-cache" + "8a871517-f37d-4027-bbcf-5f2ba1929d3c" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fa67c7af-4a76-446e-bf03-1b606e419182" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14605" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "783916d3-be8b-4e95-892c-8afbcedfef73" + "4183007e-acc5-4a97-92a9-ac6ee4e2de7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012720Z:783916d3-be8b-4e95-892c-8afbcedfef73" + "EASTUS:20250602T215230Z:4183007e-acc5-4a97-92a9-ac6ee4e2de7c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 04FFE75A6EB9468C9D4AEB53E860C344 Ref B: MNZ221060619023 Ref C: 2025-06-02T21:52:30Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:20 GMT" + "Mon, 02 Jun 2025 21:52:29 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.2894.250113\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170811?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwODExP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.2894.250113?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuMjg5NC4yNTAxMTM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fb4a9692-6fe8-469b-bc3e-37c5682b4a3a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170811\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11686,Microsoft.Compute/GetVMImageFromLocation30Min;72146" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], "x-ms-request-id": [ - "d3d233cf-1d7a-4792-8732-77756290352a" + "a0bedf76-92db-4ffc-8a8b-dbd9dde4e6c2" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4922cc78-6e86-4e9c-b96f-a8cfb4d524a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14818" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "fab2d6f5-4d90-4200-a587-9afca290f80f" + "0ae3f30a-80c6-4ae8-bccc-a69a9e40735d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012652Z:fab2d6f5-4d90-4200-a587-9afca290f80f" + "EASTUS2:20250602T215405Z:0ae3f30a-80c6-4ae8-bccc-a69a9e40735d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1C64694EB9814B11898A130F8F1BC117 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:04Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:51 GMT" + "Mon, 02 Jun 2025 21:54:04 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-11T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-01-13T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.2894.250113\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.2894.250113\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170811?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwODExP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7fed77f1-5f59-4af5-a5d0-9d140dd4d6c3" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f8433ab3-10e9-4e48-9111-174661a64268" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170811\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170811\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12105,Microsoft.Compute/GetVMImageFromLocation30Min;73073" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], - "x-ms-request-id": [ - "3c6f3917-05d4-4b36-a5e7-33407f8a2a98" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "8fc8f3a0-d72d-4bb8-90b4-a3dabbedee8b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/caa4e1df-9fd6-44e6-bbbe-2e01adfc7d56" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14604" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f55a8738-884a-4670-aa9f-f43b06fbd011" + "4dce9d16-adcf-40e6-8ce6-7820e241deef" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012721Z:f55a8738-884a-4670-aa9f-f43b06fbd011" + "EASTUS:20250602T215230Z:4dce9d16-adcf-40e6-8ce6-7820e241deef" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CFDC5A6EC72046A89F6E5327171195A9 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:52:30Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:20 GMT" + "Mon, 02 Jun 2025 21:52:29 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-27T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.3194.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwOTE4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.3194.250210?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuMzE5NC4yNTAyMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4c7d6e2f-396f-4e02-a0b0-fda7dbb2a7a0" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11685,Microsoft.Compute/GetVMImageFromLocation30Min;72145" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], "x-ms-request-id": [ - "fab57f25-70f3-4282-88d9-852e7ef3277d" + "a3014fbe-92a5-4f30-abe4-fbb8072fa0ea" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b069ab00-c6ca-4008-986c-e6bcb6529cda" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14817" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "9b0fdd0c-02f8-49f4-8e04-1dd5d14f09d1" + "ef286818-306b-4b95-9896-177b7d5e8bad" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012652Z:9b0fdd0c-02f8-49f4-8e04-1dd5d14f09d1" + "EASTUS2:20250602T215405Z:ef286818-306b-4b95-9896-177b7d5e8bad" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EBD6471307D543069B669AEEFFC83626 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:05Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:51 GMT" + "Mon, 02 Jun 2025 21:54:04 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2025-08-27T20:00:00-04:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3194.250210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.3194.250210\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20170918?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwOTE4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "66d33a72-804c-4cdf-978a-161cd858772c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "71b1e8b6-4ba6-471b-a72d-b2dfa8191b57" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170918\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20170918\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12104,Microsoft.Compute/GetVMImageFromLocation30Min;73072" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], - "x-ms-request-id": [ - "fb39ff09-0504-48ff-ac7e-f3fc3b4e820b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "9f540460-2057-4bba-a242-ebc6e525d59b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/0f647f10-573e-4ed9-b0da-1f7c9fd0b12c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14603" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "537090ca-5e31-443b-9d45-48c4007a7971" + "f3ddfdc7-5762-48ce-b9c4-8ab2db4949e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012721Z:537090ca-5e31-443b-9d45-48c4007a7971" + "EASTUS2:20250602T215234Z:f3ddfdc7-5762-48ce-b9c4-8ab2db4949e3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 80F26A4582C34F20AD001E054939ABA6 Ref B: MNZ221060608049 Ref C: 2025-06-02T21:52:30Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:20 GMT" + "Mon, 02 Jun 2025 21:52:33 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.3476.250306\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20171026?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMDI2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.3476.250306?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuMzQ3Ni4yNTAzMDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "58559c4a-cb5b-48d1-a737-37cf8dcc4bb9" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171026\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20171026\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11684,Microsoft.Compute/GetVMImageFromLocation30Min;72144" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], "x-ms-request-id": [ - "24fd24a4-ca20-4a1d-8517-189a85de3d5c" + "ca1d2fd7-a60f-4893-ab17-8c507aacac2c" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/7e3722b7-fd82-4576-a9d9-74e5101bc5bb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ebe60cf6-3b85-4b9f-a0fd-309f9ea31f5d" + "a41368eb-373f-4166-8d39-4e0bf7521307" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012652Z:ebe60cf6-3b85-4b9f-a0fd-309f9ea31f5d" + "EASTUS2:20250602T215405Z:a41368eb-373f-4166-8d39-4e0bf7521307" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EC6C64BC934E4C66AE529650BB9A21B0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:05Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:51 GMT" + "Mon, 02 Jun 2025 21:54:04 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-03-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3476.250306\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.3476.250306\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20171026?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMDI2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e5f25dd6-e35c-4027-a8d4-b795d77a809d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8c91fed5-485c-4587-a744-732f746b47aa" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171026\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20171026\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12103,Microsoft.Compute/GetVMImageFromLocation30Min;73071" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], - "x-ms-request-id": [ - "f8df4796-4b59-4f7f-ade7-084f73e1a69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "420f31ea-c1c1-404e-96a4-f58b9cc1ac0c" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e5fd8af8-860d-45de-8326-f0d1ff9901b2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14602" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e4f644ca-2d16-4653-9ff0-c324a9b3dcfd" + "e1b9621a-e83d-4547-b3ca-bff6d73b3818" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012721Z:e4f644ca-2d16-4653-9ff0-c324a9b3dcfd" + "EASTUS:20250602T215234Z:e1b9621a-e83d-4547-b3ca-bff6d73b3818" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4251E7EADEC44E399BE7FCB61A566570 Ref B: MNZ221060618035 Ref C: 2025-06-02T21:52:34Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:20 GMT" + "Mon, 02 Jun 2025 21:52:34 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.3775.250406\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20171116?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMTE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.3775.250406?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuMzc3NS4yNTA0MDY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fd5ea94a-1d63-45a4-ae71-7ff41b379f6d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171116\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20171116\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11683,Microsoft.Compute/GetVMImageFromLocation30Min;72143" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], "x-ms-request-id": [ - "e2f87b30-76fb-487f-bf49-8c044b92025d" + "b9001484-655d-451a-a212-9f21a7286da5" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/be86ff1a-7dc1-48d4-b24a-827238c05f4f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14815" + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" ], "x-ms-correlation-request-id": [ - "5c67b117-4133-420e-ad1e-c00d48ef677f" + "f138e920-e68d-4bb2-9e3c-f37934c79e62" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012652Z:5c67b117-4133-420e-ad1e-c00d48ef677f" + "EASTUS2:20250602T215405Z:f138e920-e68d-4bb2-9e3c-f37934c79e62" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 685CF9D571DA40BA8846F52B57FFBAA2 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:05Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:51 GMT" + "Mon, 02 Jun 2025 21:54:04 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-04-10T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.3775.250406\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.3775.250406\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20171116?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMTE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5020f349-1819-4f0e-b097-4c688064ddac" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3c38fd13-a74b-49bb-a5fc-a970814196a7" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171116\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20171116\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12102,Microsoft.Compute/GetVMImageFromLocation30Min;73070" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], - "x-ms-request-id": [ - "e3c34701-9afa-4ade-bfe3-6b544de0e515" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "f654696f-85bb-4e40-b748-4d2907db7b3d" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/edae947c-bf39-4c8b-8b2a-04dea1b05e0a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14601" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "be0b7448-d1b5-45d1-b34a-291659ced3b8" + "bbce4584-d7d4-44f0-a78c-23606c0749c4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012721Z:be0b7448-d1b5-45d1-b34a-291659ced3b8" + "EASTUS:20250602T215234Z:bbce4584-d7d4-44f0-a78c-23606c0749c4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F2D3BAE073A24231879AA78DC4A69057 Ref B: MNZ221060608023 Ref C: 2025-06-02T21:52:34Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:20 GMT" + "Mon, 02 Jun 2025 21:52:34 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.4061.250510\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20171216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMjE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.4061.250510?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuNDA2MS4yNTA1MTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b3909b6a-8c64-42ba-a6fd-5d21d171d337" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20171216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11682,Microsoft.Compute/GetVMImageFromLocation30Min;72142" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], "x-ms-request-id": [ - "61899f34-0d71-4bc3-bd59-2ad082e001a4" + "a376ef22-80dc-4ac6-a0e1-ac1a54004923" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ef1c6d0e-77fe-44e3-8d97-ad74eb2a6c97" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14814" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "f667bff0-d99e-4a0d-9ca1-6114ccd454ee" + "bdf87fae-d644-48a0-81ec-4f2dda3eba31" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012652Z:f667bff0-d99e-4a0d-9ca1-6114ccd454ee" + "EASTUS2:20250602T215405Z:bdf87fae-d644-48a0-81ec-4f2dda3eba31" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BDCA6C0DFD7B41549BB78DC8EA0B984A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:05Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:52 GMT" + "Mon, 02 Jun 2025 21:54:04 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-12T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4061.250510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.4061.250510\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20171216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcxMjE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3900d729-3f36-4850-a0a3-d6f8ad9814e5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "0b7ae80e-a992-4405-8246-1fca1caa675e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20171216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20171216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12101,Microsoft.Compute/GetVMImageFromLocation30Min;73069" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], - "x-ms-request-id": [ - "88fecfad-2012-4d55-98ee-f16dccb2b0f3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "06dfd6f9-2177-4a18-a1d8-b7a88922ee6e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d589941c-cd80-4cdc-b749-3aa57e42bd00" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14600" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8364cd48-a63a-4823-bde9-86d576749cfe" + "ded1816e-0b9a-4957-b647-35a0fb3ad88c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012721Z:8364cd48-a63a-4823-bde9-86d576749cfe" + "EASTUS:20250602T215234Z:ded1816e-0b9a-4957-b647-35a0fb3ad88c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 96907871EA0B499EA881D7B47C25451A Ref B: MNZ221060618035 Ref C: 2025-06-02T21:52:34Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:20 GMT" + "Mon, 02 Jun 2025 21:52:34 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.4066.250524\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180220?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwMjIwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserverupgrade/skus/server2025upgrade/versions/26100.4066.250524?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXJ1cGdyYWRlL3NrdXMvc2VydmVyMjAyNXVwZ3JhZGUvdmVyc2lvbnMvMjYxMDAuNDA2Ni4yNTA1MjQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "57228d23-4cda-4745-9aea-a4e366638e5a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180220\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;11681,Microsoft.Compute/GetVMImageFromLocation30Min;72141" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "76852779-c654-4812-9ee7-86d4cbde99b1_133864731615771965" ], "x-ms-request-id": [ - "d34d38c2-0ed5-40a5-b6b8-ebaad4741d3a" + "a5f7a76d-91ba-4869-8870-edf2e03d5496" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d2d7b678-acb4-4e9a-86b5-94e171aceec7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14813" + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" ], "x-ms-correlation-request-id": [ - "69d5b60c-7570-46f3-8fc3-21ef1c7e8c11" + "01b79cbd-a46c-4e3c-b5ef-20419f6f699a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012652Z:69d5b60c-7570-46f3-8fc3-21ef1c7e8c11" + "EASTUS2:20250602T215405Z:01b79cbd-a46c-4e3c-b5ef-20419f6f699a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C011B5DD31D044759DF0420A411A56CB Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:05Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:52 GMT" + "Mon, 02 Jun 2025 21:54:04 GMT" + ], + "Content-Length": [ + "1104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInBytes\": 10737418752\r\n }\r\n ],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"26100.4066.250524\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverupgrade/Skus/server2025upgrade/Versions/26100.4066.250524\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180220?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwMjIwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "48f72e9c-7e8d-4a87-be9d-6804048135df" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "cebf5e44-5bfe-4fb4-bea9-06df1b9fae24" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180220\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;998" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "4a067bf6-5f9d-4206-b826-24354e94bf00" - ], - "Cache-Control": [ - "no-cache" + "fb36ca6b-2365-484e-98bb-d956f977e960" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2cc96637-d928-47c7-8ade-df771c23397b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14599" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e0c4086a-da84-45c3-82ba-188e2cc372bb" + "344fd6ed-4594-415a-96b6-83f8dbea6a23" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012721Z:e0c4086a-da84-45c3-82ba-188e2cc372bb" + "EASTUS2:20250602T215234Z:344fd6ed-4594-415a-96b6-83f8dbea6a23" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F2CF5502AB1547EC9F0908CC6F82F4F9 Ref B: MNZ221060619045 Ref C: 2025-06-02T21:52:34Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:20 GMT" + "Mon, 02 Jun 2025 21:52:34 GMT" + ], + "Content-Length": [ + "279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwMzE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2063bcd1-6b88-466e-88c0-b2864e5ce2da" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;198,Microsoft.Compute/ListVMImageOffersFromLocation30Min;997" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "6f94e015-9789-45b1-a20a-90b356aea15c" - ], - "Cache-Control": [ - "no-cache" + "62a77f06-6b9d-452c-8747-f8f23383782b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/224bb7d9-081b-47fb-8714-6b12bbcb127f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14812" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "8e66d95d-0e7a-4005-9372-763f19d56e93" + "e0812e0f-7655-4ab2-b0d2-f714ef254215" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012652Z:8e66d95d-0e7a-4005-9372-763f19d56e93" + "EASTUS:20250602T215405Z:e0812e0f-7655-4ab2-b0d2-f714ef254215" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 61958F2C78A74919A89056DC6A631CEE Ref B: MNZ221060619049 Ref C: 2025-06-02T21:54:05Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:52 GMT" + "Mon, 02 Jun 2025 21:54:04 GMT" + ], + "Content-Length": [ + "279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwMzE1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute.Test/artifacttypes/vmextension/types?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUuVGVzdC9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8e3ebf69-2e3c-499d-9f56-3f0ccc04ccf5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "571411ad-7a46-45cb-a8cc-7083e45191e0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22499" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "e5858725-5af7-4192-8e9a-5490b46366e7_133910197206343902" ], "x-ms-request-id": [ - "16f900c2-f6eb-40cd-8a56-34ff205647e6" + "e5444456-8b4f-4aae-999d-23a2b0a3bee9" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/21992f86-3ff7-4f08-a19f-4e04e70d0f01" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14598" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "94053d0f-c541-4e81-836d-c9753c0d73c1" + "0e11bdec-b8b7-43ce-824f-69b0cee61ee7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012721Z:94053d0f-c541-4e81-836d-c9753c0d73c1" + "EASTUS:20250602T215235Z:0e11bdec-b8b7-43ce-824f-69b0cee61ee7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E450617A958741FDA4A1F657CF059314 Ref B: MNZ221060618023 Ref C: 2025-06-02T21:52:34Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:20 GMT" + "Mon, 02 Jun 2025 21:52:34 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNDEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute.Test/artifacttypes/vmextension/types?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUuVGVzdC9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f18ab9ee-8529-4887-8c95-4b12fc0cb65f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensionTypes3Min;17998,Microsoft.Compute/ListVMExtensionTypes30Min;22498" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "e5858725-5af7-4192-8e9a-5490b46366e7_133910197206343902" ], "x-ms-request-id": [ - "7fa686e6-f3a6-4582-b0c8-196b2f12eba4" + "ffc05020-a0c3-4c10-8706-a9bf570ab13a" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/9f7c2007-2308-41e0-922e-74de9d87f467" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14811" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "0fa32344-9e4c-4c68-85b1-2b9593d283da" + "1f8b3bdf-31d0-493e-b39d-a310a623ffb8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012653Z:0fa32344-9e4c-4c68-85b1-2b9593d283da" + "EASTUS2:20250602T215409Z:1f8b3bdf-31d0-493e-b39d-a310a623ffb8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 23C26111D9B841F8BFF7600E5DD1DA2D Ref B: MNZ221060618011 Ref C: 2025-06-02T21:54:09Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:52 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNDEyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute.TestSar/artifacttypes/vmextension/types?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUuVGVzdFNhci9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4f90ecb9-297a-4e32-bccd-cf811b6a535f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a43ba13e-becb-4393-98f0-fa48a9e4a927" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22499" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "63042428-43ca-488b-8918-b04202a1e0f6_133649524161623038" ], "x-ms-request-id": [ - "7c20996b-cf20-4602-bea8-1fdcbfef4b86" + "24e5a43a-835f-47e8-9503-a41f2cdf0a50" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a6389d70-65e5-4f6e-bfc2-336eb0b3f2bc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14597" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a6f4eb08-cc97-4bed-ba31-f5917397ae55" + "531913a0-1609-413e-b800-b7f7fb6c6ef0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012722Z:a6f4eb08-cc97-4bed-ba31-f5917397ae55" + "EASTUS:20250602T215235Z:531913a0-1609-413e-b800-b7f7fb6c6ef0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 07A8BD3F29EC470B9121A2ABB7485301 Ref B: MNZ221060608019 Ref C: 2025-06-02T21:52:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:21 GMT" + "Mon, 02 Jun 2025 21:52:34 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNTEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute.TestSar/artifacttypes/vmextension/types?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUuVGVzdFNhci9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "479c4c93-751d-45ed-afe5-54f2bb3afa58" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensionTypes3Min;17998,Microsoft.Compute/ListVMExtensionTypes30Min;22498" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "63042428-43ca-488b-8918-b04202a1e0f6_133649524161623038" ], "x-ms-request-id": [ - "06c69048-7159-425e-853a-878110472fe3" + "b463a3ef-63f5-4328-a888-85b51faf1e18" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4d4fa660-10b5-4d4a-a7da-af1914a4d4e2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14810" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "847a198c-7274-4001-9222-0a472eef6b6b" + "c64f5907-18e0-4284-a8e8-59cffd6eb00b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012653Z:847a198c-7274-4001-9222-0a472eef6b6b" + "EASTUS2:20250602T215409Z:c64f5907-18e0-4284-a8e8-59cffd6eb00b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BAA444280F2D40FB846E989E56288BA7 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:54:09Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:52 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNTEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8d229979-ff0f-4565-8053-957a78b24287" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "e19075fc-6067-4a1c-94fd-b8cf41c60247" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22499" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "36ca1eb9-b41b-4559-bfc7-030fd380a6b1" + "c461f557-e7a1-4b84-83ee-74f060e27db5" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0cad9be2-0076-4924-b020-df4fc123c477" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14596" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "6e5be27a-d49a-4438-9227-5c9f711bd168" + "631633d6-42b0-45b3-a8a0-5bb650d2898b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012722Z:6e5be27a-d49a-4438-9227-5c9f711bd168" + "EASTUS:20250602T215235Z:631633d6-42b0-45b3-a8a0-5bb650d2898b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 244B07954CEB4BD196D17434406722AB Ref B: MNZ221060609009 Ref C: 2025-06-02T21:52:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:21 GMT" + "Mon, 02 Jun 2025 21:52:34 GMT" + ], + "Content-Length": [ + "1033" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNjEzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8cc72014-2d15-4756-9ef2-5c186f4a8af7" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensionTypes3Min;17998,Microsoft.Compute/ListVMExtensionTypes30Min;22498" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "8a26bd95-0ebe-4d6f-ab75-5e68b1603247" - ], - "Cache-Control": [ - "no-cache" + "e4d210e7-889a-49c1-8413-f81382706427" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8714d706-3021-471f-bda7-e21db867828a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14809" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7f88282f-fb83-4e3b-b4a6-92448fcf6bbe" + "e9f36bb7-cf0d-41ed-99cd-0eabedb77690" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012653Z:7f88282f-fb83-4e3b-b4a6-92448fcf6bbe" + "EASTUS:20250602T215409Z:e9f36bb7-cf0d-41ed-99cd-0eabedb77690" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 63902091603C458A86DD5001A7484F00 Ref B: MNZ221060618011 Ref C: 2025-06-02T21:54:09Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:53 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "1033" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1Db250YWluZXJzL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTgwNjEzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2024-11-01&$filter=startswith%28name%2C%271%27%29", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMSYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3MSUyNyUyOQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "aba713ce-4133-4b28-932b-ccad0a26d893" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "666d861a-28ad-4870-bf6a-a36bf710b630" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers/Versions/2016.127.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "427" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "a7953cd8-9c43-4f84-827a-e84037d9ec06" - ], - "Cache-Control": [ - "no-cache" + "a3a3b9b3-c22b-4364-a17f-389edc0c5b9c" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f7cd2e77-e845-4ea2-ae9b-6ab383c8cc04" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14595" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "16f042ad-99ff-4b46-bfb3-c3d1aa7f21ce" + "ed3aa9fb-d90e-4674-8b29-4a2c0a421b53" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012722Z:16f042ad-99ff-4b46-bfb3-c3d1aa7f21ce" + "EASTUS:20250602T215235Z:ed3aa9fb-d90e-4674-8b29-4a2c0a421b53" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0D6E7DF4FAA549539110697EFE785038 Ref B: MNZ221060619047 Ref C: 2025-06-02T21:52:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:21 GMT" + "Mon, 02 Jun 2025 21:52:35 GMT" + ], + "Content-Length": [ + "1007" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-RDSH/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1SRFNIL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions/1.0?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnMvMS4wP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "59afe5ce-1a33-4930-af91-f433a2b8faa3" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "65521a8d-ece8-4caa-8626-c262aca225a6" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170629\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-RDSH/Versions/2016.127.20170629\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "320" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9999,Microsoft.Compute/GetVMExtension30Min;21999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "59ae2688-5930-4584-a9d1-a01567c87a81" + "186333b6-c189-4bae-a772-275bc5ea90b9" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/671e40ed-b3e7-460e-9db1-ec093432e46e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "acf238d1-4061-41eb-904e-ab24b8d96371" + "20d15cae-a71a-425e-bc62-37908c75d417" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012653Z:acf238d1-4061-41eb-904e-ab24b8d96371" + "EASTUS2:20250602T215235Z:20d15cae-a71a-425e-bc62-37908c75d417" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B5131A5F3F734BDE9DDA951942B59487 Ref B: MNZ221060610025 Ref C: 2025-06-02T21:52:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:53 GMT" + "Mon, 02 Jun 2025 21:52:34 GMT" + ], + "Content-Length": [ + "646" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-RDSH/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1SRFNIL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions/1.0?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnMvMS4wP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "dc68763b-fdb6-4f79-afeb-01a4947f12a5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170629\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-RDSH/Versions/2016.127.20170629\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "320" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9956,Microsoft.Compute/GetVMExtension30Min;21956" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "c7cdc0a5-dad1-449f-9a5e-2f9a1ab94a36" - ], - "Cache-Control": [ - "no-cache" + "ee0d9092-8e3d-43a4-89d6-35c0ba42b9b4" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f58ced77-14d3-40c7-a623-6c58a14470fb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14594" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "5b372236-93e3-44fb-9caa-fe9c20f1b80f" + "f8e35316-c667-4ad0-9ca1-36c0f9aa3127" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012722Z:5b372236-93e3-44fb-9caa-fe9c20f1b80f" + "EASTUS:20250602T215410Z:f8e35316-c667-4ad0-9ca1-36c0f9aa3127" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6BD14A11D96A43BC81BA3CA09EEC5F8A Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:21 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "646" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-RDSH/versions/2016.127.20170629?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1SRFNIL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNjI5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions/1.0.1?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5744d4a9-17f1-4480-a0c5-bfbe15208c5b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "37d3dab4-b72e-4d35-b1bc-fdfc9710cb2f" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170629\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-RDSH/Versions/2016.127.20170629\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9998,Microsoft.Compute/GetVMExtension30Min;21998" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "e0f7c93b-3a6f-4a80-a7ad-36e46a70e930" + "7999851e-76aa-40f0-8f23-85d99714a50e" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8b9ce3c0-cc2f-4687-9938-ad67fb098ac0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b35d366b-5a5a-4256-a698-296dfff022f7" + "f68146d0-ee90-4203-a095-b8ad93a47176" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012653Z:b35d366b-5a5a-4256-a698-296dfff022f7" + "EASTUS:20250602T215235Z:f68146d0-ee90-4203-a095-b8ad93a47176" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B6708A5135DC41EDB8D9FF8F1FEED367 Ref B: MNZ221060610009 Ref C: 2025-06-02T21:52:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:53 GMT" + "Mon, 02 Jun 2025 21:52:35 GMT" + ], + "Content-Length": [ + "650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Datacenter-with-RDSH/versions/2016.127.20170629?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LURhdGFjZW50ZXItd2l0aC1SRFNIL3ZlcnNpb25zLzIwMTYuMTI3LjIwMTcwNjI5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions/1.0.1?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b48d01d8-eedb-4318-82b5-f56b57d18061" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.127.20170629\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-RDSH/Versions/2016.127.20170629\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "421" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9955,Microsoft.Compute/GetVMExtension30Min;21955" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "3d530c31-9ade-4cd1-ae71-5ebf25327f4a" - ], - "Cache-Control": [ - "no-cache" + "d734148d-047c-4ce1-b65c-96e928377bab" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/94a9961f-2bdf-4643-83f4-c8aba5c38b77" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14593" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "afcb332b-0cce-4589-835c-2e64bbdf4db9" + "44c4714f-7651-44fc-8fcc-9ceffddfc433" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012722Z:afcb332b-0cce-4589-835c-2e64bbdf4db9" + "EASTUS:20250602T215410Z:44c4714f-7651-44fc-8fcc-9ceffddfc433" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DA8D5395FF1242BF931173421FA1C37B Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:21 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Nano-Server/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LU5hbm8tU2VydmVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions/1.1?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnMvMS4xP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0ef4d3cb-2eef-4355-9767-67cc023be66a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f829daeb-4c31-430f-8a85-bd379928bd9b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170927\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Nano-Server/Versions/2016.0.20170927\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "307" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9997,Microsoft.Compute/GetVMExtension30Min;21997" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "db4b953c-6b3a-4d59-a105-a480fb80d346" + "ed695a87-5990-4dd4-9dae-d59e212242c8" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/115efa1c-c738-4d3c-9a8c-581545805bdc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14806" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "2f83a9fc-e734-4d81-aec8-118367054746" + "23aa063d-ab4a-4424-ae08-c4876d430768" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012654Z:2f83a9fc-e734-4d81-aec8-118367054746" + "EASTUS:20250602T215235Z:23aa063d-ab4a-4424-ae08-c4876d430768" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 30EDE9A4C63748AE9480397C71DB585D Ref B: MNZ221060609037 Ref C: 2025-06-02T21:52:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:53 GMT" + "Mon, 02 Jun 2025 21:52:35 GMT" + ], + "Content-Length": [ + "646" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Nano-Server/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LU5hbm8tU2VydmVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions/1.1?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnMvMS4xP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "194121f7-b985-48f5-ac7d-1fbc5dab86ed" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170927\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Nano-Server/Versions/2016.0.20170927\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "307" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9954,Microsoft.Compute/GetVMExtension30Min;21954" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "a133e456-6e92-41d8-8258-87aab8feac80" - ], - "Cache-Control": [ - "no-cache" + "46bbf921-f31d-4c56-ac3d-9d884edf45ea" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/80253ee1-d23a-4988-a604-16d5be393636" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14592" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "82dfd9f1-8fb6-476c-b53f-4f87f18e7a1f" + "c1785278-6f19-4e77-958a-e66afb578b81" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012722Z:82dfd9f1-8fb6-476c-b53f-4f87f18e7a1f" + "EASTUS:20250602T215410Z:c1785278-6f19-4e77-958a-e66afb578b81" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FE895B701534449EB961265C50F1CF4D Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:21 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "646" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Nano-Server/versions/2016.0.20170927?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LU5hbm8tU2VydmVyL3ZlcnNpb25zLzIwMTYuMC4yMDE3MDkyNz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions/1.2.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnMvMS4yLjI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f35f5439-17f5-4c16-b7a2-a309f719a5af" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "79b5e5fb-235c-495d-8004-7e6ae3f8fa0c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170927\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Nano-Server/Versions/2016.0.20170927\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9996,Microsoft.Compute/GetVMExtension30Min;21996" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "7a7c50f1-d387-47d6-9152-a07221f44cc8" + "60d390c8-36b3-4f6a-a50e-7345824121d4" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/47570b2c-5086-49aa-a2af-e5487a38fcda" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14805" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "80395f94-775e-4bc8-9ff0-fc868eb05ed7" + "82dd4bed-3ba2-4874-8006-9770fe4f6762" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012654Z:80395f94-775e-4bc8-9ff0-fc868eb05ed7" + "EASTUS:20250602T215235Z:82dd4bed-3ba2-4874-8006-9770fe4f6762" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E4E42576AC814AB8967ACAC6A900357A Ref B: MNZ221060609035 Ref C: 2025-06-02T21:52:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:53 GMT" + "Mon, 02 Jun 2025 21:52:35 GMT" + ], + "Content-Length": [ + "1436" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"All\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"runAsStartupTask\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false,\r\n \"disallowMajorVersionUpgrade\": false,\r\n \"publicConfigurationSchema\": \"\",\r\n \"privateConfigurationSchema\": \"\",\r\n \"certificateSchema\": \"\",\r\n \"localResources\": \"\",\r\n \"openEndpoints\": \"\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Nano-Server/versions/2016.0.20170927?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LU5hbm8tU2VydmVyL3ZlcnNpb25zLzIwMTYuMC4yMDE3MDkyNz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions/1.2.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnMvMS4yLjI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "255b7fdd-8e96-4940-a242-00c3c708076e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016.0.20170927\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Nano-Server/Versions/2016.0.20170927\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9953,Microsoft.Compute/GetVMExtension30Min;21953" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "21d3e6b9-4f2e-405f-912b-07a271c3331a" - ], - "Cache-Control": [ - "no-cache" + "1db3bb9c-2864-4349-bc0f-ddf4757068ac" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e99c70ee-f096-4769-ad94-7ddc714ffc28" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14591" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c6f78a8f-afd5-4d5c-8140-9416114eb17d" + "caa30a18-0e97-4d3a-b755-69302f702d3e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012722Z:c6f78a8f-afd5-4d5c-8140-9416114eb17d" + "EASTUS:20250602T215410Z:caa30a18-0e97-4d3a-b755-69302f702d3e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BBE22A989D9546F68081C8AAC4798E01 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:22 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "1436" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"All\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"runAsStartupTask\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false,\r\n \"disallowMajorVersionUpgrade\": false,\r\n \"publicConfigurationSchema\": \"\",\r\n \"privateConfigurationSchema\": \"\",\r\n \"certificateSchema\": \"\",\r\n \"localResources\": \"\",\r\n \"openEndpoints\": \"\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions?api-version=2024-11-01&$filter=startswith%28name%2C%271%27%29", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMSYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3MSUyNyUyOQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "93b37fac-4de2-47d2-9f47-3b0629521eea" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5f51df45-cd08-4754-81c8-6961b9be72eb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1709-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1709-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1803-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "1021" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensions3Min;9998,Microsoft.Compute/ListVMExtensions30Min;21998" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "5ccb8ad4-9ef9-4beb-aa6c-bd2a51962c10" - ], - "Cache-Control": [ - "no-cache" + "6349ef22-0500-495f-adde-75916feacfca" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/1d1a03c8-7117-4021-a493-7d3a8ea00938" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14804" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "dfdfefa3-6741-459f-98f6-97d94925b06a" + "4fc6b471-0252-4589-bd75-65ea5ae10327" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012654Z:dfdfefa3-6741-459f-98f6-97d94925b06a" + "EASTUS:20250602T215235Z:4fc6b471-0252-4589-bd75-65ea5ae10327" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F2930172989744DC957FF54991259F2D Ref B: MNZ221060608023 Ref C: 2025-06-02T21:52:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:53 GMT" + "Mon, 02 Jun 2025 21:52:35 GMT" + ], + "Content-Length": [ + "7253" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.10\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.10\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.12\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.12\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.14\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.14\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.15\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.15\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.16\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.16\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.17\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.17\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.18\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.18\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.19\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.19\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.20\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.20\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.8\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.8\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.5\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fc291917-8aeb-43c8-b723-6060d7c03aff" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3c6f59c4-83a6-4da9-bd0d-eedcb8b36dcc" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1709-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1709-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1803-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "1021" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9995,Microsoft.Compute/GetVMExtension30Min;21995" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "4139c11b-ff1a-49ab-8013-bcc0c8c3c484" + "967b4b6b-d096-4a2a-9a6b-801cc4989e4a" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3800f1a5-0f14-4bc4-b784-eddc4763cd4b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14590" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "2b7e3c18-ddff-486f-b876-04706ecadc69" + "d09e237d-413e-4860-9d62-402107590a8e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012723Z:2b7e3c18-ddff-486f-b876-04706ecadc69" + "EASTUS:20250602T215236Z:d09e237d-413e-4860-9d62-402107590a8e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 54C0A2AA85A046CB951343371821395F Ref B: MNZ221060619035 Ref C: 2025-06-02T21:52:35Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:22 GMT" + "Mon, 02 Jun 2025 21:52:35 GMT" + ], + "Content-Length": [ + "618" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0d58330c-0060-48b1-b53a-0a5056968fc1" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171012\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20171012\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171116\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20171116\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171219\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20171219\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180524\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180524\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2627" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9948,Microsoft.Compute/GetVMExtension30Min;21948" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "08550771-c045-40d1-8856-2936e71cb0bc" - ], - "Cache-Control": [ - "no-cache" + "029ab502-2fb8-4055-840f-b2197814bdfe" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3801eba5-6fa2-46e1-9378-a92ddd442df4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14803" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "27be9299-35fb-4ecd-ae1e-07cd4dd60236" + "1ec93a2c-26e7-4e19-a94f-1f1256a6cccb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012654Z:27be9299-35fb-4ecd-ae1e-07cd4dd60236" + "EASTUS:20250602T215410Z:1ec93a2c-26e7-4e19-a94f-1f1256a6cccb" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B3AE646A0FD14FBA846E01C84BAAD2FF Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:54 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "618" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3dc21f44-ceb6-4bf0-9d6f-ab234ce87aee" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5d163f54-488d-4b9b-af4c-32312189c41f" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171012\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20171012\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171116\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20171116\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171219\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20171219\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180524\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180524\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2627" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9994,Microsoft.Compute/GetVMExtension30Min;21994" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "e7c5cd01-abe4-45f3-b33a-e9ff64d28981" + "6025de2d-6499-42ee-af2f-872e6374a6ed" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4431a58d-f3a1-4b58-b21d-497ae6a1e79f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14589" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c95cb4ec-8772-4812-a503-b9c02f42d522" + "747d30cb-dc36-4d88-996c-81b83e2f8b32" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012723Z:c95cb4ec-8772-4812-a503-b9c02f42d522" + "EASTUS:20250602T215236Z:747d30cb-dc36-4d88-996c-81b83e2f8b32" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2D0476FC73DA4814A549C0827C1458BC Ref B: MNZ221060618031 Ref C: 2025-06-02T21:52:36Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:22 GMT" + "Mon, 02 Jun 2025 21:52:35 GMT" + ], + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20171012?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE3MTAxMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "963f2bfd-3835-48dd-8d30-e5e175549c39" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171012\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20171012\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9947,Microsoft.Compute/GetVMExtension30Min;21947" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "2fe53563-2339-4ed2-a1b0-fc2c0d746120" + "e5f6afe2-8a72-4caf-b11e-b11c00a0d849" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/39081c23-dd0d-48ee-aae1-227d336aa4d9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14802" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "dbcf238d-0c5e-413d-a393-e1b6eb39e9e7" + "665c241d-1c57-4385-bd04-57e0fad42f10" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012654Z:dbcf238d-0c5e-413d-a393-e1b6eb39e9e7" + "EASTUS:20250602T215410Z:665c241d-1c57-4385-bd04-57e0fad42f10" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 53CCED49BE1A4052AA0F54A56C8B0C25 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:54 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20171012?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE3MTAxMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.1?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "daaa4d95-81f7-44ab-8df6-281baea13748" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c7e231bd-c285-4ce8-8456-b92e083962b2" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171012\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20171012\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9993,Microsoft.Compute/GetVMExtension30Min;21993" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "7e5d6bb1-5852-41b6-8a88-d121d535f961" - ], - "Cache-Control": [ - "no-cache" + "6a4567b9-afde-4c5d-97c6-2521fe156e65" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/fde8cf65-dfcd-47ce-9c4a-286ff7ea55ab" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14588" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9e785726-d236-405a-984f-e5c06ee42d52" + "7f1cf53b-4c42-4424-b8d6-d0a51dfc304e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012723Z:9e785726-d236-405a-984f-e5c06ee42d52" + "EASTUS:20250602T215236Z:7f1cf53b-4c42-4424-b8d6-d0a51dfc304e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F4CD2BE550D643A19A0BDDB2E7AA95E9 Ref B: MNZ221060609025 Ref C: 2025-06-02T21:52:36Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:22 GMT" + "Mon, 02 Jun 2025 21:52:35 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20171116?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE3MTExNj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.1?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f667d1fa-84c3-4444-99ba-4858dc11e4b5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171116\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20171116\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9946,Microsoft.Compute/GetVMExtension30Min;21946" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "341a4abb-251d-4754-b988-929d5c71fb89" + "46e8a390-7d10-4515-84f1-e3c8b1bf43fd" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0819ffe2-cbf6-4c23-b876-981de19fc134" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14801" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "0ef3bdf8-b37a-4528-a0a4-1ba29278b181" + "4ae34aff-7d24-461a-9506-a831fb61d353" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012654Z:0ef3bdf8-b37a-4528-a0a4-1ba29278b181" + "EASTUS:20250602T215410Z:4ae34aff-7d24-461a-9506-a831fb61d353" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CD197BBF47154FCCAECC47714CD63BDE Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:54 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20171116?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE3MTExNj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.10?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9b69bf45-6bf1-4967-8991-663fbe2f13e1" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f4d02573-b1aa-4e2f-bbe5-238c11f0efcb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171116\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20171116\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9992,Microsoft.Compute/GetVMExtension30Min;21992" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "8d314203-6149-40cb-8912-b1f731ed2545" - ], - "Cache-Control": [ - "no-cache" + "11588555-64d9-4f8e-9bac-098e77c427ae" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/38498260-305f-4de7-84b7-6798dfce0f5e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14587" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d03623ba-5714-404b-926e-9efca1e2aa06" + "431bb843-2fba-4105-8218-2490c646f948" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012723Z:d03623ba-5714-404b-926e-9efca1e2aa06" + "EASTUS2:20250602T215236Z:431bb843-2fba-4105-8218-2490c646f948" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2B2378658DA841698B2CFBF8C3EC533A Ref B: MNZ221060619051 Ref C: 2025-06-02T21:52:36Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:22 GMT" + "Mon, 02 Jun 2025 21:52:36 GMT" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.10\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.10\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20171219?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE3MTIxOT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.10?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3c9af1c7-0a33-4ff7-b552-51b5e2ee42d9" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171219\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20171219\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9945,Microsoft.Compute/GetVMExtension30Min;21945" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "978d7682-ae6d-4ba2-8ead-3992ffbf3733" + "58bf7886-e5c8-4efa-a904-5ec8fdc79728" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/94bf28cd-9338-451e-ba3d-cafe07e57cee" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14800" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "77581fb9-5911-4d32-a8b1-426db2b7ec44" + "bfa40f62-3f5e-4524-94c6-8bd87d37926c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012655Z:77581fb9-5911-4d32-a8b1-426db2b7ec44" + "EASTUS:20250602T215410Z:bfa40f62-3f5e-4524-94c6-8bd87d37926c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C6FFBF01E0EE4EFFB96EC4C1DD344C1D Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:54 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.10\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.10\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20171219?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE3MTIxOT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.12?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6ead7b9c-5e97-4e8d-a89e-a54e940b3aa8" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5437cd32-5fa2-4016-8fbe-732ca3096398" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171219\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20171219\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9991,Microsoft.Compute/GetVMExtension30Min;21991" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "84bdb062-f813-4c54-896d-b09ccd25369c" - ], - "Cache-Control": [ - "no-cache" + "3a864a7d-1779-4641-bbd5-277045abb3ea" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2fa9f2b0-26d6-4098-811a-3122ce144ec6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14586" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9dd61753-3571-429c-8570-cda3067db7d0" + "1770ec35-d980-4f7a-aa32-b7aea70edb9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012723Z:9dd61753-3571-429c-8570-cda3067db7d0" + "EASTUS:20250602T215236Z:1770ec35-d980-4f7a-aa32-b7aea70edb9b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E9A829909564C63B3DA6B5079E774FB Ref B: MNZ221060608029 Ref C: 2025-06-02T21:52:36Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:22 GMT" + "Mon, 02 Jun 2025 21:52:36 GMT" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.12\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.12\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE4MDIxNj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.12?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ba46b8af-66e6-4011-bd7d-a6818425cc15" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9944,Microsoft.Compute/GetVMExtension30Min;21944" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "2bfd8537-f7f8-4b21-a86b-0376ffb79fc8" + "6b1cca6a-c367-4fd7-8732-74e04dda6d2f" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0b6048b6-a0f4-40ea-b7cd-6d88b14f8e60" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14799" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "62311947-20aa-40d3-9b19-1daea68e7e56" + "e669c8b7-6539-4654-b54e-a26731425a17" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012655Z:62311947-20aa-40d3-9b19-1daea68e7e56" + "EASTUS:20250602T215410Z:e669c8b7-6539-4654-b54e-a26731425a17" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E02F0580FE094402B63EC3C979396990 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:54 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.12\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.12\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20180216?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE4MDIxNj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.14?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3f196f3b-ffa9-4411-a003-7e298f89857f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "720d9fc7-ed31-4cf1-8590-62286e0564fa" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180216\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180216\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9990,Microsoft.Compute/GetVMExtension30Min;21990" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "37b9952e-8983-4297-8790-c071faaf2c46" - ], - "Cache-Control": [ - "no-cache" + "0c414207-2910-45eb-8d03-115b8d1d04ff" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/033ca02d-c50b-4360-9f8e-4fe9bd7ac3f7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14585" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d8132e0f-d7c5-4e73-8833-ccaa3d544fd5" + "db436157-d617-45e1-acd1-ad8468c8bc7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012723Z:d8132e0f-d7c5-4e73-8833-ccaa3d544fd5" + "EASTUS:20250602T215236Z:db436157-d617-45e1-acd1-ad8468c8bc7d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A3F450483B51490993F6A56545AD8F45 Ref B: MNZ221060609007 Ref C: 2025-06-02T21:52:36Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:22 GMT" + "Mon, 02 Jun 2025 21:52:35 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.14\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.14\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE4MDMxNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.14?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "27063e3b-6e00-4a5b-a8a5-8e1d4392d945" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9943,Microsoft.Compute/GetVMExtension30Min;21943" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "19921fb3-54fc-49ab-816c-a18e179166c1" + "f9539256-e344-455b-a7a1-405a3df141c8" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8c684d14-8e71-4039-a5aa-dad509bc9ddc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14798" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "b398d979-22f9-4601-bfec-1cae8a3fc4c2" + "f91391af-1929-4d97-b941-2ae929203d38" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012655Z:b398d979-22f9-4601-bfec-1cae8a3fc4c2" + "EASTUS:20250602T215410Z:f91391af-1929-4d97-b941-2ae929203d38" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1A5CF554AF674A56AA94ECAFC734A76C Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:54 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.14\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.14\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE4MDMxNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.15?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9abbe9df-0475-427b-9262-d3ebdfad8b2d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "0a0ac312-3820-4c34-a1f4-1d3fdb3a3dc3" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9989,Microsoft.Compute/GetVMExtension30Min;21989" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "ab44a79e-3414-479c-be02-3f9936c8a001" - ], - "Cache-Control": [ - "no-cache" + "f68d4ec1-2bcc-4a14-a00d-52197c15ecfe" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/65c2ecc9-f2f5-4bb7-a773-e2acaca3db56" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14584" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f5217d32-68ed-411c-93a3-f1daade3339c" + "61e570ed-ac07-44e9-a7c1-919c95dc255a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012723Z:f5217d32-68ed-411c-93a3-f1daade3339c" + "EASTUS:20250602T215236Z:61e570ed-ac07-44e9-a7c1-919c95dc255a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BA5FF6E17F8649C8B2CBFFA3E2894379 Ref B: MNZ221060618039 Ref C: 2025-06-02T21:52:36Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:22 GMT" + "Mon, 02 Jun 2025 21:52:36 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.15\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.15\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE4MDQxMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.15?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "abb1c267-0845-4874-a337-ca76cc3d7b58" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9942,Microsoft.Compute/GetVMExtension30Min;21942" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "2725d6cf-85f4-4df0-a3a6-b8d69c98b180" + "9544aae9-345f-4328-b099-1677af9247c7" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/772d0045-c3af-47bf-9a27-fa024eb35ae4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14797" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f9eea8b4-83a3-4bb2-aa1a-2f29f071d70a" + "c2f61958-5f7d-4b37-99d2-d17f3a213f5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012655Z:f9eea8b4-83a3-4bb2-aa1a-2f29f071d70a" + "EASTUS:20250602T215410Z:c2f61958-5f7d-4b37-99d2-d17f3a213f5c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C12B4B03B0446E797C3E981E351805E Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:55 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.15\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.15\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE4MDQxMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.16?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "baaade11-c9fe-472a-a103-6e15e74d33e7" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "09016b6c-ef8b-4800-a9df-5e5ad77058ba" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9988,Microsoft.Compute/GetVMExtension30Min;21988" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "2ae05539-4376-4a07-a21e-7aec51945714" - ], - "Cache-Control": [ - "no-cache" + "167aaaee-c0bb-4d4a-ba41-8d57364b58a2" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c8899e8d-25f0-449f-8a60-a9e735ad3957" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14583" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f7f3c6d1-292b-452d-8389-7c79343464a3" + "5855378d-945a-4bae-ba20-61440ac6154f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012723Z:f7f3c6d1-292b-452d-8389-7c79343464a3" + "EASTUS:20250602T215236Z:5855378d-945a-4bae-ba20-61440ac6154f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D0F52AC953BF4043A3B570AED23B07BB Ref B: MNZ221060619049 Ref C: 2025-06-02T21:52:36Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:23 GMT" + "Mon, 02 Jun 2025 21:52:36 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.16\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.16\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20180524?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE4MDUyND9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.16?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xNj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "672a3f91-3b74-45e6-8e87-4186f868bdb9" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180524\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180524\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9941,Microsoft.Compute/GetVMExtension30Min;21941" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "9fbb7f26-9938-46f7-a788-4758a096b20e" + "72d93f6f-4443-4abf-b7f7-8662bde1a5bf" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b820dcb8-21b1-4cc0-bc04-ac5393e76b65" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14796" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "b813f354-0787-45f3-b2a5-90d247888c37" + "184d7412-46c5-4c37-90d1-c6c679d26a30" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012655Z:b813f354-0787-45f3-b2a5-90d247888c37" + "EASTUS:20250602T215410Z:184d7412-46c5-4c37-90d1-c6c679d26a30" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7AE4D30DD5A94AE68B37C060DA2E681B Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:55 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.16\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.16\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20180524?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE4MDUyND9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.17?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "041cd8bd-56f8-4acc-9d4f-cfe177ec2767" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3aefd02e-75a4-4324-9153-024dadca6362" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180524\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180524\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9987,Microsoft.Compute/GetVMExtension30Min;21987" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "608f4279-263f-4597-a297-72a5cf6338e4" - ], - "Cache-Control": [ - "no-cache" + "0f89f173-ae6c-4f46-bd9f-3d74320902d4" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4f53f053-88f8-4e2e-bce5-0243baac7a35" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14582" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c76e706f-f45f-490f-aadf-eafca31b71d0" + "c453bd82-566d-43ca-881a-626267703988" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012724Z:c76e706f-f45f-490f-aadf-eafca31b71d0" + "EASTUS2:20250602T215236Z:c453bd82-566d-43ca-881a-626267703988" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A5B9C6FB3D8749F89308F4EC563D417B Ref B: MNZ221060618011 Ref C: 2025-06-02T21:52:36Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:23 GMT" + "Mon, 02 Jun 2025 21:52:36 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.17\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.17\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE4MDYxMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.17?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xNz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "21acccdb-6957-4b32-8c26-8916e07611ec" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9940,Microsoft.Compute/GetVMExtension30Min;21940" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "2cb71b5d-cf33-4dc0-83a2-70b8195d36aa" + "933c235c-403a-497d-ba8f-034ae7defa56" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3ae33757-ad8a-4f6a-96b5-e9eea52838a8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14795" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "9904cc79-4f27-44c5-9054-d2577f326895" + "df94e97c-0cd1-41b0-bc4f-5a43cd461096" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012656Z:9904cc79-4f27-44c5-9054-d2577f326895" + "EASTUS:20250602T215410Z:df94e97c-0cd1-41b0-bc4f-5a43cd461096" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F1D68DFFB06C43BEB330A76EFA1F5A99 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:55 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.17\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.17\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-smalldisk/versions/1709.0.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktc21hbGxkaXNrL3ZlcnNpb25zLzE3MDkuMC4yMDE4MDYxMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.18?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "529f73ec-94e5-4c4e-bef3-e51ce499c0aa" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "57bfa9fd-a8af-412b-b38f-ddbab96eed54" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-smalldisk/Versions/1709.0.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9986,Microsoft.Compute/GetVMExtension30Min;21986" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "0ac0e3df-368c-4c98-aecb-4076f971b1bc" - ], - "Cache-Control": [ - "no-cache" + "eb3180b3-4b7d-4807-82bf-78274fbcd9dc" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/e27ff86c-d99f-419a-b644-50b62e44c8dc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14581" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ca33167b-a00a-4968-890a-f1c0223955dc" + "9beffecb-a8a3-473f-afc3-2c716f84fcb5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012724Z:ca33167b-a00a-4968-890a-f1c0223955dc" + "EASTUS2:20250602T215236Z:9beffecb-a8a3-473f-afc3-2c716f84fcb5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CA9B7069FEB24152997C7B8906A89DBB Ref B: MNZ221060608031 Ref C: 2025-06-02T21:52:36Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:23 GMT" + "Mon, 02 Jun 2025 21:52:36 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.18\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.18\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.18?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xOD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9dda4d69-8eec-422b-bae5-81e97e3b134e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171012\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20171012\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171219\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20171219\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180220\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180524\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180524\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2755" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9939,Microsoft.Compute/GetVMExtension30Min;21939" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "2dc3d9f8-ea7a-4eb1-8d3a-4e4df648146b" + "7e0d857e-f5ee-4ca9-a736-67f58891b479" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/72edab4f-6175-428f-a962-32344f9c8da3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14794" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "8e03282b-96d3-425b-b3a3-e0d8d42e52f7" + "984db1ba-737b-49eb-ae33-62bfeb4ec381" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012656Z:8e03282b-96d3-425b-b3a3-e0d8d42e52f7" + "EASTUS:20250602T215410Z:984db1ba-737b-49eb-ae33-62bfeb4ec381" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 18CCC0B737E846849C919CF8852E3C0E Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:55 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.18\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.18\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.19?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9b327af0-0451-4b8f-85fb-bec65e695875" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "493b510e-9e6f-4c25-90ae-5c61bd6dd83f" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171012\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20171012\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20171115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171219\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20171219\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180220\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180524\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180524\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180613\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "2755" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9985,Microsoft.Compute/GetVMExtension30Min;21985" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "43aa5ba0-2181-4ac9-b6b1-fefa97d96c8c" + "525a8560-a00c-490d-9420-38d6ceba8145" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/484777a9-bc9c-4b7c-98cd-611fc35f77f4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14580" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e8d5bcd2-6c53-40e1-b2fb-a48beb634c70" + "26e8ce5e-4085-428d-b97a-702780566cc4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012724Z:e8d5bcd2-6c53-40e1-b2fb-a48beb634c70" + "EASTUS2:20250602T215237Z:26e8ce5e-4085-428d-b97a-702780566cc4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F8C6643EAABB4F95863EFDB75F87263E Ref B: MNZ221060610045 Ref C: 2025-06-02T21:52:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:23 GMT" + "Mon, 02 Jun 2025 21:52:37 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.19\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.19\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20171012?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxNzEwMTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.19?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4xOT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "19dd5eb4-7e6b-4e31-b802-58c054f84d49" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171012\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20171012\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9938,Microsoft.Compute/GetVMExtension30Min;21938" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "aea3ddbe-9a44-487f-a475-e07f89ab45bd" - ], - "Cache-Control": [ - "no-cache" + "047d0d73-4423-4aaf-bb85-bf060c0e2b10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/81af4a62-6b31-437a-89d2-8db56a3ac9a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14793" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b9b31a3b-0b5e-4a76-823a-60e84389afba" + "e02b92ba-e654-4baa-9711-5b54a2b17787" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012656Z:b9b31a3b-0b5e-4a76-823a-60e84389afba" + "EASTUS:20250602T215411Z:e02b92ba-e654-4baa-9711-5b54a2b17787" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A414B4A55443479E864308836037E480 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:55 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.19\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.19\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20171012?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxNzEwMTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4yP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6b39f0e4-38a1-41da-91a7-67d3615c9b70" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b3853543-5671-4fb2-bc4e-d9e4868b34ff" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171012\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20171012\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9984,Microsoft.Compute/GetVMExtension30Min;21984" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "17837e81-e342-40da-b8fa-3abcf66aa50f" + "fa472541-ea0f-4128-ba8d-4325e90a60fe" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/48ad9c73-7a5f-4d1f-8882-d1303d054a58" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14579" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7ed1e019-e17d-4c9a-bdda-347f70b2ec8f" + "6e521e1b-36c8-47d4-9378-2646021baa2a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012724Z:7ed1e019-e17d-4c9a-bdda-347f70b2ec8f" + "EASTUS2:20250602T215237Z:6e521e1b-36c8-47d4-9378-2646021baa2a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 56CF71C721BE4865897CF90049073D2B Ref B: MNZ221060618051 Ref C: 2025-06-02T21:52:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:23 GMT" + "Mon, 02 Jun 2025 21:52:36 GMT" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxNzExMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4yP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "541ecee1-8efb-4dfc-934b-aefd278ebe59" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9937,Microsoft.Compute/GetVMExtension30Min;21937" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "b88f4b49-dbb5-4c9b-939d-f2e81dbe159e" - ], - "Cache-Control": [ - "no-cache" + "deb11f5f-c14c-4000-9111-662effb84a7d" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7e3aee82-e674-4796-85ed-dc89f2764065" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14792" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "fc3f2eee-9049-423c-adf3-733c18c66047" + "407c6ab1-5f7a-4732-b9e4-920e13ceaed8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012656Z:fc3f2eee-9049-423c-adf3-733c18c66047" + "EASTUS:20250602T215411Z:407c6ab1-5f7a-4732-b9e4-920e13ceaed8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6210D040A77F4A23B0580C5045CCD28C Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:55 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20171115?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxNzExMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.20?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4yMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9f7eb6c7-df10-4d84-aa3c-74b2b6959bef" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "cc4a7463-b268-4b3e-8a3e-1120e745fdc5" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171115\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20171115\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9983,Microsoft.Compute/GetVMExtension30Min;21983" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "1738d3c2-7ed9-41ea-99f4-7e2fab26aa59" + "280b23a0-e8e3-4af3-a799-ebacd447f4c7" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3893d74d-5c44-493f-937c-04a6908f6909" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14578" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "801fb096-898d-4138-82c4-95539acdcd62" + "e5555985-3e97-420d-95cc-5e8a367d4984" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012724Z:801fb096-898d-4138-82c4-95539acdcd62" + "EASTUS2:20250602T215237Z:e5555985-3e97-420d-95cc-5e8a367d4984" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 32824C984E5748BB9E75F56E04ECA0A9 Ref B: MNZ221060619035 Ref C: 2025-06-02T21:52:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:23 GMT" + "Mon, 02 Jun 2025 21:52:36 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.20\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.20\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20171219?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxNzEyMTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.20?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4yMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7ad3a5af-d669-45db-be94-ac32bc034b0b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171219\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20171219\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9936,Microsoft.Compute/GetVMExtension30Min;21936" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "e163a7ff-e594-4efd-a307-1ee794a1add9" - ], - "Cache-Control": [ - "no-cache" + "cfaf41be-7d00-4fb3-92cc-e36180155bf7" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2d0c562b-e106-452b-b04f-cf681c884cbe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14791" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "169b57b3-c87b-43f5-a0d5-e2ddfbccca5c" + "980a2adb-ba6d-440b-9e15-45f7595c2160" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012656Z:169b57b3-c87b-43f5-a0d5-e2ddfbccca5c" + "EASTUS:20250602T215411Z:980a2adb-ba6d-440b-9e15-45f7595c2160" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BECBC29AD7BA4B3995A3BC4A6BA60FE9 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:56 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.20\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.20\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20171219?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxNzEyMTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d83d258a-e8e6-486f-8dfd-7fd5bf4c9a5b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "206099e4-08ec-4733-83c0-7b16ae7a7b1a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20171219\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20171219\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9982,Microsoft.Compute/GetVMExtension30Min;21982" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "f3236da7-901e-49ed-ad52-a170a857ff33" + "e02b7c43-ef12-42f8-9d91-b8cac94986b7" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/183bea69-04b1-4fe0-a152-1dd5d89787cc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14577" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "fcdd2e0a-9e45-432a-8d5a-daf4f449726c" + "3fc0cefb-8e82-40dd-9318-a4235c8cd72b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012724Z:fcdd2e0a-9e45-432a-8d5a-daf4f449726c" + "EASTUS:20250602T215237Z:3fc0cefb-8e82-40dd-9318-a4235c8cd72b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A3AFE85248F74174AC56FE2142B5FFE6 Ref B: MNZ221060618039 Ref C: 2025-06-02T21:52:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:23 GMT" + "Mon, 02 Jun 2025 21:52:37 GMT" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20180220?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxODAyMjA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC4zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6d26c58d-8a7f-4414-a12e-8cd1f654ffda" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180220\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9935,Microsoft.Compute/GetVMExtension30Min;21935" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "39f79a86-d0ec-4495-bded-1b91d056d79c" - ], - "Cache-Control": [ - "no-cache" + "680e9429-40fc-4f33-909c-2303db4067b9" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/a52c7ec9-1434-49f9-83cf-6cdab4a72d46" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14790" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "1c2b35c3-a563-4179-b2f3-224345f5db3b" + "78e47d84-9937-4053-8294-28eaf617db19" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012657Z:1c2b35c3-a563-4179-b2f3-224345f5db3b" + "EASTUS:20250602T215411Z:78e47d84-9937-4053-8294-28eaf617db19" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8412ACDBA231421498A80C6C8670D0CE Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:56 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20180220?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxODAyMjA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.5?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC41P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "edb82e34-2d0b-461e-a6f0-eab41e741914" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c76f9460-476f-41c2-8560-d6d5a2160467" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180220\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180220\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9981,Microsoft.Compute/GetVMExtension30Min;21981" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "b41ba4bb-7e0d-4bce-a042-5c8c70c5f5e9" + "195e0e76-0c39-40c7-a549-1453326f2bab" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8e274476-63ff-4684-807d-b84f3d3d404a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14576" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "2d27cc72-054f-4935-a08c-aa1ec698333f" + "12cc9a99-350f-4522-b665-138e31b2ad9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012724Z:2d27cc72-054f-4935-a08c-aa1ec698333f" + "EASTUS:20250602T215237Z:12cc9a99-350f-4522-b665-138e31b2ad9a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BA196D035CF54DC9B751F282040F7F76 Ref B: MNZ221060619047 Ref C: 2025-06-02T21:52:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:23 GMT" + "Mon, 02 Jun 2025 21:52:37 GMT" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxODAzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.5?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC41P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "50d08e1d-6501-440e-b7b7-e373cf5aba75" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9934,Microsoft.Compute/GetVMExtension30Min;21934" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "cae34ccc-a231-459f-9971-890008b4c645" - ], - "Cache-Control": [ - "no-cache" + "08f9a1cb-3c0f-4da2-bd6e-c1926b435f82" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/f369e746-a515-45d5-af08-c122777a4913" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14789" + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" ], "x-ms-correlation-request-id": [ - "b52e1df3-79b4-41d5-aa13-1b139ea8afab" + "f5135202-162a-4d9a-9183-c82d10dc404c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012657Z:b52e1df3-79b4-41d5-aa13-1b139ea8afab" + "EASTUS:20250602T215411Z:f5135202-162a-4d9a-9183-c82d10dc404c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3519F4BF1672453B803E31A9DC16D60B Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:56 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20180315?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxODAzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.8?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC44P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6fded85c-8e2b-42a6-90e1-b3aeceff4226" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "60dcf4c5-fdcc-49fd-b0d1-af330c066b82" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180315\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180315\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9980,Microsoft.Compute/GetVMExtension30Min;21980" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "8623617b-bb7a-4a81-9567-8a5576c36176" + "0991d830-f44a-434b-9443-ebde99a25424" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b104cad5-0e54-42ee-9cc2-2ffa2a3a9d9e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14575" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "594fa78a-48a1-47c8-9798-2e9dd5baf3e8" + "25fab80e-4018-4040-98eb-9a06fa1226fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012724Z:594fa78a-48a1-47c8-9798-2e9dd5baf3e8" + "EASTUS:20250602T215237Z:25fab80e-4018-4040-98eb-9a06fa1226fd" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BD57184A75654AEAACBDA34D15091CE4 Ref B: MNZ221060619037 Ref C: 2025-06-02T21:52:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:24 GMT" + "Mon, 02 Jun 2025 21:52:37 GMT" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxODA0MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.8?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC44P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f4fe6ae4-b454-44a0-add3-f677bc786f37" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9933,Microsoft.Compute/GetVMExtension30Min;21933" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "c74b1803-11a9-4929-bb51-b887f6934d92" - ], - "Cache-Control": [ - "no-cache" + "1c96849d-4e07-4aae-bd70-ced2c3abc771" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5f355743-bf2e-4af5-8619-53cfdf82d731" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14788" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "bece18a9-dcc3-4aaf-a442-dad310a2604a" + "e6453bce-da3c-45c9-82d5-38dc259c20ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012657Z:bece18a9-dcc3-4aaf-a442-dad310a2604a" + "EASTUS:20250602T215411Z:e6453bce-da3c-45c9-82d5-38dc259c20ea" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 68DBAA2B13A74017A3BCDEC4EC2C5444 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:56 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20180412?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxODA0MTI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.9?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC45P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d4b90940-01a6-470e-b864-b150c779a493" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "01fc0260-9470-48f0-8586-b9f63c617ddb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180412\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180412\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9979,Microsoft.Compute/GetVMExtension30Min;21979" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "4cf87d71-0326-468b-80d1-c982c794a775" + "74a5bcf2-06ed-4855-b7a2-df4b2f1fb07c" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0747ead2-ced5-4496-91b3-f66b9c2a2471" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14574" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "0802afe1-1b51-4be7-bfad-a606a42d4127" + "c31d4840-a97f-4410-ade9-c3c7859ac7b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012725Z:0802afe1-1b51-4be7-bfad-a606a42d4127" + "EASTUS:20250602T215237Z:c31d4840-a97f-4410-ade9-c3c7859ac7b0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 967795D44D1A4BB5BE74D4DE3F81C242 Ref B: MNZ221060610021 Ref C: 2025-06-02T21:52:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:24 GMT" + "Mon, 02 Jun 2025 21:52:37 GMT" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20180524?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxODA1MjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.10.9?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xMC45P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f950be22-ee14-48a0-a0bc-a6ef03da1230" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180524\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180524\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9932,Microsoft.Compute/GetVMExtension30Min;21932" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "54af2527-25c8-4905-9c49-8e27c518196a" - ], - "Cache-Control": [ - "no-cache" + "613b6705-1818-425f-8258-336766ad1efa" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c8d6b7d7-d100-43c5-a096-654d7071e3a4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14787" + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" ], "x-ms-correlation-request-id": [ - "a52b8e36-4992-4a87-a2ce-3d179449aa0a" + "22c84456-e683-470b-b6fb-3da109b57026" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012657Z:a52b8e36-4992-4a87-a2ce-3d179449aa0a" + "EASTUS:20250602T215411Z:22c84456-e683-470b-b6fb-3da109b57026" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DA30F47ACA94408FA4B729B6AAC873BE Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:56 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20180524?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxODA1MjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4yP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "275b56f3-61fe-4748-9a04-6e8eb6637b2d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "711c1cc5-6870-4c23-810d-87d4ddff6b5a" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180524\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180524\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9978,Microsoft.Compute/GetVMExtension30Min;21978" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "e3dcb36b-f307-4240-99f4-cc2f68ff6965" + "cc9a29bc-e9b8-4c6d-aa4a-ff9e06e38726" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ccdd5d89-fa6c-4ee3-81fc-d719da6ec653" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14573" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "79c876d3-f18d-4dc9-94d3-5aa0cc351274" + "8b9c7e76-a931-4e05-92ea-27d7ceec26a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012725Z:79c876d3-f18d-4dc9-94d3-5aa0cc351274" + "EASTUS:20250602T215237Z:8b9c7e76-a931-4e05-92ea-27d7ceec26a7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6BCE1AC0170B4BA18C0E80A5154CC0BA Ref B: MNZ221060610035 Ref C: 2025-06-02T21:52:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:24 GMT" + "Mon, 02 Jun 2025 21:52:37 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxODA2MTM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4yP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "443f5c20-f047-47e7-bc51-8a54ef6b113d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9931,Microsoft.Compute/GetVMExtension30Min;21931" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "c0fda557-1555-452f-b1d0-4ffbfd04fdb7" - ], - "Cache-Control": [ - "no-cache" + "1599098b-df11-4748-9984-493a8dd9aaf2" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3c0f83ea-fd33-4817-aab4-200edbdc8ba8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14786" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "28eabcde-23d9-47fe-8cfb-399eca276711" + "91535333-b233-43ac-a306-0f582dac24f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012657Z:28eabcde-23d9-47fe-8cfb-399eca276711" + "EASTUS:20250602T215411Z:91535333-b233-43ac-a306-0f582dac24f9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EE79AEDB7DC04E3BB9B12104802FE491 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:57 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1709-with-Containers-smalldisk/versions/1709.0.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE3MDktd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xNzA5LjAuMjAxODA2MTM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "57142269-0346-4dd9-ad87-6c9427c0f43d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c09f57ac-8463-4622-b4a1-dd640828ecc0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1709.0.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1709-with-Containers-smalldisk/Versions/1709.0.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9977,Microsoft.Compute/GetVMExtension30Min;21977" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "407390ea-eed5-451d-8f15-9fa762d047cb" + "de53e740-cc08-42fd-89c1-7ae7e688d014" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/30da6e7d-ffd4-4240-b106-0ccaeae00efe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14572" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f4307601-f5be-4392-8ecf-e3e962ba9e28" + "710666fd-f9f8-45b7-a413-d6dbc16ba8bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012725Z:f4307601-f5be-4392-8ecf-e3e962ba9e28" + "EASTUS:20250602T215238Z:710666fd-f9f8-45b7-a413-d6dbc16ba8bc" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 696700345596483B9C5908863BA2B066 Ref B: MNZ221060608019 Ref C: 2025-06-02T21:52:37Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:24 GMT" + "Mon, 02 Jun 2025 21:52:37 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1803-with-Containers-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE4MDMtd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b234c8cf-3d2a-4f4e-b062-eb4a8dd90f41" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], - "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1803.0.20180504\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk/Versions/1803.0.20180504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1803.0.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk/Versions/1803.0.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1803.0.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk/Versions/1803.0.20180613\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "1035" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" ], - "Expires": [ - "-1" + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9930,Microsoft.Compute/GetVMExtension30Min;21930" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "09c52155-5b88-4648-8cd9-1220c47a6650" + "95db4018-7db5-4ada-9a47-7c6f0cb4b8c5" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b5a6b1cb-e7ec-49f9-b482-829499bc2037" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14785" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "40253fc4-4463-4c3b-bd04-d6fef155f47f" + "7951489b-5b38-4876-9a75-2ef9520977f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012657Z:40253fc4-4463-4c3b-bd04-d6fef155f47f" + "EASTUS:20250602T215411Z:7951489b-5b38-4876-9a75-2ef9520977f7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 748A519B920E4517BF6D397CDD6AC0E0 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:57 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1803-with-Containers-smalldisk/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE4MDMtd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.4?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS40P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c98c3636-3a28-4109-a572-7d226c72fb17" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "32a8f06d-0765-4a38-9187-cf70fca67c35" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1803.0.20180504\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk/Versions/1803.0.20180504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1803.0.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk/Versions/1803.0.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1803.0.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk/Versions/1803.0.20180613\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "1035" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9976,Microsoft.Compute/GetVMExtension30Min;21976" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "665872d7-ae60-41db-95b2-ad180aa7d987" - ], - "Cache-Control": [ - "no-cache" + "07cf3867-123d-437d-a9f9-037aac4f87df" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fa8003ca-395c-42ed-aeaa-b0bca768a7ef" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14571" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f67dfd18-f63e-4ded-9dd7-98776d29a218" + "1ca14a29-2941-433b-905f-d6e6e78790df" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012725Z:f67dfd18-f63e-4ded-9dd7-98776d29a218" + "EASTUS2:20250602T215238Z:1ca14a29-2941-433b-905f-d6e6e78790df" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2F6374294F85456BA5939F0FAA574B2D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:52:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:24 GMT" + "Mon, 02 Jun 2025 21:52:37 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1803-with-Containers-smalldisk/versions/1803.0.20180504?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE4MDMtd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xODAzLjAuMjAxODA1MDQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.4?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS40P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "de28807d-5777-4141-aa07-b0cbe426572e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1803.0.20180504\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk/Versions/1803.0.20180504\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9929,Microsoft.Compute/GetVMExtension30Min;21929" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "172449cb-8d7c-4173-8ab6-251f3becfc84" + "e3b34823-618e-41e9-980c-36d7e4dc6de6" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4dae8872-c644-4411-9526-20820037fa31" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14784" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "6231bd61-7e6d-4e3a-be67-34d4e140b0fd" + "9c4ad635-d3d9-471e-80b5-13a673dacf82" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012658Z:6231bd61-7e6d-4e3a-be67-34d4e140b0fd" + "EASTUS:20250602T215411Z:9c4ad635-d3d9-471e-80b5-13a673dacf82" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 70BEC224C2814509AA03F6833ABD9077 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:57 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1803-with-Containers-smalldisk/versions/1803.0.20180504?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE4MDMtd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xODAzLjAuMjAxODA1MDQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.7?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS43P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8702e52d-7cd8-4f97-88ec-cf21ed990bd3" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "5a59e343-ea19-4637-ab4e-b0332fd6407e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1803.0.20180504\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk/Versions/1803.0.20180504\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9975,Microsoft.Compute/GetVMExtension30Min;21975" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "52a91295-563d-4142-8d5c-33946654c0ae" - ], - "Cache-Control": [ - "no-cache" + "93c152b0-fa21-491d-a219-b5754410331c" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/dea7c98e-18d2-4305-9e90-7a9d40df9596" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14570" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "520dd49c-8b67-498f-8ec6-dd34d339574c" + "73f17945-8cfa-4134-93d1-d5fcbf28e043" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012725Z:520dd49c-8b67-498f-8ec6-dd34d339574c" + "EASTUS2:20250602T215238Z:73f17945-8cfa-4134-93d1-d5fcbf28e043" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AAE1FB420BA342B4BD9238981BC6C71F Ref B: MNZ221060610029 Ref C: 2025-06-02T21:52:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:24 GMT" + "Mon, 02 Jun 2025 21:52:37 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1803-with-Containers-smalldisk/versions/1803.0.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE4MDMtd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xODAzLjAuMjAxODA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.7?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS43P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3c2d32fc-a701-431e-b650-3c116bf51891" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1803.0.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk/Versions/1803.0.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9928,Microsoft.Compute/GetVMExtension30Min;21928" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "b373ec49-b4c3-417e-a523-26f16c848083" + "aece70d8-2252-4529-9ec5-873286bcb2c1" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7eb0b8fa-8086-4f5a-ab90-06e33a20ac8b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14783" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "512c095b-1ba7-4790-bfa1-a918c3a09e48" + "28e896ce-8b1d-4dc9-8000-9388f8b767db" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012658Z:512c095b-1ba7-4790-bfa1-a918c3a09e48" + "EASTUS:20250602T215411Z:28e896ce-8b1d-4dc9-8000-9388f8b767db" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0AC21CB95FD64D55854F68A001BFD101 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:57 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1803-with-Containers-smalldisk/versions/1803.0.20180510?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE4MDMtd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xODAzLjAuMjAxODA1MTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.8?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS44P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5b851f38-0bb0-4df4-a89c-bc3b36b2a284" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "67c8f468-548b-4695-84fe-d946eba63f23" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1803.0.20180510\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk/Versions/1803.0.20180510\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9974,Microsoft.Compute/GetVMExtension30Min;21974" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "ddd21153-2b38-46c2-9004-c168d36c303d" - ], - "Cache-Control": [ - "no-cache" + "2024bff3-cf24-4361-aa18-7d9f08c7ccae" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2e6d86f0-0482-493d-a54a-24ae30878334" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14569" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "21e6108e-42fe-46eb-97c5-a2cf18f11fc3" + "2d20dbc4-7b46-409a-a2c9-7dedea94cd2c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012725Z:21e6108e-42fe-46eb-97c5-a2cf18f11fc3" + "EASTUS2:20250602T215238Z:2d20dbc4-7b46-409a-a2c9-7dedea94cd2c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F6AB18809AC44DAAB23AADBE52B8CDE Ref B: MNZ221060619027 Ref C: 2025-06-02T21:52:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:24 GMT" + "Mon, 02 Jun 2025 21:52:37 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1803-with-Containers-smalldisk/versions/1803.0.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE4MDMtd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xODAzLjAuMjAxODA2MTM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.8?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS44P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2f04c49c-caca-4f46-a20e-d47ac9c490f9" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1803.0.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk/Versions/1803.0.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9927,Microsoft.Compute/GetVMExtension30Min;21927" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "b508544f-6a96-476f-8c27-0cebf5d28fd1" + "ad984718-2dd6-4a17-a93d-c200573e9156" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2a51ed92-be19-42f9-989e-fc4d4b0e860b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "4fb18464-c296-47af-9cf6-879046b86b64" + "08ce9735-cdfa-41d8-b73a-d1ac87b321d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012658Z:4fb18464-c296-47af-9cf6-879046b86b64" + "EASTUS:20250602T215411Z:08ce9735-cdfa-41d8-b73a-d1ac87b321d6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3AA1813BD7904399BAB604113D7756EC Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:57 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServerSemiAnnual/skus/Datacenter-Core-1803-with-Containers-smalldisk/versions/1803.0.20180613?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJTZW1pQW5udWFsL3NrdXMvRGF0YWNlbnRlci1Db3JlLTE4MDMtd2l0aC1Db250YWluZXJzLXNtYWxsZGlzay92ZXJzaW9ucy8xODAzLjAuMjAxODA2MTM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "768824c2-47a0-4bd4-b466-8e638f9ff4ee" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "18edaf9a-7d3d-4db6-926c-b635b5aaf652" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1803.0.20180613\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual/Skus/Datacenter-Core-1803-with-Containers-smalldisk/Versions/1803.0.20180613\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "448" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9973,Microsoft.Compute/GetVMExtension30Min;21973" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e91047d6-10df-436c-bd78-94e832a89049_131753903412546633" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "4721cc5e-3c7f-4ca3-889e-d3af7326913e" - ], - "Cache-Control": [ - "no-cache" + "0e631fdc-2e72-4890-b5bb-672a83db0451" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7edf3840-6a76-4ae1-a384-0ffebc684ab3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14568" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ee271713-88f2-4b9d-83e6-9e7e1a2d1ced" + "72b30caa-fbc4-4936-815d-1011f412009d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012725Z:ee271713-88f2-4b9d-83e6-9e7e1a2d1ced" + "EASTUS:20250602T215238Z:72b30caa-fbc4-4936-815d-1011f412009d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4CD94BEF02314C17A54DA85873C393BE Ref B: MNZ221060619017 Ref C: 2025-06-02T21:52:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:24 GMT" + "Mon, 02 Jun 2025 21:52:37 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c86a6e40-b798-444f-8832-64e64b186a68" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "279" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9926,Microsoft.Compute/GetVMExtension30Min;21926" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "6541f578-b33f-4a0f-a26d-7b4e552a2413" - ], - "Cache-Control": [ - "no-cache" + "3b4ffc57-0383-4323-84a0-e68db9c26225" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9053d4ce-5203-49ab-bb4b-cdc616e5cb05" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "dd9bb89d-09de-4b2c-a961-ac8feb7b42b3" + "40fda2e9-c4f0-477f-b0a7-e6e399264001" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012658Z:dd9bb89d-09de-4b2c-a961-ac8feb7b42b3" + "EASTUS:20250602T215411Z:40fda2e9-c4f0-477f-b0a7-e6e399264001" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 444941CD099C4257A9EDCD3C1CDEA702 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:57 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9.1?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45LjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "be85f394-824b-4fce-b5cd-15156f38729a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "ebc2a7c8-c869-44cb-9ae6-3282315ab776" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "279" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9972,Microsoft.Compute/GetVMExtension30Min;21972" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "ce5ce974-8764-4ac5-b756-0f3555842768" + "9e7242b3-8143-4182-9d29-2acb1f1b3e92" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/550ed495-097d-49fc-9e01-a65952368349" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14567" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8cc65ed1-4927-4dd1-a02b-bd67377f8a6a" + "ad9564b3-641f-41ef-9207-6437288e7202" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012725Z:8cc65ed1-4927-4dd1-a02b-bd67377f8a6a" + "EASTUS:20250602T215238Z:ad9564b3-641f-41ef-9207-6437288e7202" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3C410BB4155D467F9CFE3AA9E45B685F Ref B: MNZ221060608009 Ref C: 2025-06-02T21:52:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:24 GMT" + "Mon, 02 Jun 2025 21:52:37 GMT" + ], + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9.1?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45LjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b84b9022-9d10-4d71-a819-eaf574cd9bb4" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "1033" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9925,Microsoft.Compute/GetVMExtension30Min;21925" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "ef2d5f3f-5eca-4d84-8e49-907229dcc215" - ], - "Cache-Control": [ - "no-cache" + "25baa6ef-dd4b-4f90-918e-df8f85535fc2" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0d61d3eb-6d78-448d-9919-3b5e987e9920" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14780" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "8978b0b0-8145-4585-af8b-0634f4be0a40" + "cc1a0c47-b52d-49cf-ae7f-bcfcc4bb327c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012658Z:8978b0b0-8145-4585-af8b-0634f4be0a40" + "EASTUS:20250602T215411Z:cc1a0c47-b52d-49cf-ae7f-bcfcc4bb327c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 00E09A867F39445B9E6267EBF6EA710D Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:58 GMT" + "Mon, 02 Jun 2025 21:54:10 GMT" + ], + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45LjI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bd5a5fbe-f3be-4166-871f-b4526ddaa10b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "c4829ab7-5c56-4972-a104-e3e2550542b0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "1033" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9971,Microsoft.Compute/GetVMExtension30Min;21971" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "4e75b171-7f73-4956-ad2e-7a77829ea966" - ], - "Cache-Control": [ - "no-cache" + "c6f4339b-72fc-482e-b578-1a98369b242a" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2a84b2db-1041-4fa7-a4e9-eda6340cc96b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14511" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8c5f6fe3-7704-47b9-81f1-7cae071b65c9" + "63644669-963b-485b-8a6b-5b4e99a3639e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012734Z:8c5f6fe3-7704-47b9-81f1-7cae071b65c9" + "EASTUS2:20250602T215238Z:63644669-963b-485b-8a6b-5b4e99a3639e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B70825BFD6AA407DBAEE7CE2BF0136DC Ref B: MNZ221060609017 Ref C: 2025-06-02T21:52:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:34 GMT" + "Mon, 02 Jun 2025 21:52:38 GMT" + ], + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?$filter=startswith(name,'1')&api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/JGZpbHRlcj1zdGFydHN3aXRoKG5hbWUsJzEnKSZhcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45LjI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f0740aea-cf8b-41eb-96dd-47e0434e6caa" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9924,Microsoft.Compute/GetVMExtension30Min;21924" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "86c88128-4d02-43e2-824d-2d66eae67431" - ], - "Cache-Control": [ - "no-cache" + "8587ed07-b326-421d-80a0-60817d6a1cf6" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d9670ce2-6832-4b89-a96b-e1ec77be730e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14779" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "44a96e8e-79f9-470d-a5db-460256ed8642" + "fa43b278-c5c2-49a1-a086-bd522815b9f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012658Z:44a96e8e-79f9-470d-a5db-460256ed8642" + "EASTUS:20250602T215411Z:fa43b278-c5c2-49a1-a086-bd522815b9f1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5836F35E5E8743589A36E5607EB6C40F Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:58 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions?$filter=startswith(name,'1')&api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnM/JGZpbHRlcj1zdGFydHN3aXRoKG5hbWUsJzEnKSZhcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45LjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3b23fadb-fe00-467f-b7c0-817d56f8bf9e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "17f3f68f-7d41-47e9-8b49-1392818fe4ef" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"1.0.1\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n },\r\n {\r\n \"name\": \"1.0.3\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n },\r\n {\r\n \"name\": \"1.1\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n },\r\n {\r\n \"name\": \"1.2\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n },\r\n {\r\n \"name\": \"1.3\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n },\r\n {\r\n \"name\": \"1.4\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n },\r\n {\r\n \"name\": \"1.7\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.7\"\r\n },\r\n {\r\n \"name\": \"1.8\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.8\"\r\n },\r\n {\r\n \"name\": \"1.9\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9\"\r\n },\r\n {\r\n \"name\": \"1.9.1\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.1\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2655" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9970,Microsoft.Compute/GetVMExtension30Min;21970" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "996b9fea-01a0-4c65-90fb-f054e26c7eb4" + "994c5743-5725-4d4b-9c94-a5fbcc2d99fa" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/225dbc1e-b48e-4886-bd98-68fc44b2be83" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14778" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ad8b3354-2095-486c-a13e-4a1da824b1fb" + "2e7b9ed2-7ad5-44da-9e59-ea2122f970f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012659Z:ad8b3354-2095-486c-a13e-4a1da824b1fb" + "EASTUS2:20250602T215238Z:2e7b9ed2-7ad5-44da-9e59-ea2122f970f8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B4B9B740379B4372AB34C1F3F1B7735C Ref B: MNZ221060618033 Ref C: 2025-06-02T21:52:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:58 GMT" + "Mon, 02 Jun 2025 21:52:37 GMT" + ], + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.1?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45LjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "dcb84644-92cd-4317-966a-6507e99dbbe8" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.1\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9923,Microsoft.Compute/GetVMExtension30Min;21923" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "eb427336-5dfb-4b79-8a9e-d6df57a15fed" - ], - "Cache-Control": [ - "no-cache" + "9411961c-e817-4873-a847-d5c4f41d233e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8ba9938c-6df1-45b8-bd32-2c96e2961ed2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14777" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "8f900e7a-2cf8-4207-a46d-fce86359d442" + "066b8beb-12ef-4ef7-a49f-1d0ea78fb848" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012659Z:8f900e7a-2cf8-4207-a46d-fce86359d442" + "EASTUS:20250602T215411Z:066b8beb-12ef-4ef7-a49f-1d0ea78fb848" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1793BC5F131E4571B91A3A3DBBD85205 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:58 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.1?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9.5?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45LjU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e345f4b3-134b-43b0-bc30-ee12b6a1086a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "400af4f7-f059-41d4-af52-baad9cefc83e" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.1\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9969,Microsoft.Compute/GetVMExtension30Min;21969" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "5c74fe2b-02fc-4195-8319-71807dc018f0" + "30ccaffc-2ae7-412e-aeb9-0a0d97af6617" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7493ec34-7dad-428c-850f-0bc6a1aab3af" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14507" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "03649780-ce55-4519-b7db-9e032f8ecde9" + "a8fa4636-0245-45f0-b1bd-69273fe12ae0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012734Z:03649780-ce55-4519-b7db-9e032f8ecde9" + "EASTUS:20250602T215238Z:a8fa4636-0245-45f0-b1bd-69273fe12ae0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AEE6281349434DA1BE954B76FE2987B7 Ref B: MNZ221060610011 Ref C: 2025-06-02T21:52:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:34 GMT" + "Mon, 02 Jun 2025 21:52:38 GMT" + ], + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.3?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9.5?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45LjU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f58a3926-1179-41df-96c2-24c5926b4dd1" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.3\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9922,Microsoft.Compute/GetVMExtension30Min;21922" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "b484b507-c4a0-4d48-b34c-5781996ca8ca" - ], - "Cache-Control": [ - "no-cache" + "b89b9670-80b6-4055-8453-b0bc2128ae30" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b0efeb6c-dc72-4a18-8ac0-4499235f0028" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14776" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "e8390361-7c71-4075-bbc5-e7bb26be7581" + "f4555a15-2d0a-4ce3-ad43-6044c583c7df" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012659Z:e8390361-7c71-4075-bbc5-e7bb26be7581" + "EASTUS:20250602T215411Z:f4555a15-2d0a-4ce3-ad43-6044c583c7df" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5431FA5F3B0B4D0EAA2EB1796718CD82 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:58 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.3?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions?api-version=2024-11-01&$filter=startswith%28name%2C%271%27%29", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMSYkZmlsdGVyPXN0YXJ0c3dpdGglMjhuYW1lJTJDJTI3MSUyNyUyOQ==", "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7e20ab11-438e-419f-b4d6-95a2a08cab14" - ], - "accept-language": [ + "RequestHeaders": { + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "99a70acb-8032-4e9d-b2d1-fe3a4983a921" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.3\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensions3Min;9997,Microsoft.Compute/ListVMExtensions30Min;21997" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "54e3876c-ce9b-4380-875c-c7ced19a547b" - ], - "Cache-Control": [ - "no-cache" + "cba04e10-6041-4f0e-9aaa-8b1378e1afce" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/454fd02d-edde-453a-aefc-f8e37f5bdbb5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14506" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "6951c3f5-ebc5-4e39-98df-1554b3e8a905" + "5907ac64-26d3-49a4-900d-c7901cb296c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012735Z:6951c3f5-ebc5-4e39-98df-1554b3e8a905" + "EASTUS2:20250602T215238Z:5907ac64-26d3-49a4-900d-c7901cb296c2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AF43D7B4879B4ED8BA2B9587AEEE3ECD Ref B: MNZ221060619037 Ref C: 2025-06-02T21:52:38Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:34 GMT" + "Mon, 02 Jun 2025 21:52:38 GMT" + ], + "Content-Length": [ + "2413" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.10\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.10\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.11\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.11\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.14\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.14\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.6\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.6\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.8\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.9\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.1?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.0?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4wP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6f03f01d-f741-4810-8e01-57f63208d968" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b34be4a6-f69a-46b7-a5eb-00fc6ca5c6df" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.1\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9968,Microsoft.Compute/GetVMExtension30Min;21968" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "d92d70e7-c061-45d9-be3e-2b05bad790fd" + "3e514259-21d0-4d7a-892d-6322d06b7e26" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d6302043-52e1-4bbc-8e37-2d3b0c2d1242" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14775" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "e586e1ea-0242-47a3-86c2-98ded6dcdee8" + "56d55b46-db7d-44ce-a9c0-bc97cf9d545f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012659Z:e586e1ea-0242-47a3-86c2-98ded6dcdee8" + "EASTUS:20250602T215239Z:56d55b46-db7d-44ce-a9c0-bc97cf9d545f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8D708D1F41E3430AB8776E0C8FBFD3F4 Ref B: MNZ221060609023 Ref C: 2025-06-02T21:52:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:59 GMT" + "Mon, 02 Jun 2025 21:52:38 GMT" + ], + "Content-Length": [ + "660" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.1?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.0?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4wP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b2bd157d-a8d4-43ca-8c2e-e7d1b0d5e50e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.1\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9921,Microsoft.Compute/GetVMExtension30Min;21921" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "a9d329fa-e9ad-4855-8c29-25c35e67c9a1" - ], - "Cache-Control": [ - "no-cache" + "33dd8e1c-0395-476a-822c-a2ff79562067" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6541244b-c253-4621-8f24-407f36209a32" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14505" + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" ], "x-ms-correlation-request-id": [ - "bfe5d2fd-6126-4d48-9223-363eab9710dd" + "26cbb03d-5af2-45e3-81de-1410473f021c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012735Z:bfe5d2fd-6126-4d48-9223-363eab9710dd" + "EASTUS:20250602T215411Z:26cbb03d-5af2-45e3-81de-1410473f021c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E8CFAB9D09FB45308C9CD5EEA4D40D24 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:35 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "660" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.2?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4yP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a8395fb3-bf31-490c-afaa-8c26d3fbb623" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b29d7375-60ab-438f-a874-a5e2b63c3d64" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.2\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9967,Microsoft.Compute/GetVMExtension30Min;21967" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "5507e264-bd44-42d6-9fae-fab25eb08db1" + "a7bad271-dc7d-42fc-946c-c21ec6c4ae41" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2686bc07-d645-4159-85c3-7ca4c6e2a580" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14774" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f120bb1b-8d0e-4d96-a20d-fedb3f00d548" + "cd3898ed-32f8-4cec-8609-7c3c805c7bd8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012659Z:f120bb1b-8d0e-4d96-a20d-fedb3f00d548" + "EASTUS:20250602T215239Z:cd3898ed-32f8-4cec-8609-7c3c805c7bd8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A6E74FB70A6F44F29AE2F225726D8BC3 Ref B: MNZ221060609053 Ref C: 2025-06-02T21:52:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:59 GMT" + "Mon, 02 Jun 2025 21:52:38 GMT" + ], + "Content-Length": [ + "660" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.2?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4yP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4fef69cd-30a7-409f-88d3-c99dfebe8c8d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.2\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9920,Microsoft.Compute/GetVMExtension30Min;21920" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "41c8c58c-1d35-4d1e-8c09-916faa71261c" - ], - "Cache-Control": [ - "no-cache" + "166c3600-3bb8-43b4-bce5-951d66bb6485" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/367cfdce-ffb1-417d-96bf-004324fd1dcc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14504" + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" ], "x-ms-correlation-request-id": [ - "196a5aeb-865f-4af7-a055-9b849e53d132" + "b9d5b0dd-1179-4f7f-9b38-e7f111aac713" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012735Z:196a5aeb-865f-4af7-a055-9b849e53d132" + "EASTUS:20250602T215411Z:b9d5b0dd-1179-4f7f-9b38-e7f111aac713" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E703715040E34973811278C435E174CD Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:35 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "660" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.3?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.10?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f362c4c4-dfa9-4744-b77d-d5075b0f8da6" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "905640d6-ab4f-482f-a214-70786a5cc62d" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.3\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9966,Microsoft.Compute/GetVMExtension30Min;21966" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "fe5adb66-cc6b-4357-bc32-94bc321abb4b" + "d52ddaa8-445c-4d71-b40b-00f999054dc4" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/32e05847-22a6-4dfa-bfaa-56c658f0865f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14773" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "793612f1-d03b-45d3-b87a-f4d82f4264a5" + "3b20357b-1b2d-4c30-a74b-709139f6f986" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012700Z:793612f1-d03b-45d3-b87a-f4d82f4264a5" + "EASTUS2:20250602T215239Z:3b20357b-1b2d-4c30-a74b-709139f6f986" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4098C61BCEC148B1ACAECC78EF647779 Ref B: MNZ221060618053 Ref C: 2025-06-02T21:52:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:59 GMT" + "Mon, 02 Jun 2025 21:52:38 GMT" + ], + "Content-Length": [ + "639" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.10\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.10\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.3?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.10?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjEwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "071033db-aa24-4c30-b371-f4d7b907c07d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.3\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9919,Microsoft.Compute/GetVMExtension30Min;21919" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "8fb1f7d8-d170-4dec-b95e-a317bf1e49cd" - ], - "Cache-Control": [ - "no-cache" + "e57660bf-5c87-4c46-8471-e1587444e621" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/421f0751-39bd-406d-8e6e-af52190f8af6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14503" + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" ], "x-ms-correlation-request-id": [ - "c94a83e1-460f-40db-bcac-92f6678562df" + "842ad547-8f3b-4024-8138-05f41d5d9b49" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012735Z:c94a83e1-460f-40db-bcac-92f6678562df" + "EASTUS:20250602T215411Z:842ad547-8f3b-4024-8138-05f41d5d9b49" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B1B15B17FD6478486B24CE62E034720 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:35 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "639" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.10\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.10\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.4?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS40P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.11?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5e536ae6-df16-4844-aef7-477ab0ab0cb9" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "7cecb11d-c0d4-490a-98bf-7746b3c0eb02" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.4\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9965,Microsoft.Compute/GetVMExtension30Min;21965" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "0d31e816-dec8-4df2-ac8c-1c68ea238d1e" + "4aeb5175-5700-4807-beec-465c45269601" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2610d9d3-8418-426a-9d47-cc027b0889ba" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14772" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "33dd065c-c2e3-43fd-a385-55ecb963bc22" + "4fd3070d-8a59-4fed-ab4d-424b76113cb5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012700Z:33dd065c-c2e3-43fd-a385-55ecb963bc22" + "EASTUS:20250602T215239Z:4fd3070d-8a59-4fed-ab4d-424b76113cb5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 33818171B7C24B9FA0C0DCD6BA5B5429 Ref B: MNZ221060619021 Ref C: 2025-06-02T21:52:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:59 GMT" + "Mon, 02 Jun 2025 21:52:38 GMT" + ], + "Content-Length": [ + "639" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.11\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.11\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.4?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS40P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.11?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjExP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3db966dc-c02b-4f67-a5f4-aa1755fa3b08" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.4\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9918,Microsoft.Compute/GetVMExtension30Min;21918" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "608679d3-5db6-4538-a272-023800846a76" - ], - "Cache-Control": [ - "no-cache" + "bf3f77ee-cb53-4b82-8801-1ed86fce3ea4" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8c21e566-e13b-4118-8f51-228c7aa5a399" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14502" + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" ], "x-ms-correlation-request-id": [ - "4c635c3c-3f60-421c-a4a4-16fc60452967" + "09f695f4-eeeb-4861-9ecb-03a36d86ff21" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012735Z:4c635c3c-3f60-421c-a4a4-16fc60452967" + "EASTUS:20250602T215412Z:09f695f4-eeeb-4861-9ecb-03a36d86ff21" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 018BA8B43E814B259978EE695702E647 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:35 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "639" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.11\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.11\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.7?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS43P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.14?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjE0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e049208f-d10f-4e88-afe5-c5a9ffd75eb0" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "a4340290-a526-469e-bfcc-53ee77949614" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.7\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.7\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9964,Microsoft.Compute/GetVMExtension30Min;21964" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "5b3c9003-07d4-4c28-81d3-2e111f3c9c3d" + "3bf51761-bba3-418b-8de8-9190fab63036" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/83709f73-a945-41d0-94cc-8e72ce510805" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14771" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "2cc1cc88-52b1-4865-90d3-37407d5e02ff" + "2a023900-8b54-4e3f-a32c-6a3a7c407a9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012700Z:2cc1cc88-52b1-4865-90d3-37407d5e02ff" + "EASTUS2:20250602T215239Z:2a023900-8b54-4e3f-a32c-6a3a7c407a9a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F1C4BBCB297C4D568993C4B5BA2B48AC Ref B: MNZ221060608049 Ref C: 2025-06-02T21:52:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:59 GMT" + "Mon, 02 Jun 2025 21:52:38 GMT" + ], + "Content-Length": [ + "639" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.14\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.14\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.7?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS43P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.14?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjE0P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e1c3f144-3ac6-45ce-9c42-02d1c18f926f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.7\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.7\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9917,Microsoft.Compute/GetVMExtension30Min;21917" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "6caf7244-ed7c-40a3-8561-754c669c3c51" - ], - "Cache-Control": [ - "no-cache" + "a128c9af-3ae5-48d7-8746-dbaf1c87c163" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/e42a7b4d-070a-4de6-b2f6-5a6eebd4c171" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14501" + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" ], "x-ms-correlation-request-id": [ - "e3cd27e1-9154-4a4a-93c3-866f4565e6b6" + "b3c80463-a359-4047-8c59-89b6cc897319" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012735Z:e3cd27e1-9154-4a4a-93c3-866f4565e6b6" + "EASTUS:20250602T215412Z:b3c80463-a359-4047-8c59-89b6cc897319" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6F57D0430B0540F0A6F5349855BFC60A Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:35 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "639" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.14\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.14\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.8?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS44P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "71898c37-0c25-49fc-a7b5-ae5e6fd41758" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "366ed5a6-0a3c-49ad-90e7-8c11c59fc805" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.8\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.8\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9963,Microsoft.Compute/GetVMExtension30Min;21963" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "f9d25dc0-e01d-4897-87da-771fd6d2ea7b" + "87aa72fa-1a66-4e09-83af-038f148ba178" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/975432e3-93cf-4fa4-8d3d-5c4edf8009c5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14770" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "26c83205-dd62-4c1f-84a9-ad32af05b2ce" + "37f59a8b-75fe-45b2-9f4b-0164f0ddfba6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012700Z:26c83205-dd62-4c1f-84a9-ad32af05b2ce" + "EASTUS2:20250602T215239Z:37f59a8b-75fe-45b2-9f4b-0164f0ddfba6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CD8F04C552244CBBB10FE1BCF60E624D Ref B: MNZ221060618009 Ref C: 2025-06-02T21:52:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:26:59 GMT" + "Mon, 02 Jun 2025 21:52:39 GMT" + ], + "Content-Length": [ + "664" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.8?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS44P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "92b64484-9d5b-4496-adac-45dd7c23b933" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.8\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.8\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9916,Microsoft.Compute/GetVMExtension30Min;21916" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "d57e081a-631f-4bdd-83c6-f23b87f82c0f" - ], - "Cache-Control": [ - "no-cache" + "028bd6c9-98ec-49d1-98cf-4115c1047c66" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/88e3dcae-3a91-4fd4-98ce-06bcd72aa2d1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14500" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "11feac4d-d252-4aaf-aeb1-064d4fe1eab6" + "ddf3c29d-abb3-44a6-a35a-108bae3d24d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012735Z:11feac4d-d252-4aaf-aeb1-064d4fe1eab6" + "EASTUS:20250602T215412Z:ddf3c29d-abb3-44a6-a35a-108bae3d24d9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C20C397AC22D4E058F1655B0D1D6D65A Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:35 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "664" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.6?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c916cea7-b992-4b03-8b50-18bf2c5cfcc4" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "be4e8cb3-6490-4f69-b846-bb9f54133b83" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.9\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9962,Microsoft.Compute/GetVMExtension30Min;21962" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "d2c2a46e-0638-4d4e-a22d-bc43c56e1069" + "88a6f78e-fbc2-4bd4-96b2-bc6bd0b1a9c2" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c232d581-6c38-4623-befe-743d900e7200" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14769" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "90160ce5-67e1-4e9c-bbde-6ec8bf7e9bbc" + "0ac9b158-950b-4476-ba47-5c057e72c0be" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012700Z:90160ce5-67e1-4e9c-bbde-6ec8bf7e9bbc" + "EASTUS:20250602T215239Z:0ac9b158-950b-4476-ba47-5c057e72c0be" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AF1006F5B1834B0DAC66266231918625 Ref B: MNZ221060609025 Ref C: 2025-06-02T21:52:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:00 GMT" + "Mon, 02 Jun 2025 21:52:38 GMT" + ], + "Content-Length": [ + "664" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.6\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.6\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.6?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "29922c37-d182-4003-a5cc-1cf384279665" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.9\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9915,Microsoft.Compute/GetVMExtension30Min;21915" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "0d8813d1-c716-432d-bdcf-dce566155289" - ], - "Cache-Control": [ - "no-cache" + "a11327cc-4eb7-41e0-a068-09b589d75819" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/579dd801-7e99-4497-9427-1bfdf4a0fc69" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14499" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ffc58586-1e3b-4096-95c8-e1e352ef25ac" + "289e223b-b14c-4a7e-8a13-a9adb1fc259a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012735Z:ffc58586-1e3b-4096-95c8-e1e352ef25ac" + "EASTUS:20250602T215412Z:289e223b-b14c-4a7e-8a13-a9adb1fc259a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 74D50105C9964003BDF904853E2313D3 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:35 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "664" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.6\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.6\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9.1?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45LjE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.8?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1ad12be9-ebfc-45e8-a8cd-c4e794c0aaf9" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "3bd816bc-dbca-484b-b4e0-e06d811a5ce0" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.9.1\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.1\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9961,Microsoft.Compute/GetVMExtension30Min;21961" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "a01771bb-7ec1-45c2-b850-69aff9669a6f" + "04110422-83d9-44f1-a447-9bede44565f8" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/5d4e8ccc-21a6-4f61-b1c4-671e91ecefff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14768" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "acfa282e-c6d4-492f-a602-2f3d0b35bef5" + "06c710ba-28a4-4eab-9543-bfd2e0371feb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012700Z:acfa282e-c6d4-492f-a602-2f3d0b35bef5" + "EASTUS:20250602T215239Z:06c710ba-28a4-4eab-9543-bfd2e0371feb" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5B4636FAB03944258E51D4AFB4F9C23D Ref B: MNZ221060618031 Ref C: 2025-06-02T21:52:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:00 GMT" + "Mon, 02 Jun 2025 21:52:39 GMT" + ], + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.9.1?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS45LjE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.8?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7380e7a1-f552-4297-b3b6-9c7e3e28628e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.9.1\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.1\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9914,Microsoft.Compute/GetVMExtension30Min;21914" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "9ab8bf18-3423-4be2-8f9b-b3e4e7c7f41b" - ], - "Cache-Control": [ - "no-cache" + "a80939a0-245c-4afc-9d14-01a6a4ab011a" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/898ed824-a61c-45f5-be12-6562bd7411f6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14498" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "d89b0ad9-421b-46a7-848f-c4b3c66944a7" + "3def6634-45c7-4274-bdd2-a03ffed95b59" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012736Z:d89b0ad9-421b-46a7-848f-c4b3c66944a7" + "EASTUS:20250602T215412Z:3def6634-45c7-4274-bdd2-a03ffed95b59" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BAFEC73543014D109C531234DEB23D30 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:35 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions?$filter=startswith(name,'1')&api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnM/JGZpbHRlcj1zdGFydHN3aXRoKG5hbWUsJzEnKSZhcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.9?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c149cd8f-be5a-4667-a975-14ced01c16ff" - ], - "accept-language": [ + "RequestHeaders": { + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "e5740edd-12c9-47c6-9873-09b2dfa6509f" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"1.0\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.0\"\r\n },\r\n {\r\n \"name\": \"1.3\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3\"\r\n },\r\n {\r\n \"name\": \"1.3.2\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.2\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "799" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9960,Microsoft.Compute/GetVMExtension30Min;21960" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "682d7674-116b-4559-8e95-ce610fa3a987" - ], - "Cache-Control": [ - "no-cache" + "9d1a8374-17d8-4c4d-bdc4-b09905175014" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2f657ace-9e0e-4cf0-8b19-9394d87297ea" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14767" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "43cfdab1-33fb-40be-9917-b01fa29ffcc1" + "d893c964-47a4-4cec-ad25-cca43219a366" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012700Z:43cfdab1-33fb-40be-9917-b01fa29ffcc1" + "EASTUS2:20250602T215239Z:d893c964-47a4-4cec-ad25-cca43219a366" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4DB2E2E98F6142908A860334EBE6CFF5 Ref B: MNZ221060610039 Ref C: 2025-06-02T21:52:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:00 GMT" + "Mon, 02 Jun 2025 21:52:39 GMT" + ], + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.0?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4wP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.9?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7ed116ee-8541-435c-947f-bb63938aace3" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.0\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9913,Microsoft.Compute/GetVMExtension30Min;21913" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "1552e414-e604-439a-86d7-71ecfa9ba34c" + "7c7eb80d-5716-40b9-af24-71c3ac05cc23" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/96ff3dda-14ff-4d80-b9d8-6d0a4b8da431" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14766" + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" ], "x-ms-correlation-request-id": [ - "3f6c7a33-74cf-429d-994e-f69492d37dd2" + "cff0d16e-500d-465e-869e-8120508f6582" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012701Z:3f6c7a33-74cf-429d-994e-f69492d37dd2" + "EASTUS:20250602T215412Z:cff0d16e-500d-465e-869e-8120508f6582" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E67E2BDD33B54DB78A767DC077541300 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:00 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.0?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4wP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2024-11-01&$filter=startswith%28name%2C%271%27%29", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDEmJGZpbHRlcj1zdGFydHN3aXRoJTI4bmFtZSUyQyUyNzElMjclMjk=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "baa8b0be-ca2f-4294-b383-f376295a8541" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "8b4e8a2b-344b-4d3e-9db1-63da668675ea" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.0\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensions3Min;9996,Microsoft.Compute/ListVMExtensions30Min;21996" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "0efb234e-6495-492a-920b-4eb4475fa520" - ], - "Cache-Control": [ - "no-cache" + "f5fd7e3f-4980-43e2-9fa9-7942d3684a41" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/78add3f6-6ec9-4588-acd2-40930d34bd5b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14496" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "100122ef-ad02-4c0c-a04d-32434fb40e5f" + "766addf4-aa46-4655-9e4f-c55fd523f593" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012736Z:100122ef-ad02-4c0c-a04d-32434fb40e5f" + "EASTUS2:20250602T215240Z:766addf4-aa46-4655-9e4f-c55fd523f593" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B044E2222A7944A1B8384B4A54C806F6 Ref B: MNZ221060618047 Ref C: 2025-06-02T21:52:39Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:36 GMT" + "Mon, 02 Jun 2025 21:52:39 GMT" + ], + "Content-Length": [ + "779" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/1.0.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/1.0.3\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/1.0?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzEuMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b95de113-b136-47af-9ad5-ca561fa69593" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1ada5a37-80ed-44b9-ac51-9eab8c15d652" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.3\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9959,Microsoft.Compute/GetVMExtension30Min;21959" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "5afff86a-de4b-48f6-b491-5c9b094da423" + "61990975-19cf-4ef6-85bb-8cc78eabe852" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7e1d3978-ff68-4a4f-b2a5-4459ed45eed5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14765" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "287021d5-cc1e-45ea-b8a8-607073f81dc4" + "3501c136-f84c-4b1c-8e9c-a704489c64c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012701Z:287021d5-cc1e-45ea-b8a8-607073f81dc4" + "EASTUS:20250602T215240Z:3501c136-f84c-4b1c-8e9c-a704489c64c3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 39D86237F18341929CD719FFF7AC8895 Ref B: MNZ221060609009 Ref C: 2025-06-02T21:52:40Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:00 GMT" + "Mon, 02 Jun 2025 21:52:39 GMT" + ], + "Content-Length": [ + "610" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/1.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/1.0?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzEuMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "92715277-c2b5-445d-9493-1e7942887670" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.3\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9912,Microsoft.Compute/GetVMExtension30Min;21912" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "d0b1a199-ab1c-41e8-ae13-b10454c7f9e9" - ], - "Cache-Control": [ - "no-cache" + "c2288b6e-41ad-4de0-8dde-3ed3117e9969" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/61c389e0-b8c8-4185-97ce-433d5148b639" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14495" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9b7f1a41-1a52-4f00-922f-b5d52d03dcba" + "940b039b-b208-4e11-b04c-003ea1787fb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012736Z:9b7f1a41-1a52-4f00-922f-b5d52d03dcba" + "EASTUS:20250602T215412Z:940b039b-b208-4e11-b04c-003ea1787fb4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DE38CFF9F38B4452BC97B58DB36FB28D Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:36 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "610" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/1.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.2?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/1.0.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "85a9310d-1a20-4d43-8607-56838fca4e64" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "dcf5eb8a-9d69-45d3-9b89-139d55d2f5e7" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.3.2\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.2\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9958,Microsoft.Compute/GetVMExtension30Min;21958" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "fd1136b9-c4a8-4bad-98ca-279f6f888f70" + "67b33ea3-965a-4a51-9362-146f0fe255ae" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/614f3529-f9c4-461c-a121-5154da06edb0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14764" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "170c7233-95c8-4af0-b740-9c066c5f9b2e" + "c0926e89-60b3-4d92-8361-84750a22b02f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012701Z:170c7233-95c8-4af0-b740-9c066c5f9b2e" + "EASTUS:20250602T215240Z:c0926e89-60b3-4d92-8361-84750a22b02f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C5E88A831D4A46E788922AC6008E4451 Ref B: MNZ221060608053 Ref C: 2025-06-02T21:52:40Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:01 GMT" + "Mon, 02 Jun 2025 21:52:39 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/1.0.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions/1.3.2?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnMvMS4zLjI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/1.0.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "27a69ff9-f492-4a81-9cf2-0a31ab73909a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"1.3.2\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.2\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9911,Microsoft.Compute/GetVMExtension30Min;21911" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "20075310-2298-4b3f-84ca-3fb1ffe3bf9d" - ], - "Cache-Control": [ - "no-cache" + "aa4a1e4d-7077-47ac-b67c-554043670b3c" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d8131ae6-9c9f-40d0-b238-b759209ccf7d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14494" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "50b1bfa5-d380-4a93-b205-2dda36554697" + "2d5a20db-69ba-4a25-8934-be54ec651af1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012736Z:50b1bfa5-d380-4a93-b205-2dda36554697" + "EASTUS:20250602T215412Z:2d5a20db-69ba-4a25-8934-be54ec651af1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 412E94232C664BB5A0207C41183F2D85 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:36 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/1.0.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?$filter=startswith(name,'1')&api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zPyRmaWx0ZXI9c3RhcnRzd2l0aChuYW1lLCcxJykmYXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/1.0.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzEuMC4zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "72c416fb-6d19-49a2-b73f-2b1bceff91e5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "2a8640cf-61cd-448a-9557-f3cf7f4c9272" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9957,Microsoft.Compute/GetVMExtension30Min;21957" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "022de00a-6a43-4f6f-a4cc-e06e92881752" - ], - "Cache-Control": [ - "no-cache" + "f5891704-20c4-4a11-8c0e-4f4e4f021e70" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8d88fffb-579a-4243-9e94-ddbd39f75f06" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14763" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "1e05832c-1557-47e5-9b94-615d9e57c74f" + "67574130-f694-45be-951d-9320e41859e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012701Z:1e05832c-1557-47e5-9b94-615d9e57c74f" + "EASTUS2:20250602T215240Z:67574130-f694-45be-951d-9320e41859e6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4B9A76B83E7D4475AA6E1020B69FC82A Ref B: MNZ221060619031 Ref C: 2025-06-02T21:52:40Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:01 GMT" + "Mon, 02 Jun 2025 21:52:39 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/1.0.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/1.0.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzEuMC4zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "91394f9b-fb45-4b3f-a649-8d8f256563e1" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2012R2\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2012R2CN\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2012R2CNExcel\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016CN-WS2012R2\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016CN-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016CN-WS2016\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016CN-WS2016\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016HN-WS2012R2\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016HN-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016HN-WS2016\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016HN-WS2016\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016U1CN-WS2012R2\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016U1CN-WS2012R2-Excel\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2-Excel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016U1CN-WS2016\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016U1CN-WS2016-Excel\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016-Excel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016U1HN-WS2012R2\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2016U1HN-WS2016\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2016\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "3791" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9910,Microsoft.Compute/GetVMExtension30Min;21910" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "d69959dc-9b6b-4668-add9-d42317657607" + "4ee5a27d-b3b1-47c2-8767-a7718825a235" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/829c685c-dcc3-40ee-8898-f974e6201a2c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14566" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "6f311850-a3fd-402f-91dd-72820b9a3f01" + "10f658a6-c19a-4611-a04f-c18b252bd724" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012725Z:6f311850-a3fd-402f-91dd-72820b9a3f01" + "EASTUS:20250602T215412Z:10f658a6-c19a-4611-a04f-c18b252bd724" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F7949B43BB47403AA10B548543032299 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:25 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/1.0.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b2ba5fba-2412-4073-97d3-aa46879a6638" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5159\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5159\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5161\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5161\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5168\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5168\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5170\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5170\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5187\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5187\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5188\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5188\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "1767" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9999,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "29e485eb-48e1-4ec7-bf8d-415f82d477a5" - ], - "Cache-Control": [ - "no-cache" + "5fbd6611-9406-4af5-b2ec-7f3712539799" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/65e43738-6573-42ee-a855-b2fc706b8530" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14565" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7c44bdb5-6918-4415-81d1-7b78636092f3" + "cf52b9c7-f434-4adb-adbd-b5edf9d08586" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012726Z:7c44bdb5-6918-4415-81d1-7b78636092f3" + "EASTUS:20250602T215405Z:cf52b9c7-f434-4adb-adbd-b5edf9d08586" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 662816688D8E45CC90FA0CCDCEBC69E7 Ref B: MNZ221060609053 Ref C: 2025-06-02T21:54:05Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:25 GMT" + "Mon, 02 Jun 2025 21:54:05 GMT" + ], + "Content-Length": [ + "4971" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012R2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012R2CN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012R2CNExcel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016U2CN-WS2012R2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U2CN-WS2012R2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016U2CN-WS2016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U2CN-WS2016\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016U2HN-WS2012R2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U2HN-WS2012R2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016U2HN-WS2016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U2HN-WS2016\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016u3hn-ws2012r2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016u3hn-ws2012r2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016u3hn-ws2016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016u3hn-ws2016\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019hn-ws2016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2016\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019hn-ws2019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019hn-ws2022\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2022\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.5.5159?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjUuNTE1OT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5c636d90-e5e4-4ca7-8b28-111192e6e738" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5159\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5159\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "398" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "d52d9f71-8471-4806-bb74-243df8a78d53" + "25fb62de-398d-4c55-b30c-4f426925856c" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/11b3407a-6ff7-49d8-90b2-826cc5949fcb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14564" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9dc7a003-e4d3-4aa8-8703-1b62b17a0c1a" + "f0558239-5a36-46b8-9cf4-93aaaf0053fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012726Z:9dc7a003-e4d3-4aa8-8703-1b62b17a0c1a" + "EASTUS:20250602T215405Z:f0558239-5a36-46b8-9cf4-93aaaf0053fb" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FC009B32C93A4B6E8163ADC29A5F306B Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:05Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:25 GMT" + "Mon, 02 Jun 2025 21:54:05 GMT" + ], + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5202\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.5.5161?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjUuNTE2MT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.5.5202?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjUuNTIwMj9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "466abd62-2e7d-4bec-a3cd-87757fffaba1" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5161\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5161\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "398" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "beef3807-386b-4ddc-a67e-c8a69daa2b01" - ], - "Cache-Control": [ - "no-cache" + "185832a3-444a-467b-89e7-cdd0df8f1030" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fe3679a3-3196-434f-ac9e-4d23537e270e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14563" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "7bdab1f0-5a79-49c0-866b-91652676f597" + "ca985f34-2941-4489-b061-ff5649f5ac82" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012726Z:7bdab1f0-5a79-49c0-866b-91652676f597" + "EASTUS2:20250602T215405Z:ca985f34-2941-4489-b061-ff5649f5ac82" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 125B34411DED4D48845E69CD708C8F0E Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:05Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:25 GMT" + "Mon, 02 Jun 2025 21:54:04 GMT" + ], + "Content-Length": [ + "745" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5202\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.5.5168?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjUuNTE2OD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "622f914c-4eef-4efe-a661-9f66f793b90f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5168\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5168\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "398" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "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": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "1eabf3b5-3c13-4110-8f6c-d731043bd1e1" + "1e647fc6-dfd1-4c5d-b235-ad1032eb3b51" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9ff9d10e-be74-463b-8ca2-b3c826a47721" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14562" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c28314aa-2f7d-43c3-8dc3-002b343bccb6" + "2c0a264a-41f5-4d92-89a0-44d07124020a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012726Z:c28314aa-2f7d-43c3-8dc3-002b343bccb6" + "EASTUS:20250602T215405Z:2c0a264a-41f5-4d92-89a0-44d07124020a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4FF810B3F9FB41BE93734F62691B288A Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:05Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:25 GMT" + "Mon, 02 Jun 2025 21:54:05 GMT" + ], + "Content-Length": [ + "299" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5202\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.5.5170?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjUuNTE3MD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions/4.5.5202?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zLzQuNS41MjAyP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ec4c1b71-e917-45cd-9de4-7bafd1ceb8c3" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5170\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5170\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "398" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "0a699f4f-fc5c-406b-9140-164dc6302ce0" - ], - "Cache-Control": [ - "no-cache" + "3eeae6c8-ab17-4a4f-a642-37735b981a27" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/89037528-7478-4f4d-a468-3599efa78ef0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14561" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "1d33cf97-9973-4da1-ad76-33b43444c6e4" + "2fe5ad8c-0885-4f1d-a454-ad5896f8368f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012726Z:1d33cf97-9973-4da1-ad76-33b43444c6e4" + "EASTUS2:20250602T215405Z:2fe5ad8c-0885-4f1d-a454-ad5896f8368f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 53672F37FF844F7DACA76E2DED040FDD Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:05Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:25 GMT" + "Mon, 02 Jun 2025 21:54:05 GMT" + ], + "Content-Length": [ + "747" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5202\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.5.5187?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjUuNTE4Nz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "23a200a7-e28b-44f4-ac2f-232eefd3178d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5187\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5187\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "398" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "b3e97991-950f-43e0-8ed7-f8298c3bed05" + "0b734f8f-fb49-4b7b-be71-d7e3068270c4" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2d003e83-7191-44ec-8d99-e0d46db76f89" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14560" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "49995782-4710-4c49-9a39-7e84d199c6e7" + "96d104e8-018a-403f-ad4d-46150ecb824c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012726Z:49995782-4710-4c49-9a39-7e84d199c6e7" + "EASTUS:20250602T215405Z:96d104e8-018a-403f-ad4d-46150ecb824c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4ED5ACB103DE411EBE03AA7321AE2CBA Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:05Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:25 GMT" + "Mon, 02 Jun 2025 21:54:05 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5202\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.5.5188?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjUuNTE4OD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions/4.5.5202?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnMvNC41LjUyMDI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9736e530-082d-4548-a319-0567569a9fed" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5188\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.5.5188\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "398" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "5bc7688e-c24a-4f97-8d3f-88e7c91d20e3" - ], - "Cache-Control": [ - "no-cache" + "61e19266-27c4-41a4-b8fd-ab7f4a0472b5" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/8fe9f002-60ce-4d60-8f8a-23e3cf0034a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14559" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "de7affba-8e38-479a-a3dc-396e0bc63707" + "1390caab-a6ee-41af-b499-90e4853f0866" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012726Z:de7affba-8e38-479a-a3dc-396e0bc63707" + "EASTUS2:20250602T215406Z:1390caab-a6ee-41af-b499-90e4853f0866" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C3821888FDED4B6395125A7EBF030DA8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:05Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:25 GMT" + "Mon, 02 Jun 2025 21:54:05 GMT" + ], + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5202\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U2CN-WS2012R2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMkNOLVdTMjAxMlIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "70be5523-915a-484b-a21a-2b34310d77b5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5159\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5159\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5161\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5161\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5168\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5168\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5170\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5170\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5187\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5187\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5188\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5188\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "1779" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43996" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "df9f9686-cc7a-45a8-b6f0-885986d68f49" - ], - "Cache-Control": [ - "no-cache" + "b005ddf1-cc65-4c95-bc3a-1ee9c947d6be" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/617e2de4-41ee-4efd-82b7-3cadfdb300c4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14558" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "227012a1-8e8a-4612-a0ca-a32d176b6fe7" + "2cf93e3e-2903-4e18-a963-448675e01c39" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012726Z:227012a1-8e8a-4612-a0ca-a32d176b6fe7" + "EASTUS:20250602T215406Z:2cf93e3e-2903-4e18-a963-448675e01c39" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E5EE3FB5CBE14A4A94F02048EC34B68A Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:06Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:26 GMT" + "Mon, 02 Jun 2025 21:54:05 GMT" + ], + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.2.6293\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U2CN-WS2012R2/Versions/5.2.6293\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions/4.5.5159?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zLzQuNS41MTU5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U2CN-WS2012R2/versions/5.2.6293?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMkNOLVdTMjAxMlIyL3ZlcnNpb25zLzUuMi42MjkzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5004d2ab-0979-4759-90ae-7765d2fa82b5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5159\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5159\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "400" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73996" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "8c4eab79-6981-4745-aac6-961850875f9b" - ], - "Cache-Control": [ - "no-cache" + "db441685-4c12-4cf8-87ce-1fade6ac322e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/64fb8392-d861-414f-ae03-fd2252bf3858" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14557" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "31053b5d-fd69-439f-b1e3-2f9d829a5ab0" + "b35156c3-7bf0-43c7-88e1-db00f1195b5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012727Z:31053b5d-fd69-439f-b1e3-2f9d829a5ab0" + "EASTUS2:20250602T215406Z:b35156c3-7bf0-43c7-88e1-db00f1195b5a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 391CB951DE4C454CA3D141BB1D1A9C69 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:06Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:26 GMT" + "Mon, 02 Jun 2025 21:54:05 GMT" + ], + "Content-Length": [ + "756" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.2.6293\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U2CN-WS2012R2/Versions/5.2.6293\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions/4.5.5161?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zLzQuNS41MTYxP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U2CN-WS2016/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMkNOLVdTMjAxNi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "65ae33dd-12f8-4bfb-a9e6-16aa80144a00" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5161\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5161\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "400" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43995" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "cbd41aab-2403-46a5-af01-6a492e6556d8" - ], - "Cache-Control": [ - "no-cache" + "fb1f4ced-f5cf-4628-aa5d-9e30ad96ec0f" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/7c45aa30-cd36-4fc4-9d5b-1a86724778da" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14556" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d8a0ca53-7adc-4aac-b5ed-8144e52fa83f" + "4814b65d-84f5-4360-8e73-6f043aaf6cfd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012727Z:d8a0ca53-7adc-4aac-b5ed-8144e52fa83f" + "EASTUS:20250602T215406Z:4814b65d-84f5-4360-8e73-6f043aaf6cfd" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C38BFB5DE02469A8EA50C002F8CEE4D Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:06Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:26 GMT" + "Mon, 02 Jun 2025 21:54:05 GMT" + ], + "Content-Length": [ + "306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.2.6293\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U2CN-WS2016/Versions/5.2.6293\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions/4.5.5168?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zLzQuNS41MTY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U2CN-WS2016/versions/5.2.6293?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMkNOLVdTMjAxNi92ZXJzaW9ucy81LjIuNjI5Mz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "936fbb84-8375-4fe9-bee3-e6084d585f69" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5168\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5168\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "400" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "b62926b3-4105-4bf0-b59a-34e3e5c51104" + "716c14f2-2834-46ac-b7e4-104c9b41e4b5" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bf5b0381-0a90-4075-a0c3-115d6be013fc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14555" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f87e5728-a8ec-4a52-90cf-88f3cbf5a317" + "5ccca5e5-6575-4105-9c10-fa49fa9d7b9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012727Z:f87e5728-a8ec-4a52-90cf-88f3cbf5a317" + "EASTUS2:20250602T215406Z:5ccca5e5-6575-4105-9c10-fa49fa9d7b9a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CE98B49AA67D4511A95D4810AE46F6E0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:06Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:26 GMT" + "Mon, 02 Jun 2025 21:54:05 GMT" + ], + "Content-Length": [ + "754" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.2.6293\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U2CN-WS2016/Versions/5.2.6293\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions/4.5.5170?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zLzQuNS41MTcwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U2HN-WS2012R2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMkhOLVdTMjAxMlIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f5838c0e-559e-4c86-90b3-221c9480ed16" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5170\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5170\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "400" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43994" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "9fcf60a7-660d-42d5-a4ab-e3f8136c76b4" - ], - "Cache-Control": [ - "no-cache" + "52c48d05-3682-4b30-a7a2-56b78a84266b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/88b95bec-021b-4767-a1ed-f7f4ed039bfe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14554" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f6a4a347-2e2f-4544-ae0d-6d6a6d22da6e" + "b3f324fb-47ce-4c69-8da0-18c6d749bdaf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012727Z:f6a4a347-2e2f-4544-ae0d-6d6a6d22da6e" + "EASTUS:20250602T215406Z:b3f324fb-47ce-4c69-8da0-18c6d749bdaf" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F37ED7B274CC40FEAC6229619D93F165 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:06Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:26 GMT" + "Mon, 02 Jun 2025 21:54:05 GMT" + ], + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.2.6293\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U2HN-WS2012R2/Versions/5.2.6293\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions/4.5.5187?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zLzQuNS41MTg3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U2HN-WS2012R2/versions/5.2.6293?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMkhOLVdTMjAxMlIyL3ZlcnNpb25zLzUuMi42MjkzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5470369a-1188-4e7b-a95a-232389600302" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5187\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5187\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "400" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73994" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "673500d7-4673-48c4-b8d8-99b5dfab6ed7" + "26153e41-4b0b-4cc0-9fea-bc571f9f355e" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/30007417-5075-4893-a4fd-a2d3bf08d21b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14553" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e461de01-49ce-47f0-994d-81924fb770cd" + "d9da04c4-791a-4b8c-a67c-04aab812777f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012727Z:e461de01-49ce-47f0-994d-81924fb770cd" + "EASTUS2:20250602T215406Z:d9da04c4-791a-4b8c-a67c-04aab812777f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F44262126084D22B7DE283D102FD141 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:06Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:26 GMT" + "Mon, 02 Jun 2025 21:54:05 GMT" + ], + "Content-Length": [ + "756" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.2.6293\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U2HN-WS2012R2/Versions/5.2.6293\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions/4.5.5188?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zLzQuNS41MTg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U2HN-WS2016/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMkhOLVdTMjAxNi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c5f6e1a6-18ae-4b4f-b38f-69d08f1479f7" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5188\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.5.5188\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "400" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "ce8e1e79-ed15-4445-8ec5-fd64000ec448" - ], - "Cache-Control": [ - "no-cache" + "014380b8-4d8b-4af9-af63-1fe0e4b53761" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4819bf34-ca45-4e98-9540-a8cbd7a2606e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14552" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d0612b67-55e6-424b-9388-88eadd13ece0" + "a7f09182-8644-4bc0-b3ff-54c047c80637" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012727Z:d0612b67-55e6-424b-9388-88eadd13ece0" + "EASTUS:20250602T215406Z:a7f09182-8644-4bc0-b3ff-54c047c80637" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8BCAE71968C346A1A6B27CB8C4EE3E62 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:06Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:27 GMT" + "Mon, 02 Jun 2025 21:54:06 GMT" + ], + "Content-Length": [ + "306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.2.6293\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U2HN-WS2016/Versions/5.2.6293\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U2HN-WS2016/versions/5.2.6293?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMkhOLVdTMjAxNi92ZXJzaW9ucy81LjIuNjI5Mz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "477325c8-b9ab-45cf-9d50-a57a86b08160" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5159\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5159\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5161\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5161\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5168\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5168\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5170\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5170\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5187\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5187\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5188\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5188\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "1809" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73993" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "a0cd93a5-baca-486d-a088-78ddb639ea30" - ], - "Cache-Control": [ - "no-cache" + "4b98eb46-602e-4863-a9f3-a25663f9f8c4" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/deb09ed8-8e39-4159-ba8c-71f488deefa5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14551" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "8804ebd2-3493-487b-8be0-806abc3588bb" + "529c81a5-c435-482c-a9c6-ce243bb960f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012728Z:8804ebd2-3493-487b-8be0-806abc3588bb" + "EASTUS2:20250602T215406Z:529c81a5-c435-482c-a9c6-ce243bb960f6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DFB511A12BE34E2AA4EC39C887309BCC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:06Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:27 GMT" + "Mon, 02 Jun 2025 21:54:05 GMT" + ], + "Content-Length": [ + "754" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.2.6293\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U2HN-WS2016/Versions/5.2.6293\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions/4.5.5159?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnMvNC41LjUxNTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016u3hn-ws2012r2/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZ1M2huLXdzMjAxMnIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "71f37cd9-a990-4a03-8477-930eb9459b68" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5159\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5159\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "bd7a58ec-0402-48ce-b09d-fac6cd881f73" - ], - "Cache-Control": [ - "no-cache" + "f6c445fd-5036-4b9a-9416-080514c8529f" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/32d3bf46-bab4-4bcf-8f56-cf5ed6777cc7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14550" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "41a05f25-7e37-4f97-8a85-61d8d18565d6" + "e9f3fe30-1309-447c-9952-7bd1f16cfa47" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012728Z:41a05f25-7e37-4f97-8a85-61d8d18565d6" + "EASTUS:20250602T215406Z:e9f3fe30-1309-447c-9952-7bd1f16cfa47" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EC64C701474844018262B969BC07A0BA Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:06Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:27 GMT" + "Mon, 02 Jun 2025 21:54:06 GMT" + ], + "Content-Length": [ + "613" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.3.6435\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016u3hn-ws2012r2/Versions/5.3.6435\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.3.6450\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016u3hn-ws2012r2/Versions/5.3.6450\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions/4.5.5161?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnMvNC41LjUxNjE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016u3hn-ws2012r2/versions/5.3.6435?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZ1M2huLXdzMjAxMnIyL3ZlcnNpb25zLzUuMy42NDM1P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "923b13be-66db-4f3b-8d38-3c810b6289ab" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5161\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5161\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73992" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "2e03eaaf-9f1d-45e4-9d8d-4a420f7f262d" - ], - "Cache-Control": [ - "no-cache" + "6033e5c3-e823-4f0a-a31a-bbcb734bc1e8" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/bf088b25-04f4-4fad-8d42-678ab70e1a6e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14549" + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" ], "x-ms-correlation-request-id": [ - "b63a2069-831d-44f3-8b73-4277433095d0" + "67a21ed8-2bbf-4c04-9d96-47ebf0d5941d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012728Z:b63a2069-831d-44f3-8b73-4277433095d0" + "EASTUS2:20250602T215406Z:67a21ed8-2bbf-4c04-9d96-47ebf0d5941d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 68F40745BE454267A84F4470AE5CC7CC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:06Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:27 GMT" + "Mon, 02 Jun 2025 21:54:06 GMT" + ], + "Content-Length": [ + "756" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.3.6435\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016u3hn-ws2012r2/Versions/5.3.6435\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions/4.5.5168?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnMvNC41LjUxNjg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016u3hn-ws2012r2/versions/5.3.6450?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZ1M2huLXdzMjAxMnIyL3ZlcnNpb25zLzUuMy42NDUwP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "815a6dcd-48dd-46e8-b1d4-f40df0307722" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5168\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5168\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73991" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "0d3784f3-f860-45fd-8e7f-86973da4f034" - ], - "Cache-Control": [ - "no-cache" + "b8f09eb7-b578-4088-ae5f-f5b62eed78cb" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c8758efa-5b41-420b-b9be-47d0c1a2ef94" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14548" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "29b5182f-cfe7-482e-9920-6be3099827aa" + "fca90e68-8e02-495d-b183-c318c28f02b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012728Z:29b5182f-cfe7-482e-9920-6be3099827aa" + "EASTUS2:20250602T215407Z:fca90e68-8e02-495d-b183-c318c28f02b8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3E6C5E62E9C741B986B9EBC7CC667CA6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:06Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:27 GMT" + "Mon, 02 Jun 2025 21:54:06 GMT" + ], + "Content-Length": [ + "756" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.3.6450\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016u3hn-ws2012r2/Versions/5.3.6450\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions/4.5.5170?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnMvNC41LjUxNzA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016u3hn-ws2016/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZ1M2huLXdzMjAxNi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "defbf1a7-15de-4f9f-9d52-cdab0ab40f07" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5170\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5170\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43991" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "f139b34f-a38c-44e2-91e9-75fc968d2936" - ], - "Cache-Control": [ - "no-cache" + "b27b49fc-8d01-4d9a-9e8f-a9546f46f3e0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/b359a738-e559-463e-9463-c34859119e0f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14547" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "af571597-2db4-47d6-bff7-03cc61e8aad4" + "cd45f191-487e-47d2-ab86-96d31b1d92fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012728Z:af571597-2db4-47d6-bff7-03cc61e8aad4" + "EASTUS:20250602T215407Z:cd45f191-487e-47d2-ab86-96d31b1d92fc" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 07C3E3FFE9CE45AF95CD717CB9F00D15 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:07Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:27 GMT" + "Mon, 02 Jun 2025 21:54:06 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.3.6435\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016u3hn-ws2016/Versions/5.3.6435\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.3.6450\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016u3hn-ws2016/Versions/5.3.6450\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions/4.5.5187?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnMvNC41LjUxODc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016u3hn-ws2016/versions/5.3.6435?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZ1M2huLXdzMjAxNi92ZXJzaW9ucy81LjMuNjQzNT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "96c45f4c-8ebc-488b-923e-f143f471a22f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5187\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5187\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73990" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "6bd9c01e-5c53-412d-8362-56f7d4617d2e" - ], - "Cache-Control": [ - "no-cache" + "730b3f9e-af52-4c86-96ac-c1f6b302c4ef" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/d979d09c-d4ea-4e73-9727-c0a9201a3bf3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14546" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "a7395840-e70b-4f95-8498-2a893571071b" + "e2589ef5-ab02-4994-aa31-343e68f1882e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012728Z:a7395840-e70b-4f95-8498-2a893571071b" + "EASTUS2:20250602T215407Z:e2589ef5-ab02-4994-aa31-343e68f1882e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 10CF5ECCECE641ED971F60F4BC7E64EC Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:07Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:27 GMT" + "Mon, 02 Jun 2025 21:54:06 GMT" + ], + "Content-Length": [ + "754" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.3.6435\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016u3hn-ws2016/Versions/5.3.6435\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions/4.5.5188?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnMvNC41LjUxODg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016u3hn-ws2016/versions/5.3.6450?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZ1M2huLXdzMjAxNi92ZXJzaW9ucy81LjMuNjQ1MD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "254d0929-25ea-401c-9ba6-b03d8e216e0f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.5.5188\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.5.5188\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12989,Microsoft.Compute/GetVMImageFromLocation30Min;73989" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "6320e324-1179-48d7-b189-5d26fba8a0de" - ], - "Cache-Control": [ - "no-cache" + "610675e2-a9f3-4651-b293-6ddf1aedd2b6" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/fe8db5a6-b2e0-41fc-85f1-0e23783677b4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14545" + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" ], "x-ms-correlation-request-id": [ - "d9569ba5-58af-4d3d-ba94-eaedfa2a97e9" + "e77ddf1b-3b3a-4c81-a6a0-f941e489d06c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012728Z:d9569ba5-58af-4d3d-ba94-eaedfa2a97e9" + "EASTUS2:20250602T215407Z:e77ddf1b-3b3a-4c81-a6a0-f941e489d06c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 32B19ACDBB7B4EEBA6A87E3D3DEBF08A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:07Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:27 GMT" + "Mon, 02 Jun 2025 21:54:06 GMT" + ], + "Content-Length": [ + "754" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.3.6450\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016u3hn-ws2016/Versions/5.3.6450\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016CN-WS2012R2/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZDTi1XUzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2016/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7ede46a8-f03a-4640-bbfc-a50dc80a4285" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.0.5827\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016CN-WS2012R2/Versions/5.0.5827\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "306" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43990" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "76af68ca-a903-4495-b054-509f1d10d6c7" + "afca9db6-1789-498d-b9fa-253e9a021e37" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/925d13c8-369b-4736-9b7c-f323b273dd27" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14544" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ae98c511-fc37-467f-a299-e4ba5abee611" + "c435e18e-f008-40d3-908d-16a531388f75" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012728Z:ae98c511-fc37-467f-a299-e4ba5abee611" + "EASTUS:20250602T215407Z:c435e18e-f008-40d3-908d-16a531388f75" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B54640F4FB7244A4ACDBD3ECCDF3FF9F Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:07Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:28 GMT" + "Mon, 02 Jun 2025 21:54:06 GMT" + ], + "Content-Length": [ + "1508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7121\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2016/Versions/6.0.7121\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2016/Versions/6.0.7201\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2016/Versions/6.0.7205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2016/Versions/6.0.7214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.1.7531\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2016/Versions/6.1.7531\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016CN-WS2012R2/versions/5.0.5827?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZDTi1XUzIwMTJSMi92ZXJzaW9ucy81LjAuNTgyNz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2016/versions/6.0.7121?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTYvdmVyc2lvbnMvNi4wLjcxMjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8cde1413-1afb-40f1-9a4f-2af416362983" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.0.5827\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016CN-WS2012R2/Versions/5.0.5827\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "407" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12988,Microsoft.Compute/GetVMImageFromLocation30Min;73988" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "8040ceda-ecd1-42f6-9e7b-210e991ceb10" - ], - "Cache-Control": [ - "no-cache" + "6831a5fe-947b-47d2-9f02-d2ed16bc0c07" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/72c15bd0-86e3-4abe-bbec-ab38d3344fc5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14543" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ed46a9a5-5a81-402a-ab0c-2620a6320474" + "6df82714-1635-463d-a4a3-76df0900e88e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012729Z:ed46a9a5-5a81-402a-ab0c-2620a6320474" + "EASTUS2:20250602T215407Z:6df82714-1635-463d-a4a3-76df0900e88e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0F6A93D3F8644106B4A4F90B1E8A6056 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:07Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:28 GMT" + "Mon, 02 Jun 2025 21:54:06 GMT" + ], + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7121\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2016/Versions/6.0.7121\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016CN-WS2016/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZDTi1XUzIwMTYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2016/versions/6.0.7201?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTYvdmVyc2lvbnMvNi4wLjcyMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a38ec27a-9ebe-4db1-96c4-48dfa9c600bc" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.0.5827\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016CN-WS2016/Versions/5.0.5827\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "304" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12987,Microsoft.Compute/GetVMImageFromLocation30Min;73987" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "fc647263-a16e-429b-a7d5-f1b7719ad5f8" - ], - "Cache-Control": [ - "no-cache" + "18897a21-2689-47a1-b553-db3a4607dfdd" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/866bb8b0-f614-44c5-841e-e8a801a6b006" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14542" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "ba661e90-e72c-4407-beac-24399fd8805d" + "2a367f05-7a73-4c7e-828f-1d27752c2362" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012729Z:ba661e90-e72c-4407-beac-24399fd8805d" + "EASTUS2:20250602T215407Z:2a367f05-7a73-4c7e-828f-1d27752c2362" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 541A0AA65FCF4D2D94FEC43F0B8E68C1 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:07Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:28 GMT" + "Mon, 02 Jun 2025 21:54:06 GMT" + ], + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2016/Versions/6.0.7201\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016CN-WS2016/versions/5.0.5827?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZDTi1XUzIwMTYvdmVyc2lvbnMvNS4wLjU4Mjc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2016/versions/6.0.7205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTYvdmVyc2lvbnMvNi4wLjcyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fc9a9852-7ac4-4377-a89f-1d729cc00a9e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.0.5827\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016CN-WS2016/Versions/5.0.5827\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12986,Microsoft.Compute/GetVMImageFromLocation30Min;73986" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "3c64a53d-b31d-4c98-a229-967cd216f51f" - ], - "Cache-Control": [ - "no-cache" + "121e771d-654b-4af3-9175-016b3b1d6aa4" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/74584d74-9774-4fe7-a5f7-42397ff7c8fe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14541" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "f135e3a7-b0dd-411b-b8f7-ad25f2f49d89" + "97ed944d-52bd-46e4-bfaa-47d91b1cbd7a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012729Z:f135e3a7-b0dd-411b-b8f7-ad25f2f49d89" + "EASTUS2:20250602T215407Z:97ed944d-52bd-46e4-bfaa-47d91b1cbd7a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 532E721B6E6B4E6090D95AE33417F313 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:07Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:28 GMT" + "Mon, 02 Jun 2025 21:54:06 GMT" + ], + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2016/Versions/6.0.7205\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016HN-WS2012R2/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZITi1XUzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2016/versions/6.0.7214?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTYvdmVyc2lvbnMvNi4wLjcyMTQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "25377f71-73af-4d30-90be-70063db4e6bb" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.0.5827\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016HN-WS2012R2/Versions/5.0.5827\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "306" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12985,Microsoft.Compute/GetVMImageFromLocation30Min;73985" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "44fca7be-d47f-4662-bcc6-9aaece53b280" - ], - "Cache-Control": [ - "no-cache" + "c3427801-9dc0-46fb-b2f8-4f3dcc256db5" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/94024343-f18f-4823-8b65-2999b1adc16b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14540" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "8eac5c23-7497-4a88-93e1-cb634c6fe967" + "46298a11-fe98-41cf-ae11-8746b7283eed" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012729Z:8eac5c23-7497-4a88-93e1-cb634c6fe967" + "EASTUS2:20250602T215407Z:46298a11-fe98-41cf-ae11-8746b7283eed" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FB0504C4DAD040D081971D7C63493F8A Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:07Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:28 GMT" + "Mon, 02 Jun 2025 21:54:06 GMT" + ], + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2016/Versions/6.0.7214\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016HN-WS2012R2/versions/5.0.5827?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZITi1XUzIwMTJSMi92ZXJzaW9ucy81LjAuNTgyNz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2016/versions/6.1.7531?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTYvdmVyc2lvbnMvNi4xLjc1MzE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "86f8850b-abbb-4d5f-9fa4-cfca1f2e4c3a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.0.5827\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016HN-WS2012R2/Versions/5.0.5827\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "407" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12984,Microsoft.Compute/GetVMImageFromLocation30Min;73984" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "6604604a-ab5a-4cdd-8464-632ae51fa549" + "5a3607f8-2f60-4e9d-ba75-d2885c0b1354" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3f2d2d4f-4739-4e79-87d5-c892fb892523" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14539" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "9875856e-e1d5-42a7-8747-8154e7c31dfd" + "ec5d2b40-1674-4a8a-a1b4-b6de222c845d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012729Z:9875856e-e1d5-42a7-8747-8154e7c31dfd" + "EASTUS2:20250602T215407Z:ec5d2b40-1674-4a8a-a1b4-b6de222c845d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F7BA0658412D430793921371EED02152 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:07Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:28 GMT" + "Mon, 02 Jun 2025 21:54:06 GMT" + ], + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.1.7531\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2016/Versions/6.1.7531\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016HN-WS2016/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZITi1XUzIwMTYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2019/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6ddb9503-c6b3-4048-abf2-5346019b14d0" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.0.5827\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016HN-WS2016/Versions/5.0.5827\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "304" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "3282df45-c886-489f-b277-bb0a0b890842" - ], - "Cache-Control": [ - "no-cache" + "3570977f-84cb-4f97-a5a0-195d43605bb3" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/724eaa61-691e-43e3-ab86-3facfd72a421" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14538" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9e1ab9d7-f82e-46a7-ae55-8b3c418f1583" + "221bae01-eb20-4b03-b247-187c89e85d76" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012729Z:9e1ab9d7-f82e-46a7-ae55-8b3c418f1583" + "EASTUS:20250602T215407Z:221bae01-eb20-4b03-b247-187c89e85d76" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 00A662FF05B84331966E063E6F116BAC Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:07Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:28 GMT" + "Mon, 02 Jun 2025 21:54:07 GMT" + ], + "Content-Length": [ + "3615" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7121\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.0.7121\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.0.7201\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.0.7205\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.0.7214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7531\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.0.7531\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.2.7731\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.2.7731\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.2.7756\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.2.7756\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.2.7757\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.2.7757\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.3.8310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8328\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.3.8328\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.3.8329\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.3.8330\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016HN-WS2016/versions/5.0.5827?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZITi1XUzIwMTYvdmVyc2lvbnMvNS4wLjU4Mjc/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2019/versions/6.0.7121?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTkvdmVyc2lvbnMvNi4wLjcxMjE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9c6a9f1e-481f-42ae-907c-7ddac161117f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.0.5827\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016HN-WS2016/Versions/5.0.5827\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12983,Microsoft.Compute/GetVMImageFromLocation30Min;73983" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "7de363a4-9607-4ddf-b388-9bef7db58124" - ], - "Cache-Control": [ - "no-cache" + "334c9d4a-b9f7-45af-bf63-f76278c66d68" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/59d7956b-b041-41c9-9d9e-b7a440fc0a34" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14537" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "43b5b4ee-d15d-4b6a-8d40-24c6dd13e6b4" + "60c04eaf-b5c4-44ea-8dd6-fdf5c2e9c052" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012729Z:43b5b4ee-d15d-4b6a-8d40-24c6dd13e6b4" + "EASTUS2:20250602T215407Z:60c04eaf-b5c4-44ea-8dd6-fdf5c2e9c052" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6D0C78E71FA6479282C5DC93B99D36E0 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:07Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:28 GMT" + "Mon, 02 Jun 2025 21:54:07 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7121\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.0.7121\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2012R2/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxMlIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2019/versions/6.0.7201?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTkvdmVyc2lvbnMvNi4wLjcyMDE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "83545c05-f4b7-4b76-84c0-d3e54d269782" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6039\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2/Versions/5.1.6039\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6086\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2/Versions/5.1.6086\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6114\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2/Versions/5.1.6114\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "918" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12982,Microsoft.Compute/GetVMImageFromLocation30Min;73982" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "ebc83dc6-f337-486d-a173-3e64e914cc77" + "07899874-bf9e-4659-bb8b-873add972044" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/36f796fd-050b-4897-ad5d-271855342a36" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14536" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7496a7f0-7d00-4c96-955b-3249af10fd8f" + "4f3b8ada-c7a6-4d86-bf4a-0cb1118adc47" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012729Z:7496a7f0-7d00-4c96-955b-3249af10fd8f" + "EASTUS2:20250602T215408Z:4f3b8ada-c7a6-4d86-bf4a-0cb1118adc47" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 411AC05F3BE2486286DC59BDF03A5057 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:07Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:28 GMT" + "Mon, 02 Jun 2025 21:54:07 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.0.7201\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2012R2/versions/5.1.6039?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxMlIyL3ZlcnNpb25zLzUuMS42MDM5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2019/versions/6.0.7205?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTkvdmVyc2lvbnMvNi4wLjcyMDU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4501bdd3-849b-4d47-94f8-d4043a2fee04" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6039\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2/Versions/5.1.6039\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "409" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12981,Microsoft.Compute/GetVMImageFromLocation30Min;73981" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "78528b1c-da3d-4ae3-bde1-2812b7bff844" - ], - "Cache-Control": [ - "no-cache" + "00689c3e-f1d3-4f20-9414-04a03b0e6abc" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/b9cb4074-271f-432c-90b8-35f5e301c01a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14535" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "f668746f-da93-4732-8027-439c83acfa02" + "64f5ef27-5446-45fe-87b3-ac289a759ed4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012729Z:f668746f-da93-4732-8027-439c83acfa02" + "EASTUS2:20250602T215408Z:64f5ef27-5446-45fe-87b3-ac289a759ed4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D727F698214649D6976748F4506CD9CF Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:08Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:29 GMT" + "Mon, 02 Jun 2025 21:54:07 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7205\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.0.7205\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2012R2/versions/5.1.6086?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxMlIyL3ZlcnNpb25zLzUuMS42MDg2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2019/versions/6.0.7214?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTkvdmVyc2lvbnMvNi4wLjcyMTQ/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a6695a13-8ed3-477f-aba3-23d9dc470a9d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6086\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2/Versions/5.1.6086\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "409" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12980,Microsoft.Compute/GetVMImageFromLocation30Min;73980" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "f9ef5836-31b0-41ea-b4bf-58c9b9312bee" + "ccbd0202-529d-465e-8a6b-f7c72d90053f" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4368db5a-9f87-4919-aedd-aa2ac681a9a9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14534" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "728d210e-96e2-4d7a-9d21-dfe5ea5c6c54" + "4db9546f-df29-4d65-b721-90ce79f2e129" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012730Z:728d210e-96e2-4d7a-9d21-dfe5ea5c6c54" + "EASTUS2:20250602T215408Z:4db9546f-df29-4d65-b721-90ce79f2e129" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C09109E152D84A73BCE4E4A7A4743F98 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:08Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:29 GMT" + "Mon, 02 Jun 2025 21:54:07 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.0.7214\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2012R2/versions/5.1.6114?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxMlIyL3ZlcnNpb25zLzUuMS42MTE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2019/versions/6.0.7531?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTkvdmVyc2lvbnMvNi4wLjc1MzE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "25aa38be-f28c-4c9b-8d48-f08010f3715e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6114\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2/Versions/5.1.6114\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "409" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12979,Microsoft.Compute/GetVMImageFromLocation30Min;73979" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "823aa252-087b-44ea-8de0-3198915b4b3c" - ], - "Cache-Control": [ - "no-cache" + "d85fe3c0-f9cf-4d4f-837b-8f8eb9e8d1bb" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/816e5031-6aba-4671-93f8-78f5107b5500" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14533" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "95b220af-ad1c-4cb3-a702-9e01a850af34" + "14e4e89f-cbec-42c0-b3b8-31568efdf578" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012730Z:95b220af-ad1c-4cb3-a702-9e01a850af34" + "EASTUS2:20250602T215408Z:14e4e89f-cbec-42c0-b3b8-31568efdf578" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 249D17D164534F7182F3079A3DBDACD6 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:08Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:29 GMT" + "Mon, 02 Jun 2025 21:54:07 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.0.7531\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.0.7531\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2012R2-Excel/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxMlIyLUV4Y2VsL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2019/versions/6.2.7731?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTkvdmVyc2lvbnMvNi4yLjc3MzE/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a1aec10c-fbbb-4cac-8cfd-43528fec5f56" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6039\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2-Excel/Versions/5.1.6039\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6086\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2-Excel/Versions/5.1.6086\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6114\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2-Excel/Versions/5.1.6114\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "936" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12978,Microsoft.Compute/GetVMImageFromLocation30Min;73978" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "a7dc5035-5c01-46d0-929b-1e59f5b6f880" + "5501c60c-2425-45b7-99e6-83acf8024daf" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/930bafe7-d18e-4d27-908b-d57993459d59" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14532" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "170bebb4-057b-40e2-a473-8ab61a261db0" + "bfbd63ea-4ac0-4f50-a6e8-330581a52a04" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012730Z:170bebb4-057b-40e2-a473-8ab61a261db0" + "EASTUS2:20250602T215408Z:bfbd63ea-4ac0-4f50-a6e8-330581a52a04" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41CA12CAE1C34D26989339EFEA9CDF59 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:08Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:29 GMT" + "Mon, 02 Jun 2025 21:54:07 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.2.7731\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.2.7731\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2012R2-Excel/versions/5.1.6039?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxMlIyLUV4Y2VsL3ZlcnNpb25zLzUuMS42MDM5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2019/versions/6.2.7756?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTkvdmVyc2lvbnMvNi4yLjc3NTY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fb5d1318-7a43-484e-b5b9-c2902c081efe" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6039\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2-Excel/Versions/5.1.6039\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12977,Microsoft.Compute/GetVMImageFromLocation30Min;73977" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "bd1b9a7d-b55c-4302-918e-fbb64e0e3b9e" - ], - "Cache-Control": [ - "no-cache" + "756d7f8d-39a2-4580-9a6a-3b903cf1f88e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/3e0eeef5-864d-43da-9d83-4a2bd7900978" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14531" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "06b6243c-2768-4906-88d2-0a92c2f78ced" + "42c4fbd5-72cd-4a92-9f19-cd1c94084716" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012730Z:06b6243c-2768-4906-88d2-0a92c2f78ced" + "EASTUS2:20250602T215408Z:42c4fbd5-72cd-4a92-9f19-cd1c94084716" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5834CF362BA24D039B4DF49D321A7DD7 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:08Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:29 GMT" + "Mon, 02 Jun 2025 21:54:07 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.2.7756\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.2.7756\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2012R2-Excel/versions/5.1.6086?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxMlIyLUV4Y2VsL3ZlcnNpb25zLzUuMS42MDg2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2019/versions/6.2.7757?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTkvdmVyc2lvbnMvNi4yLjc3NTc/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "aa974598-6b1a-4fab-aa71-e9ef1cd1520a" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6086\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2-Excel/Versions/5.1.6086\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12976,Microsoft.Compute/GetVMImageFromLocation30Min;73976" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "631f6d73-c7a8-4012-8216-3e3f3b02a0fc" + "b7475518-61d8-4a30-a6a9-31fb26fec551" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4ab44132-342f-47a4-82c4-3fbe5099923a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14530" + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" ], "x-ms-correlation-request-id": [ - "8fac0761-bf04-4ca6-a17c-c0f28d6ed458" + "307451b3-14f6-48ec-a2fb-8ae24a8a5c2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012730Z:8fac0761-bf04-4ca6-a17c-c0f28d6ed458" + "EASTUS2:20250602T215408Z:307451b3-14f6-48ec-a2fb-8ae24a8a5c2d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4A74827331E94281930EAB5B7B801A58 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:08Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:29 GMT" + "Mon, 02 Jun 2025 21:54:07 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.2.7757\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.2.7757\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2012R2-Excel/versions/5.1.6114?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxMlIyLUV4Y2VsL3ZlcnNpb25zLzUuMS42MTE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2019/versions/6.3.8310?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTkvdmVyc2lvbnMvNi4zLjgzMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bbd133ac-6ec2-442c-adb4-bb5ad91561ed" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6114\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2012R2-Excel/Versions/5.1.6114\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12975,Microsoft.Compute/GetVMImageFromLocation30Min;73975" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "e0f5dbf1-3eb5-409e-9b9a-06a54187932e" - ], - "Cache-Control": [ - "no-cache" + "bc559a78-493f-4315-9c45-9caaf599e7bc" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/61bf2929-9aea-4b19-85a7-9aa3e05b4930" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14529" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "584a0069-d5a7-4bf8-956c-d7c58408dae5" + "1d09e8e7-1811-4d99-8a5b-dc539783feb0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012730Z:584a0069-d5a7-4bf8-956c-d7c58408dae5" + "EASTUS2:20250602T215408Z:1d09e8e7-1811-4d99-8a5b-dc539783feb0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 450B3399F10149899E2A53200019D761 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:08Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:29 GMT" + "Mon, 02 Jun 2025 21:54:07 GMT" + ], + "Content-Length": [ + "1006" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-27T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.3.8310\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2016/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxNi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2019/versions/6.3.8328?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTkvdmVyc2lvbnMvNi4zLjgzMjg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2e238763-d804-4136-8389-24501d629837" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6039\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016/Versions/5.1.6039\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6086\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016/Versions/5.1.6086\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6114\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016/Versions/5.1.6114\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "912" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12974,Microsoft.Compute/GetVMImageFromLocation30Min;73974" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "23a16ac3-4e94-4b22-b5af-6e678ce6a12d" - ], - "Cache-Control": [ - "no-cache" + "3e9d205b-34fd-4f2f-a4e1-541c13966ec6" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/5d7adb01-edff-4c4b-8d99-e7ee07bb7600" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14528" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "4ca0d207-3616-4531-9655-af6f9515f69d" + "46fd5c54-761e-4b8b-8379-1b6ba4fb06f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012730Z:4ca0d207-3616-4531-9655-af6f9515f69d" + "EASTUS2:20250602T215408Z:46fd5c54-761e-4b8b-8379-1b6ba4fb06f1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7B6EB3CF268E4096968F901E97F58CE8 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:08Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:29 GMT" + "Mon, 02 Jun 2025 21:54:07 GMT" + ], + "Content-Length": [ + "1006" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-10T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8328\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.3.8328\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2016/versions/5.1.6039?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxNi92ZXJzaW9ucy81LjEuNjAzOT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2019/versions/6.3.8329?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTkvdmVyc2lvbnMvNi4zLjgzMjk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c226e70c-71d5-4824-aae8-4606f7c45257" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6039\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016/Versions/5.1.6039\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "407" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12973,Microsoft.Compute/GetVMImageFromLocation30Min;73973" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "f73c35fd-02c3-4f31-b3e5-d5beb9b2b9d7" - ], - "Cache-Control": [ - "no-cache" + "dae15d2e-0a77-4719-a797-6e1090b01054" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/c1817806-6a0a-4b71-822b-c33eefcca538" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14527" + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" ], "x-ms-correlation-request-id": [ - "76ded04a-0850-492d-9c97-001a15f221dd" + "c533799b-4b11-43e0-9f76-f2042bde0579" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012731Z:76ded04a-0850-492d-9c97-001a15f221dd" + "EASTUS2:20250602T215408Z:c533799b-4b11-43e0-9f76-f2042bde0579" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D81A961C6DA64086BDE5C46197049C39 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:08Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:30 GMT" + "Mon, 02 Jun 2025 21:54:08 GMT" + ], + "Content-Length": [ + "1006" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.3.8329\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2016/versions/5.1.6086?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxNi92ZXJzaW9ucy81LjEuNjA4Nj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2019/versions/6.3.8330?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMTkvdmVyc2lvbnMvNi4zLjgzMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "68c986d9-61f7-46f5-9d39-0dfdc96ac49e" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6086\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016/Versions/5.1.6086\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "407" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12972,Microsoft.Compute/GetVMImageFromLocation30Min;73972" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "a201edbe-81d6-4a8e-8a61-0b232ff6a3da" - ], - "Cache-Control": [ - "no-cache" + "95956a3f-87d2-47be-ad26-d84f766e03f0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2c5efa6c-357a-4659-9c80-aa0b1fdbd0b4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14526" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "5bb28313-1a79-4bdc-b7b8-06feccc2f4dd" + "074c8e3f-d55f-4c08-ace6-bc4beeeaedae" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012731Z:5bb28313-1a79-4bdc-b7b8-06feccc2f4dd" + "EASTUS2:20250602T215408Z:074c8e3f-d55f-4c08-ace6-bc4beeeaedae" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E2938BC5BF754E60B1B177009A6BA557 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:08Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:30 GMT" + "Mon, 02 Jun 2025 21:54:08 GMT" + ], + "Content-Length": [ + "1006" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2019/Versions/6.3.8330\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2016/versions/5.1.6114?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxNi92ZXJzaW9ucy81LjEuNjExND9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2022/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9e2d6db6-fdcc-4730-a0c5-6f5fc2fe16c7" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6114\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016/Versions/5.1.6114\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "407" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15988,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "04f4d8da-2449-4939-bac3-bffff6577679" - ], - "Cache-Control": [ - "no-cache" + "55cd01e9-14f2-4605-a941-2d626d7fafc5" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/bd3623e9-eb8d-4e22-9d3e-e77700671630" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14525" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "882706e4-a8df-477b-9618-da4ceef6c80c" + "2603761c-d2e5-4171-8c28-b303420c5c41" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012731Z:882706e4-a8df-477b-9618-da4ceef6c80c" + "EASTUS:20250602T215408Z:2603761c-d2e5-4171-8c28-b303420c5c41" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6E4F699515704F8DB0F2549FBD0A1845 Ref B: MNZ221060610031 Ref C: 2025-06-02T21:54:08Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:30 GMT" + "Mon, 02 Jun 2025 21:54:08 GMT" + ], + "Content-Length": [ + "1508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.2.7756\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2022/Versions/6.2.7756\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2022/Versions/6.3.8310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8328\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2022/Versions/6.3.8328\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2022/Versions/6.3.8329\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2022/Versions/6.3.8330\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2016-Excel/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxNi1FeGNlbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2022/versions/6.2.7756?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMjIvdmVyc2lvbnMvNi4yLjc3NTY/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ef52464a-c9ef-4aa2-b8d2-da84bed06a55" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6039\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016-Excel/Versions/5.1.6039\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6086\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016-Excel/Versions/5.1.6086\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6114\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016-Excel/Versions/5.1.6114\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "930" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12971,Microsoft.Compute/GetVMImageFromLocation30Min;73971" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "cf0c33bd-e810-4d10-abc2-026ed2dedc1f" - ], - "Cache-Control": [ - "no-cache" + "2fbe62c4-1481-4590-a593-3098a66be5ce" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/74867d16-aff4-46a9-8f65-eba5cd811227" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14524" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "63918426-06d1-476d-b88d-e14726293391" + "f456b0b7-cb4f-403c-ab2f-3af400f24944" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012731Z:63918426-06d1-476d-b88d-e14726293391" + "EASTUS2:20250602T215408Z:f456b0b7-cb4f-403c-ab2f-3af400f24944" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Sat, 14 Jul 2018 01:27:30 GMT" + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7CDDFFA931514C7CAA7C3E2EB39CDB92 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:08Z" + ], + "Date": [ + "Mon, 02 Jun 2025 21:54:08 GMT" + ], + "Content-Length": [ + "973" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.2.7756\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2022/Versions/6.2.7756\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2016-Excel/versions/5.1.6039?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxNi1FeGNlbC92ZXJzaW9ucy81LjEuNjAzOT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2022/versions/6.3.8310?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMjIvdmVyc2lvbnMvNi4zLjgzMTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f6055100-4086-487d-8e63-e55b809acd26" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6039\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016-Excel/Versions/5.1.6039\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12970,Microsoft.Compute/GetVMImageFromLocation30Min;73970" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "38565cc4-5e43-4c3a-9aab-2daf3f7367e0" - ], - "Cache-Control": [ - "no-cache" + "0e8eb97b-3054-4574-9ecf-0df626a7c90c" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/30919722-45e4-4754-aa8e-70f20be65823" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14523" + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" ], "x-ms-correlation-request-id": [ - "ad191102-5fd2-4f8c-bbc7-24af5d5611ed" + "185baa78-bdd1-4051-8ea4-662a2246be99" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012731Z:ad191102-5fd2-4f8c-bbc7-24af5d5611ed" + "EASTUS2:20250602T215409Z:185baa78-bdd1-4051-8ea4-662a2246be99" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3EFD35162DCE47058AF30964C01F0C4B Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:08Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:30 GMT" + "Mon, 02 Jun 2025 21:54:08 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2024-11-27T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2022/Versions/6.3.8310\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2016-Excel/versions/5.1.6086?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxNi1FeGNlbC92ZXJzaW9ucy81LjEuNjA4Nj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2022/versions/6.3.8328?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMjIvdmVyc2lvbnMvNi4zLjgzMjg/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "dacb962b-c3b8-4a1d-b8e7-71da276c78fa" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6086\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016-Excel/Versions/5.1.6086\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12969,Microsoft.Compute/GetVMImageFromLocation30Min;73969" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "d0e04ad7-463f-4a61-bbf4-2671edd381a0" + "2456b18d-1942-4569-9957-a9f35cd3416d" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/2fa8140f-6160-42a4-a11c-d6c1dc5abdc2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14522" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "14767a99-5adc-4aa9-bffb-7309ab177097" + "baebe009-7d56-4e23-8534-42d7fb2fc37f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012731Z:14767a99-5adc-4aa9-bffb-7309ab177097" + "EASTUS2:20250602T215409Z:baebe009-7d56-4e23-8534-42d7fb2fc37f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D73566A0B9A4496A80C16396164C40C5 Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:09Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:30 GMT" + "Mon, 02 Jun 2025 21:54:08 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-10T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8328\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2022/Versions/6.3.8328\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1CN-WS2016-Excel/versions/5.1.6114?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUNOLVdTMjAxNi1FeGNlbC92ZXJzaW9ucy81LjEuNjExND9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2022/versions/6.3.8329?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMjIvdmVyc2lvbnMvNi4zLjgzMjk/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "20f4d778-aea8-45dc-b311-0f6832a87307" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6114\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1CN-WS2016-Excel/Versions/5.1.6114\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12968,Microsoft.Compute/GetVMImageFromLocation30Min;73968" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "2aa04522-8502-41bf-b4e8-16f820e6d662" - ], - "Cache-Control": [ - "no-cache" + "e767550d-8fb5-4fb0-8501-ce2251df9383" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/ea2c34e4-5a3d-4927-b0c3-0f9e7bc490c9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14521" + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" ], "x-ms-correlation-request-id": [ - "b95d1725-5b82-4a6a-bd38-8fc280be86b0" + "1a4ccbee-d8bd-4caa-8c4a-af5c9802ea72" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012731Z:b95d1725-5b82-4a6a-bd38-8fc280be86b0" + "EASTUS2:20250602T215409Z:1a4ccbee-d8bd-4caa-8c4a-af5c9802ea72" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 16F79CD3AD80455F827ED038A7A84F8D Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:09Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:30 GMT" + "Mon, 02 Jun 2025 21:54:08 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-02-11T19:00:00-05:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8329\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2022/Versions/6.3.8329\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1HN-WS2012R2/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUhOLVdTMjAxMlIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2019hn-ws2022/versions/6.3.8330?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTlobi13czIwMjIvdmVyc2lvbnMvNi4zLjgzMzA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9bf7a01e-c556-4363-a542-d6f05c2da4a4" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "1fa8b18c-df02-464c-ac37-e87f678b5edb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6039\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2012R2/Versions/5.1.6039\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6086\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2012R2/Versions/5.1.6086\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6114\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2012R2/Versions/5.1.6114\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "918" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12967,Microsoft.Compute/GetVMImageFromLocation30Min;73967" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "f171e2eb-7242-457f-9bb7-51dbbcd6358d_133889283113724701" ], "x-ms-request-id": [ - "675eafed-edbd-4b84-8f30-eec3558d01de" - ], - "Cache-Control": [ - "no-cache" + "90d50aa2-ea85-4937-9f89-f1a8de3a1e1e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/f0364b84-ef5b-474f-8141-060e61cc9e09" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14520" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "3f852550-0314-4602-aeaf-52ea50a13bf6" + "04fa99b2-96f7-4db2-8b24-6db994f90b73" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012731Z:3f852550-0314-4602-aeaf-52ea50a13bf6" + "EASTUS2:20250602T215409Z:04fa99b2-96f7-4db2-8b24-6db994f90b73" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 57672548F25E42FF81298C1F22FBA22C Ref B: MNZ221060608027 Ref C: 2025-06-02T21:54:09Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:30 GMT" + "Mon, 02 Jun 2025 21:54:08 GMT" + ], + "Content-Length": [ + "1021" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-05-26T20:00:00-04:00\"\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"6.3.8330\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2019hn-ws2022/Versions/6.3.8330\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1HN-WS2012R2/versions/5.1.6039?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUhOLVdTMjAxMlIyL3ZlcnNpb25zLzUuMS42MDM5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "71dd2b93-dc51-4477-97e3-545041ce57d9" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6039\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2012R2/Versions/5.1.6039\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "409" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensions3Min;9995,Microsoft.Compute/ListVMExtensions30Min;21995" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "e232dd72-8f7d-4393-8395-7d1946030ca5" + "0038cd3b-42e4-4c1e-9345-e2940ec4ab61" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14519" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/2530bfc0-366e-4515-be71-18d2272b1711" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "c36bb7c0-e1c9-4ad5-8445-a4868b8eece9" + "af5af3db-01a8-46fe-947f-e5fc7895ce4a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012732Z:c36bb7c0-e1c9-4ad5-8445-a4868b8eece9" + "EASTUS:20250602T215410Z:af5af3db-01a8-46fe-947f-e5fc7895ce4a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 46004A74186F4A128A9E47D593EABEE8 Ref B: MNZ221060609007 Ref C: 2025-06-02T21:54:09Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:32 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "2015" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.2.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.2.5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.5\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1HN-WS2012R2/versions/5.1.6086?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUhOLVdTMjAxMlIyL3ZlcnNpb25zLzUuMS42MDg2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions/2.1?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnMvMi4xP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3148c4e0-4a87-4641-9656-01190cc0640f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6086\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2012R2/Versions/5.1.6086\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "409" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9952,Microsoft.Compute/GetVMExtension30Min;21952" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "7fb048ad-aacf-4193-8500-366d969df170" + "73babaee-fadf-4ea8-9180-dd6f8699be68" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dccc025c-6c0f-4f8e-9337-d94e2b8b2ebe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14518" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "baf70586-1e5f-42d0-91d5-f380e7f03999" + "8828e632-8d74-497d-a1d6-7186b53a8978" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012732Z:baf70586-1e5f-42d0-91d5-f380e7f03999" + "EASTUS:20250602T215410Z:8828e632-8d74-497d-a1d6-7186b53a8978" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C33381A32F9F47A094ACF083F2683280 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:32 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "645" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1HN-WS2012R2/versions/5.1.6114?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUhOLVdTMjAxMlIyL3ZlcnNpb25zLzUuMS42MTE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions/2.2.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnMvMi4yLjI/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "dd9e063d-b95d-4ad3-923b-e2aa502b1890" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6114\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2012R2/Versions/5.1.6114\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "409" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9951,Microsoft.Compute/GetVMExtension30Min;21951" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "6b5062ba-bd6a-4d60-9f0e-564cfa4ad78c" - ], - "Cache-Control": [ - "no-cache" + "766e0d78-b3e6-4818-8bef-99f6c3c5375d" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/ca178def-8e06-47fa-8980-2484bfaa1ca3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14517" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "35f1d304-b63e-4f02-abb4-048672fa0878" + "f5e34e6e-625f-4fbf-b48f-44f7cc13891f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012732Z:35f1d304-b63e-4f02-abb4-048672fa0878" + "EASTUS:20250602T215410Z:f5e34e6e-625f-4fbf-b48f-44f7cc13891f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D2A8719FBCB9487DA3A0293AA6A7B346 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:32 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "622" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1HN-WS2016/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUhOLVdTMjAxNi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions/2.2.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnMvMi4yLjM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9f568ce6-86e1-4f7f-a4ac-e27751815bbb" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6039\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2016/Versions/5.1.6039\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6086\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2016/Versions/5.1.6086\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6114\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2016/Versions/5.1.6114\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "912" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9950,Microsoft.Compute/GetVMExtension30Min;21950" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "16541c8f-35c3-412e-a411-4788f9755958" - ], - "Cache-Control": [ - "no-cache" + "ba78223d-f703-45bb-b81c-9dad47f9b270" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9f948f8e-e06d-490e-9e8d-57aa3e7aaa3b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14516" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7856337d-1be8-4f69-bcf1-e3f5e7617c15" + "e2ea7f41-a242-4e3d-a7e7-2acd29729918" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012732Z:7856337d-1be8-4f69-bcf1-e3f5e7617c15" + "EASTUS:20250602T215410Z:e2ea7f41-a242-4e3d-a7e7-2acd29729918" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1ABF079A3E3B437395DC82645FDF18B3 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:32 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "622" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.2.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1HN-WS2016/versions/5.1.6039?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUhOLVdTMjAxNi92ZXJzaW9ucy81LjEuNjAzOT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions/2.2.5?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnMvMi4yLjU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "778e23a8-9c70-4942-b55e-9374f6500b31" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6039\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2016/Versions/5.1.6039\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "407" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9949,Microsoft.Compute/GetVMExtension30Min;21949" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "3c1d9f23-67ed-4961-b99d-5f578eaf0667" - ], - "Cache-Control": [ - "no-cache" + "0e0050be-ad0d-4d3c-b8c3-b1a4067950b7" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/40346445-7c46-424b-a109-a662bfa45bac" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14515" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "5ad45338-081c-49f8-a41a-8ed67ea14391" + "a4620dd0-97bd-4a5b-ab3d-1a5ae12daf38" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012732Z:5ad45338-081c-49f8-a41a-8ed67ea14391" + "EASTUS:20250602T215410Z:a4620dd0-97bd-4a5b-ab3d-1a5ae12daf38" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A4CB79C55A3448E49B1652DB57029C69 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:32 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "622" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.2.5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1HN-WS2016/versions/5.1.6086?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUhOLVdTMjAxNi92ZXJzaW9ucy81LjEuNjA4Nj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5370241d-19ce-4238-89a5-73db290d3689" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6086\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2016/Versions/5.1.6086\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "407" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensions3Min;9994,Microsoft.Compute/ListVMExtensions30Min;21994" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "c4dea272-32fd-429a-940a-a1d026ffc615" - ], - "Cache-Control": [ - "no-cache" + "d436b450-2552-46f8-98d2-8c8ff6fa5286" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d756fe0b-a812-4568-a3ea-9dba4272fd6e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14514" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "68075dea-5402-4059-88b9-5a14f9f7e16b" + "c5c61756-ad3b-48cc-9359-cdaf6c3a7d4c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012732Z:68075dea-5402-4059-88b9-5a14f9f7e16b" + "EASTUS:20250602T215410Z:c5c61756-ad3b-48cc-9359-cdaf6c3a7d4c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AAECB1FA4A8F4FCE9259C631FF575737 Ref B: MNZ221060609007 Ref C: 2025-06-02T21:54:10Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:32 GMT" + "Mon, 02 Jun 2025 21:54:09 GMT" + ], + "Content-Length": [ + "7253" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.10\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.10\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.12\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.12\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.14\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.14\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.15\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.15\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.16\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.16\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.17\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.17\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.18\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.18\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.19\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.19\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.20\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.20\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.8\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.10.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.10.9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.8\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.9.5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.5\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2016U1HN-WS2016/versions/5.1.6114?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTZVMUhOLVdTMjAxNi92ZXJzaW9ucy81LjEuNjExND9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8d2be250-55de-47b9-92f3-d9559b667ae9" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"5.1.6114\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2016U1HN-WS2016/Versions/5.1.6114\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "407" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensions3Min;9993,Microsoft.Compute/ListVMExtensions30Min;21993" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f171e2eb-7242-457f-9bb7-51dbbcd6358d_131719446558674563" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "71936829-31fa-4310-bbbc-a9e2efa9576a" - ], - "Cache-Control": [ - "no-cache" + "124a4c57-78e4-474f-8149-fcd6ab62dad5" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/19969c61-0888-40ba-9024-916eb27fffb0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14513" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "511fe7a5-fb58-4073-8bef-610c2a173561" + "41310f97-dd28-4fef-b252-b467fd78975c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012733Z:511fe7a5-fb58-4073-8bef-610c2a173561" + "EASTUS:20250602T215411Z:41310f97-dd28-4fef-b252-b467fd78975c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C17242B7561F4A809CE7540D3B4AC42C Ref B: MNZ221060609007 Ref C: 2025-06-02T21:54:11Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:33 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "2413" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.10\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.10\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.11\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.11\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.14\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.14\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.6\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.6\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.8\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.3.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.9\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b4351489-4309-4033-a8b0-54fc8036e794" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"2.1\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "252" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensions3Min;9992,Microsoft.Compute/ListVMExtensions30Min;21992" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "7040d5d6-1c13-464d-b528-e4e8c71f7ed0" - ], - "Cache-Control": [ - "no-cache" + "3df6c824-cf7a-4278-8917-9a019fe3138b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/6abd040b-c4fd-40b7-a529-6186e4786dee" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14510" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d46c97f7-f568-4a6b-8b02-f91b2faaad89" + "7efed773-cda7-440c-8d8d-1d80ae7ba988" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012734Z:d46c97f7-f568-4a6b-8b02-f91b2faaad89" + "EASTUS:20250602T215412Z:7efed773-cda7-440c-8d8d-1d80ae7ba988" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 135EA8FFD73B46DBBA7DABED9AD6AF92 Ref B: MNZ221060609007 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:34 GMT" + "Mon, 02 Jun 2025 21:54:11 GMT" + ], + "Content-Length": [ + "4933" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/1.0.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/1.0.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.0.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.10\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.10\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.11\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.11\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.14\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.14\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.8\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.9\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions/2.1?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnMvMi4xP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f4b03b58-5af6-4fb2-a262-f9e3aa58d372" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"2.1\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "398" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9909,Microsoft.Compute/GetVMExtension30Min;21909" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "40fd191f-ec6a-428b-87a9-5aa539448751" - ], - "Cache-Control": [ - "no-cache" + "26d39a45-9839-4e14-919a-be9a848a6385" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3d993b10-c178-4ef4-b719-43a30a6df64d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14509" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "71e59bf8-2d55-4ade-ab2a-c47ce4cc50c9" + "e9caae5a-21e5-44f4-bc41-f00ecf3b3abb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012734Z:71e59bf8-2d55-4ade-ab2a-c47ce4cc50c9" + "EASTUS:20250602T215412Z:e9caae5a-21e5-44f4-bc41-f00ecf3b3abb" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7125FA8F91C5470786F7ACB592EA801F Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:34 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0.1?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuMC4xP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8355eab3-c974-4b40-b488-edb0eb774cd8" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"1.0.1\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n },\r\n {\r\n \"name\": \"1.0.3\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n },\r\n {\r\n \"name\": \"1.1\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n },\r\n {\r\n \"name\": \"1.2\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n },\r\n {\r\n \"name\": \"1.3\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n },\r\n {\r\n \"name\": \"1.4\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n },\r\n {\r\n \"name\": \"1.7\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.7\"\r\n },\r\n {\r\n \"name\": \"1.8\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.8\"\r\n },\r\n {\r\n \"name\": \"1.9\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9\"\r\n },\r\n {\r\n \"name\": \"1.9.1\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.9.1\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2655" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9908,Microsoft.Compute/GetVMExtension30Min;21908" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "2c3e8082-6cec-41fa-96c6-12a85e50b791" - ], - "Cache-Control": [ - "no-cache" + "2d0455b7-86e4-41c4-ad61-c8935c637b3d" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/482a1645-d9c3-4047-8992-d78975032098" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14508" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "08dd3834-5bcc-45b1-a033-51a2d2080e42" + "dce9777f-2be4-473f-815e-7a3e0ea32703" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012734Z:08dd3834-5bcc-45b1-a033-51a2d2080e42" + "EASTUS:20250602T215412Z:dce9777f-2be4-473f-815e-7a3e0ea32703" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4CAEF6B1849B45289F56EF05E688D72B Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:34 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "613" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0.1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/JsonADDomainExtension/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9Kc29uQUREb21haW5FeHRlbnNpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuMC4yP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3013d536-1b0b-409b-8f74-3586f5e2ac3d" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"1.0\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.0\"\r\n },\r\n {\r\n \"name\": \"1.3\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3\"\r\n },\r\n {\r\n \"name\": \"1.3.2\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension/Versions/1.3.2\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "799" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9907,Microsoft.Compute/GetVMExtension30Min;21907" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "cfa0fea8-25b4-4634-a08f-7cdd471df77b" - ], - "Cache-Control": [ - "no-cache" + "233759c3-b791-4ec7-a744-741d89e26cdf" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/0b2f689c-ed73-4689-9179-0acd1de36f12" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14497" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "52245ea4-4d92-4de5-8dc0-e95aa89c0e41" + "171cb3b5-0c2d-405a-9686-2d3d19afd29b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012736Z:52245ea4-4d92-4de5-8dc0-e95aa89c0e41" + "EASTUS:20250602T215412Z:171cb3b5-0c2d-405a-9686-2d3d19afd29b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5E80099278324035BCC5E81F6CDE8301 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:36 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "613" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.0.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuMz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6f7364a2-4114-44ac-8745-f959db819835" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"2.0\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n },\r\n {\r\n \"name\": \"2.0.1\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0.1\"\r\n },\r\n {\r\n \"name\": \"2.0.2\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0.2\"\r\n },\r\n {\r\n \"name\": \"2.3\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.3\"\r\n },\r\n {\r\n \"name\": \"2.4\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4\"\r\n },\r\n {\r\n \"name\": \"2.4.1\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.1\"\r\n },\r\n {\r\n \"name\": \"2.4.2\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.2\"\r\n },\r\n {\r\n \"name\": \"2.4.3\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.3\"\r\n },\r\n {\r\n \"name\": \"2.4.4\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.4\"\r\n }\r\n]", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "2331" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9906,Microsoft.Compute/GetVMExtension30Min;21906" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "b0c96a95-4d9d-4c67-bcd0-193d366a63c3" - ], - "Cache-Control": [ - "no-cache" + "488721a4-9d39-4e5d-9614-85cc406d8b7e" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/dcfc5649-a05d-4fee-963c-65385fb1fcbc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14493" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "58d05cf0-5ae1-4349-a4c2-bc4ed69c2d10" + "95a312de-1ce3-4eab-a8c1-fbe3367aa695" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012736Z:58d05cf0-5ae1-4349-a4c2-bc4ed69c2d10" + "EASTUS:20250602T215412Z:95a312de-1ce3-4eab-a8c1-fbe3367aa695" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B2ABF2AE1494A9F936AC946D5828444 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:36 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuMD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4f0a2064-745e-4faa-94a9-7ca9baf9320c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"2.0\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9905,Microsoft.Compute/GetVMExtension30Min;21905" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" - ], - "x-ms-request-id": [ - "44d38fee-0931-4ce7-9dca-947a7cc2305e" - ], - "Cache-Control": [ - "no-cache" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "c60ff990-9ed3-4d18-a442-656f40b657ab" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/92876d91-4b12-4385-9610-ada61468cf68" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14492" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "bdf5b372-f91d-4b9c-b47f-30212ebf261b" + "2bf61296-eff9-4df9-9a2f-91b110e9fe86" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012736Z:bdf5b372-f91d-4b9c-b47f-30212ebf261b" + "EASTUS:20250602T215412Z:2bf61296-eff9-4df9-9a2f-91b110e9fe86" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 33F714A2FF1E4A3DA9848E1750F21CC3 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:36 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0.1?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuMC4xP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.1?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC4xP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "53e682c6-cf80-4acf-980b-5c4f1922b4f5" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"2.0.1\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0.1\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "409" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9904,Microsoft.Compute/GetVMExtension30Min;21904" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "11db1d2c-7347-4f61-b1ea-6dacda9a6fd1" - ], - "Cache-Control": [ - "no-cache" + "4c69ef07-b870-45e9-8467-da168467fb53" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/12ee9e00-9b11-46ca-a8bd-47e93fc8519d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14491" + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" ], "x-ms-correlation-request-id": [ - "4c08100e-bd22-45fa-9260-50ebd19c78dd" + "fcf5a2cd-e071-4968-9dc7-89d464402fb3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012736Z:4c08100e-bd22-45fa-9260-50ebd19c78dd" + "EASTUS:20250602T215412Z:fcf5a2cd-e071-4968-9dc7-89d464402fb3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A9D6A55E07E541BFB6C178EAD99688CB Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:36 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "613" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0.2?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuMC4yP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.10?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC4xMD9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "580e06a4-8991-48ab-a492-1dd4b8436042" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"2.0.2\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0.2\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "409" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9903,Microsoft.Compute/GetVMExtension30Min;21903" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "d2a4ed49-89b3-4344-9019-3d5b37908679" - ], - "Cache-Control": [ - "no-cache" + "8651c332-7a28-4563-9651-fa45e174af66" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/04030f6d-607f-4508-8be0-5a43bf8d8106" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14490" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "bc70c1f8-d700-4872-a6ca-d841632719b2" + "1773876a-d678-4bcc-a80b-75cb3809361e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012737Z:bc70c1f8-d700-4872-a6ca-d841632719b2" + "EASTUS:20250602T215413Z:1773876a-d678-4bcc-a80b-75cb3809361e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CD20CD2CD9A743ABBDCC62A148F60621 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:12Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:36 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "631" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.10\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.10\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.3?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.11?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC4xMT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "77f71b78-eb05-468a-a90b-074cc15bda5f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"2.3\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.3\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9902,Microsoft.Compute/GetVMExtension30Min;21902" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "f130b901-1ed7-4fa6-8dae-6c83df2879fe" - ], - "Cache-Control": [ - "no-cache" + "c6912fe6-206d-4628-8d4a-8a1d66b5e214" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/54e8f97c-8eff-4d16-bbe2-d2596a029d9d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14489" + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" ], "x-ms-correlation-request-id": [ - "83c0e453-04e2-4e27-88f8-7fe383f44a6d" + "21c4062e-0f88-45b9-adf6-8e1005569f08" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012737Z:83c0e453-04e2-4e27-88f8-7fe383f44a6d" + "EASTUS:20250602T215413Z:21c4062e-0f88-45b9-adf6-8e1005569f08" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E4F9839EBE384E3EA7E73DD9D1511114 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:37 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "631" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.11\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.11\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuND9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.14?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC4xND9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ff991a8f-794c-4e41-bd4c-da2dbff3cc6c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"2.4\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9901,Microsoft.Compute/GetVMExtension30Min;21901" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "fb4676da-d893-43d9-b4b4-121c53ef00cd" - ], - "Cache-Control": [ - "no-cache" + "e5cc0f73-308c-4f77-9f72-66357469a098" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/4a6ef0c1-c84b-4875-8cd6-d7fe00a65e8b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14488" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "1b572d1b-62f2-4fdc-81a0-7835af22c281" + "fcb5b5f7-09f8-42f7-b78c-8fa22303958a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012737Z:1b572d1b-62f2-4fdc-81a0-7835af22c281" + "EASTUS:20250602T215413Z:fcb5b5f7-09f8-42f7-b78c-8fa22303958a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4F647C1E98E74C0F893A28027AA5F473 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:37 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "631" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.14\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.14\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.1?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC4xP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.2?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC4yP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4983082b-ae30-42c6-ba0f-fb43dc598e06" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"2.4.1\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.1\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "409" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9900,Microsoft.Compute/GetVMExtension30Min;21900" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "7d9ce463-58bc-44b8-a616-65d237c6c285" - ], - "Cache-Control": [ - "no-cache" + "e58d736c-e852-4194-a34b-7998e059d345" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/d564641a-d8cf-4709-abb7-c5ba7dcf9d93" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14487" + "1095" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16495" ], "x-ms-correlation-request-id": [ - "bc91a0b1-eb2f-4437-8f0b-20c692093a43" + "1ab00fe4-7d5d-4e57-8e3b-2d2bd1a308f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012737Z:bc91a0b1-eb2f-4437-8f0b-20c692093a43" + "EASTUS:20250602T215413Z:1ab00fe4-7d5d-4e57-8e3b-2d2bd1a308f5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 787615EEFE3F491EB42B51060AFE862C Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:37 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "613" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.2?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC4yP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.3?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC4zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8e0aa492-15a4-42ea-b284-95bf26e2c39b" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"2.4.2\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.2\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "409" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9899,Microsoft.Compute/GetVMExtension30Min;21899" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "c97cfccb-1e74-4f3e-a3d0-7df551dc3782" - ], - "Cache-Control": [ - "no-cache" + "3dea1780-316e-4019-84ed-587a2727542a" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/9b218cd4-cd01-4428-8461-04e835bcaa77" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14486" + "1094" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16494" ], "x-ms-correlation-request-id": [ - "9a745ee7-00c8-4146-b9b9-c3f29db03fca" + "8a7e0c1c-d58d-4d36-926d-9171d8d97c62" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012737Z:9a745ee7-00c8-4146-b9b9-c3f29db03fca" + "EASTUS:20250602T215413Z:8a7e0c1c-d58d-4d36-926d-9171d8d97c62" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 220205F85F1D432BA1E5B60072D2AD34 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:37 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "613" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.3?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC4zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.4?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC40P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ba4f550c-cb78-4d66-9f57-a9ddd3772604" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"2.4.3\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.3\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "409" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9898,Microsoft.Compute/GetVMExtension30Min;21898" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "e368d228-94da-4e4f-aaf5-18ac48d23fbc" - ], - "Cache-Control": [ - "no-cache" + "13819b51-9426-4f60-a319-4febd7d53c34" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/8fb6d827-7938-4186-98fa-77f9898e19ef" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14485" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "6aad9d62-de20-4bc5-a0cc-3bc40518b46b" + "a93f500b-e820-42c5-8e1e-16651ea67e0a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012737Z:6aad9d62-de20-4bc5-a0cc-3bc40518b46b" + "EASTUS:20250602T215413Z:a93f500b-e820-42c5-8e1e-16651ea67e0a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F829CA24435B44BCA9E0FB673E6BEFDE Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:37 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "613" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.4\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.4?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC40P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.5?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC41P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "23c9b32e-c5da-403c-aed2-e543a3b6e7bb" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"2.4.4\",\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.4\"\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "409" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9897,Microsoft.Compute/GetVMExtension30Min;21897" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131648155329037016" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "e182bdfc-bfda-49cf-9915-af7b6f71c072" - ], - "Cache-Control": [ - "no-cache" + "36b2f946-a27d-486d-8c01-324dff12e334" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/65d48f5d-dfe5-4aa9-82f7-af83f5875b81" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14484" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b2a9223e-b3b8-4dee-958a-b195b16fe371" + "bf0bb8e9-77f7-4b72-8799-f5b847c19fb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012738Z:b2a9223e-b3b8-4dee-958a-b195b16fe371" + "EASTUS:20250602T215413Z:bf0bb8e9-77f7-4b72-8799-f5b847c19fb4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 808281F71E6641559CA263BDC55D8BBA Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:37 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "613" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/crptestps3845/artifacttypes/vmimage/offers?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzMzg0NS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.7?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC43P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "57106b66-ffe4-4824-bd53-bca524a4915f" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps3845 was not found.\"\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "106" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9896,Microsoft.Compute/GetVMExtension30Min;21896" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "fdf36996-ce19-48f8-ae87-34fdcb03c0f3_131643344666344847" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "a31974b8-2697-4839-bab0-72de6a37f74c" - ], - "Cache-Control": [ - "no-cache" + "a5db0fef-136d-4001-9266-307410e43ce0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/088eb8f2-a096-4749-be54-63319397d7fb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14482" + "1097" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16497" ], "x-ms-correlation-request-id": [ - "63f5922f-6061-41d5-946e-12b47392aa38" + "18df6f08-db05-4851-a4b4-1b00a3b424d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012739Z:63f5922f-6061-41d5-946e-12b47392aa38" + "EASTUS:20250602T215413Z:18df6f08-db05-4851-a4b4-1b00a3b424d3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 30CD4609553E4D15A5E727651D3F94FF Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:39 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "613" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 404 + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.7\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/crptestps3845/artifacttypes/vmimage/offers/crptestps5720/skus?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzMzg0NS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NycHRlc3RwczU3MjAvc2t1cz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.8?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC44P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "eb5d5565-787d-4c38-ae42-fdddc3037e62" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps3845 was not found.\"\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "106" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9895,Microsoft.Compute/GetVMExtension30Min;21895" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "fdf36996-ce19-48f8-ae87-34fdcb03c0f3_131643344666344847" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "3f74c195-da5c-44d0-80e0-d17b6042822b" - ], - "Cache-Control": [ - "no-cache" + "ebaf6c2c-269a-43a0-87ff-56120a995e42" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/c08e856c-8b85-40e2-9f27-ddebe98267eb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14481" + "1093" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16493" ], "x-ms-correlation-request-id": [ - "a3ed86e3-af58-47e1-80f7-8fa7ffbe381a" + "0535c026-b4b2-4959-9802-51a5ceb608cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012739Z:a3ed86e3-af58-47e1-80f7-8fa7ffbe381a" + "EASTUS:20250602T215413Z:0535c026-b4b2-4959-9802-51a5ceb608cd" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9BBB0D449C934C769AA2DD631E866EBB Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:39 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "613" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 404 + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.8\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.8\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/crptestps3845/artifacttypes/vmimage/offers/crptestps5720/skus/crptestps3982/versions?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzMzg0NS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NycHRlc3RwczU3MjAvc2t1cy9jcnB0ZXN0cHMzOTgyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.4.9?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuNC45P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "25aa2413-2fcc-4f81-97be-56d5383f9088" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "854a401c-d468-4846-828c-816961f5e6bb" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps3845 was not found.\"\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "106" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMExtension3Min;9894,Microsoft.Compute/GetVMExtension30Min;21894" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "fdf36996-ce19-48f8-ae87-34fdcb03c0f3_131643344666344847" + "ab90d441-6939-4ab1-9dfa-bef247d64088_133891073386437735" ], "x-ms-request-id": [ - "911487c0-455e-4e77-b91e-1253a2016c40" + "b5803c5f-84e6-46ce-a99e-93facd6e4106" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/3e65c8b9-5475-480a-af69-e26e43a16be3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14480" + "1096" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16496" ], "x-ms-correlation-request-id": [ - "5f83b83c-737c-44c0-84af-9091566b95ec" + "e6ca29d7-f389-4eb5-93f8-69890097d7c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012739Z:5f83b83c-737c-44c0-84af-9091566b95ec" + "EASTUS:20250602T215413Z:e6ca29d7-f389-4eb5-93f8-69890097d7c6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 26A2D6365D594A2CA68E0CDA0779DEC6 Ref B: MNZ221060608011 Ref C: 2025-06-02T21:54:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:39 GMT" + "Mon, 02 Jun 2025 21:54:12 GMT" + ], + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 404 + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\",\r\n \"arm64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isSoftDeleted\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.4.9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.4.9\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/crptestps3845/artifacttypes/vmimage/offers/crptestps5720/skus/crptestps3982/versions?$filter=name%20eq%20'latest'&api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzMzg0NS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NycHRlc3RwczU3MjAvc2t1cy9jcnB0ZXN0cHMzOTgyL3ZlcnNpb25zPyRmaWx0ZXI9bmFtZSUyMGVxJTIwJ2xhdGVzdCcmYXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/crptestps3867/artifacttypes/vmimage/offers?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzMzg2Ny9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "adba7fd4-6d06-491d-a39d-691aeb46f63c" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f56533f5-301f-411a-8903-1dba53edb54b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps3845 was not found.\"\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "106" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "fdf36996-ce19-48f8-ae87-34fdcb03c0f3_131643344666344847" + "2f7a70d0-28bd-4ad3-844b-5bac81adb3ed_133891072943154478" ], "x-ms-request-id": [ - "23e8eeef-c4ac-4fa9-bbce-b80ab9859d6f" - ], - "Cache-Control": [ - "no-cache" + "35b226cc-8246-451b-9a8f-81f89d1a8748" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cb26d5c8-116b-4c4e-a0e5-1be6235e88be" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14479" + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" ], "x-ms-correlation-request-id": [ - "49a10f9e-9dda-4168-baff-d2563076547c" + "2eaae110-a891-48b3-a9c3-ad72324f863d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012740Z:49a10f9e-9dda-4168-baff-d2563076547c" + "EASTUS:20250602T215414Z:2eaae110-a891-48b3-a9c3-ad72324f863d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 00520CA342384A1C8F40B6A3979E9750 Ref B: MNZ221060619017 Ref C: 2025-06-02T21:54:13Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:39 GMT" + "Mon, 02 Jun 2025 21:54:13 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps3867 was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/crptestps3845/artifacttypes/vmimage/offers/crptestps5720/skus/crptestps3982/versions/1.0.0?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzMzg0NS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NycHRlc3RwczU3MjAvc2t1cy9jcnB0ZXN0cHMzOTgyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/crptestps3867/artifacttypes/vmimage/offers/crptestps2412/skus?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzMzg2Ny9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NycHRlc3RwczI0MTIvc2t1cz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "dd087cb9-fef8-433d-b610-dc35d3c71c79" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b7ecb3c7-c3b8-421e-86d9-c27141c3536b" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps3845 was not found.\"\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "106" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9999,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "fdf36996-ce19-48f8-ae87-34fdcb03c0f3_131643344666344847" + "2f7a70d0-28bd-4ad3-844b-5bac81adb3ed_133891072943154478" ], "x-ms-request-id": [ - "777e2a7b-340d-4ae1-a2f4-5b398c21a306" - ], - "Cache-Control": [ - "no-cache" + "5c286bb0-b69b-478e-9b36-8161d6cac166" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/cdbcb0a7-0421-4eb6-b60f-f85676036569" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14478" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "34393815-ec09-435e-95fb-2d6ddea8f6a8" + "ec814fcd-c943-4b15-8fd6-97bb8522a852" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012740Z:34393815-ec09-435e-95fb-2d6ddea8f6a8" + "EASTUS:20250602T215414Z:ec814fcd-c943-4b15-8fd6-97bb8522a852" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 21E98E7308A946799035604824E96E01 Ref B: MNZ221060610049 Ref C: 2025-06-02T21:54:14Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:40 GMT" + "Mon, 02 Jun 2025 21:54:13 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps3867 was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/crptestps3845/artifacttypes/vmextension/types/crptestps6263/versions/1.0.0?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzMzg0NS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL2NycHRlc3RwczYyNjMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/crptestps3867/artifacttypes/vmimage/offers/crptestps2412/skus/crptestps9387/versions?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzMzg2Ny9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NycHRlc3RwczI0MTIvc2t1cy9jcnB0ZXN0cHM5Mzg3L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e50eeeee-109f-457e-bcb8-75f543086df8" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "b877a6f0-f5f7-429e-a692-cf2bed538c0c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps3845 was not found.\"\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "106" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "fdf36996-ce19-48f8-ae87-34fdcb03c0f3_131643344666344847" + "2f7a70d0-28bd-4ad3-844b-5bac81adb3ed_133891072943154478" ], "x-ms-request-id": [ - "a5c6fcf7-4927-47bb-b86d-f14c087ef0a9" - ], - "Cache-Control": [ - "no-cache" + "4517c8df-72bd-44f6-a95b-1d88df0342af" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus2/4a0ec969-5b45-4ef1-9365-b27a5e1a41b3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14477" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "b4521877-9a2d-4d1e-8128-f5bd2ac1980f" + "3973ae06-b0e0-4253-bc66-aedce6a4d349" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012740Z:b4521877-9a2d-4d1e-8128-f5bd2ac1980f" + "EASTUS2:20250602T215414Z:3973ae06-b0e0-4253-bc66-aedce6a4d349" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 74FD699356204B339622146639F5D691 Ref B: MNZ221060610039 Ref C: 2025-06-02T21:54:14Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:40 GMT" + "Mon, 02 Jun 2025 21:54:13 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps3867 was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/crptestps3845/artifacttypes/vmextension/types?api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzMzg0NS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/crptestps3867/artifacttypes/vmimage/offers/crptestps2412/skus/crptestps9387/versions/1.0.0?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzMzg2Ny9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NycHRlc3RwczI0MTIvc2t1cy9jcnB0ZXN0cHM5Mzg3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "79a7e3fc-1916-4b5d-b013-7a4ace436eab" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "f1130152-a37b-48a0-a65c-88c063f34f45" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps3845 was not found.\"\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "106" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "fdf36996-ce19-48f8-ae87-34fdcb03c0f3_131643344666344847" + "2f7a70d0-28bd-4ad3-844b-5bac81adb3ed_133891072943154478" ], "x-ms-request-id": [ - "84622d94-072a-488b-85c3-70a04a074c63" - ], - "Cache-Control": [ - "no-cache" + "58bc1ced-39e6-4776-8e8c-6c6f3014c22f" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/678cae1f-7dd3-4a5e-b457-771bff0ca923" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14476" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "2482caf7-ca34-42f8-ac0f-682ac06980f7" + "ee8f36a3-e074-4e4f-a345-ac12da7160dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012740Z:2482caf7-ca34-42f8-ac0f-682ac06980f7" + "EASTUS:20250602T215414Z:ee8f36a3-e074-4e4f-a345-ac12da7160dd" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 775FC36F799E41318C18FA924A36037B Ref B: MNZ221060608051 Ref C: 2025-06-02T21:54:14Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:40 GMT" + "Mon, 02 Jun 2025 21:54:13 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps3867 was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Compute/locations/eastus/publishers/crptestps3845/artifacttypes/vmextension/types/crptestps6263/versions?$filter=name%20eq%20'latest'&api-version=2018-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzMzg0NS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL2NycHRlc3RwczYyNjMvdmVyc2lvbnM/JGZpbHRlcj1uYW1lJTIwZXElMjAnbGF0ZXN0JyZhcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/crptestps3867/artifacttypes/vmextension/types?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzMzg2Ny9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a174a696-0f5c-43dc-b016-947eadfce9a4" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "x-ms-client-request-id": [ + "7fd39e95-87eb-4ee8-bdaf-6263bda0e57c" + ], "User-Agent": [ - "FxVersion/4.7.3110.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/20.0.0.0" + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps3845 was not found.\"\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { - "Content-Length": [ - "106" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22499" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "fdf36996-ce19-48f8-ae87-34fdcb03c0f3_131643344666344847" + "2f7a70d0-28bd-4ad3-844b-5bac81adb3ed_133891072943154478" ], "x-ms-request-id": [ - "a15f68df-17dc-4ab3-bce0-bfe7f97da83b" - ], - "Cache-Control": [ - "no-cache" + "30f65f5b-522b-45f8-9373-915c99a1918b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=401aab92-0319-46e8-8f49-0249f406012b/eastus/20454a90-32e6-4092-9710-2a87c2d691ac" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14475" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "2ed88e8f-69ef-4acd-9636-b9b1d5294a72" + "7e0d0f6e-f6ca-413c-9929-77944ca48575" ], "x-ms-routing-request-id": [ - "WESTUS2:20180714T012740Z:2ed88e8f-69ef-4acd-9636-b9b1d5294a72" + "EASTUS:20250602T215414Z:7e0d0f6e-f6ca-413c-9929-77944ca48575" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C5BD2BAC39FA419186DA10B281FA1898 Ref B: MNZ221060609035 Ref C: 2025-06-02T21:54:14Z" + ], "Date": [ - "Sat, 14 Jul 2018 01:27:40 GMT" + "Mon, 02 Jun 2025 21:54:14 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps3867 was not found.\"\r\n }\r\n}", "StatusCode": 404 } ], "Names": { "Test-VirtualMachineImageList": [ - "crptestps3845", - "crptestps5720", - "crptestps3982", - "crptestps6263" + "crptestps3867", + "crptestps2412", + "crptestps9387", + "crptestps284" ] }, "Variables": { - "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb" + "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" } } \ No newline at end of file diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 4f72866e676f..f93237a02940 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -20,6 +20,7 @@ --> ## Upcoming Release +* Compute DiskRP related cmdlets will now use 2025-01-02 version of the DiskRP API. ## Version 10.0.0 * Added new properties `Architecture`, `HyperVGeneration`, and `ImageDeprecationStatus` to be returned in `Get-AzVMImage` ListVMImage parameter set. diff --git a/src/Compute/Compute/Common/ComputeAutoMapperProfile.cs b/src/Compute/Compute/Common/ComputeAutoMapperProfile.cs index 34f603e28e46..dc0bd1568126 100644 --- a/src/Compute/Compute/Common/ComputeAutoMapperProfile.cs +++ b/src/Compute/Compute/Common/ComputeAutoMapperProfile.cs @@ -105,6 +105,16 @@ private static void Initialize() .ForMember(c => c.IsSuccessStatusCode, o => o.MapFrom(r => r.Response.IsSuccessStatusCode)) .ForMember(c => c.ReasonPhrase, o => o.MapFrom(r => r.Response.ReasonPhrase)); + cfg.CreateMap, TO.PSAzureOperationResponse>() + .ForMember(c => c.StatusCode, o => o.MapFrom(r => r.Response.StatusCode)) + .ForMember(c => c.IsSuccessStatusCode, o => o.MapFrom(r => r.Response.IsSuccessStatusCode)) + .ForMember(c => c.ReasonPhrase, o => o.MapFrom(r => r.Response.ReasonPhrase)); + + cfg.CreateMap, TO.PSAzureOperationResponse>() + .ForMember(c => c.StatusCode, o => o.MapFrom(r => r.Response.StatusCode)) + .ForMember(c => c.IsSuccessStatusCode, o => o.MapFrom(r => r.Response.IsSuccessStatusCode)) + .ForMember(c => c.ReasonPhrase, o => o.MapFrom(r => r.Response.ReasonPhrase)); + cfg.CreateMap, TO.PSAzureOperationResponse>() .ForMember(c => c.StatusCode, o => o.MapFrom(r => r.Response.StatusCode)) .ForMember(c => c.IsSuccessStatusCode, o => o.MapFrom(r => r.Response.IsSuccessStatusCode)) diff --git a/src/Compute/Compute/Common/DiagnosticsHelper.cs b/src/Compute/Compute/Common/DiagnosticsHelper.cs index 2cb6b0979f3c..28e74616dd44 100644 --- a/src/Compute/Compute/Common/DiagnosticsHelper.cs +++ b/src/Compute/Compute/Common/DiagnosticsHelper.cs @@ -742,7 +742,7 @@ public static Tuple GetConfigurationsFromFiles(string publ public static bool IsDiagnosticsExtension(VirtualMachineScaleSetExtension extension) { return extension.Publisher.Equals(DiagnosticsExtensionConstants.ExtensionPublisher, StringComparison.InvariantCultureIgnoreCase) && - extension.Type1.Equals(DiagnosticsExtensionConstants.ExtensionType, StringComparison.InvariantCultureIgnoreCase); + extension.VirtualMachineScaleSetExtensionPropertiesType.Equals(DiagnosticsExtensionConstants.ExtensionType, StringComparison.InvariantCultureIgnoreCase); } /// diff --git a/src/Compute/Compute/Extension/AzureDiskEncryption/DisableAzureDiskEncryption.cs b/src/Compute/Compute/Extension/AzureDiskEncryption/DisableAzureDiskEncryption.cs index dee126c83533..606ff543c150 100644 --- a/src/Compute/Compute/Extension/AzureDiskEncryption/DisableAzureDiskEncryption.cs +++ b/src/Compute/Compute/Extension/AzureDiskEncryption/DisableAzureDiskEncryption.cs @@ -234,7 +234,7 @@ private VirtualMachineExtension GetVmExtensionParameters(VirtualMachine vmParame /// /// This function gets the VM model, fills in the OSDisk properties with encryptionSettings and does an UpdateVM /// - private AzureOperationResponse UpdateVmEncryptionSettings() + private AzureOperationResponse UpdateVmEncryptionSettings() { var vmParameters = (this.ComputeClient.ComputeManagementClient.VirtualMachines.Get( this.ResourceGroupName, this.VMName)); diff --git a/src/Compute/Compute/Extension/AzureDiskEncryption/GetAzureDiskEncryptionStatus.cs b/src/Compute/Compute/Extension/AzureDiskEncryption/GetAzureDiskEncryptionStatus.cs index 86c32444ead5..badfabf78994 100644 --- a/src/Compute/Compute/Extension/AzureDiskEncryption/GetAzureDiskEncryptionStatus.cs +++ b/src/Compute/Compute/Extension/AzureDiskEncryption/GetAzureDiskEncryptionStatus.cs @@ -24,6 +24,7 @@ using System.Collections.Generic; using System.Globalization; using System.Management.Automation; +using EncryptionStatus = Microsoft.Azure.Commands.Compute.Models.EncryptionStatus; namespace Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption { diff --git a/src/Compute/Compute/Extension/AzureDiskEncryption/SetAzureDiskEncryptionExtension.cs b/src/Compute/Compute/Extension/AzureDiskEncryption/SetAzureDiskEncryptionExtension.cs index 5f177b06f52a..6cd2008e1e40 100644 --- a/src/Compute/Compute/Extension/AzureDiskEncryption/SetAzureDiskEncryptionExtension.cs +++ b/src/Compute/Compute/Extension/AzureDiskEncryption/SetAzureDiskEncryptionExtension.cs @@ -374,7 +374,7 @@ private string GetExtensionStatusMessage() /// /// This function gets the VM model, fills in the OSDisk properties with encryptionSettings and does an UpdateVM /// - private AzureOperationResponse UpdateVmEncryptionSettings(DiskEncryptionSettings encryptionSettingsBackup) + private AzureOperationResponse UpdateVmEncryptionSettings(DiskEncryptionSettings encryptionSettingsBackup) { string statusMessage = GetExtensionStatusMessage(); @@ -422,7 +422,7 @@ private AzureOperationResponse UpdateVmEncryptionSettings(DiskEn Tags = vmParameters.Tags }; - AzureOperationResponse updateResult = null; + AzureOperationResponse updateResult = null; // The 2nd pass. TODO: If something goes wrong here, try to revert to encryptionSettingsBackup. if (encryptionSettingsBackup.Enabled != true) @@ -492,7 +492,7 @@ private AzureOperationResponse UpdateVmEncryptionSettings(DiskEn return updateResult; } - private AzureOperationResponse UpdateVmEncryptionSettingsForMigration() + private AzureOperationResponse UpdateVmEncryptionSettingsForMigration() { var vmParameters = (this.ComputeClient.ComputeManagementClient.VirtualMachines.Get( this.ResourceGroupName, this.VMName)); @@ -502,7 +502,7 @@ private AzureOperationResponse UpdateVmEncryptionSettingsForMigr vmParameters.StorageProfile.OsDisk.EncryptionSettings = resetEncryptionSettings; // update VM - AzureOperationResponse setEncryptionEnabledFalse = null; + AzureOperationResponse setEncryptionEnabledFalse = null; setEncryptionEnabledFalse = this.ComputeClient.ComputeManagementClient.VirtualMachines.CreateOrUpdateWithHttpMessagesAsync( this.ResourceGroupName, vmParameters.Name, @@ -543,7 +543,7 @@ private bool UpdateVmEncryptionIdentity() if (updateVm) { // update VM - AzureOperationResponse updateEncryptionIdentity = null; + AzureOperationResponse updateEncryptionIdentity = null; updateEncryptionIdentity = this.ComputeClient.ComputeManagementClient. VirtualMachines.CreateOrUpdateWithHttpMessagesAsync( this.ResourceGroupName, @@ -566,14 +566,14 @@ private bool UpdateVmEncryptionIdentity() return true; } - private AzureOperationResponse ClearVmEncryptionSettingsForMigration() + private AzureOperationResponse ClearVmEncryptionSettingsForMigration() { var vmParameters = (this.ComputeClient.ComputeManagementClient.VirtualMachines.Get( this.ResourceGroupName, this.VMName)); vmParameters.StorageProfile.OsDisk.EncryptionSettings = null; // update VM - AzureOperationResponse clearEncryptionSettings = null; + AzureOperationResponse clearEncryptionSettings = null; clearEncryptionSettings = this.ComputeClient.ComputeManagementClient.VirtualMachines.CreateOrUpdateWithHttpMessagesAsync( this.ResourceGroupName, vmParameters.Name, @@ -824,7 +824,7 @@ private void EnableDualPassADEForMigration(PSVirtualMachineExtension adeExtensio AutoUpgradeMinorVersion = adeExtensionInstanceView.AutoUpgradeMinorVersion, }; - AzureOperationResponse configureVMforMigrate = this.VirtualMachineExtensionClient.CreateOrUpdateWithHttpMessagesAsync( + AzureOperationResponse configureVMforMigrate = this.VirtualMachineExtensionClient.CreateOrUpdateWithHttpMessagesAsync( this.ResourceGroupName, this.VMName, adeExtensionInstanceView.Name, @@ -877,7 +877,7 @@ private void EnableSinglePassADEForMigration(PSVirtualMachineExtension adeExtens AutoUpgradeMinorVersion = adeExtensionInstanceView.AutoUpgradeMinorVersion, }; - AzureOperationResponse UpdateToSinglePass = this.VirtualMachineExtensionClient.CreateOrUpdateWithHttpMessagesAsync( + AzureOperationResponse UpdateToSinglePass = this.VirtualMachineExtensionClient.CreateOrUpdateWithHttpMessagesAsync( this.ResourceGroupName, this.VMName, adeExtensionInstanceView.Name, @@ -1006,7 +1006,7 @@ public override void ExecuteCmdlet() // updates VM // First Pass - AzureOperationResponse firstPass = this.VirtualMachineExtensionClient.CreateOrUpdateWithHttpMessagesAsync( + AzureOperationResponse firstPass = this.VirtualMachineExtensionClient.CreateOrUpdateWithHttpMessagesAsync( this.ResourceGroupName, this.VMName, this.Name, diff --git a/src/Compute/Compute/Extension/DSC/SetAzureVMDscExtensionCommand.cs b/src/Compute/Compute/Extension/DSC/SetAzureVMDscExtensionCommand.cs index 906dc2014696..045bc82df180 100644 --- a/src/Compute/Compute/Extension/DSC/SetAzureVMDscExtensionCommand.cs +++ b/src/Compute/Compute/Extension/DSC/SetAzureVMDscExtensionCommand.cs @@ -369,7 +369,7 @@ private void CreateConfiguration() //Add retry logic due to CRP service restart known issue CRP bug: 3564713 var count = 1; - Rest.Azure.AzureOperationResponse op = null; + Rest.Azure.AzureOperationResponse op = null; if (NoWait.IsPresent) { diff --git a/src/Compute/Compute/Extension/SqlServer/SetAzureVMSqlServerExtensionCommand.cs b/src/Compute/Compute/Extension/SqlServer/SetAzureVMSqlServerExtensionCommand.cs index 5f22c5949fdb..560a91eb0bd9 100644 --- a/src/Compute/Compute/Extension/SqlServer/SetAzureVMSqlServerExtensionCommand.cs +++ b/src/Compute/Compute/Extension/SqlServer/SetAzureVMSqlServerExtensionCommand.cs @@ -133,7 +133,7 @@ public override void ExecuteCmdlet() // Add retry logic due to CRP service restart known issue CRP bug: 3564713 // Similair approach taken in DSC cmdlet as well var count = 1; - Rest.Azure.AzureOperationResponse op = null; + Rest.Azure.AzureOperationResponse op = null; while (count <= 2) { try diff --git a/src/Compute/Compute/Extension/VmssDiskEncryption/DisableAzureVmssDiskEncryption.cs b/src/Compute/Compute/Extension/VmssDiskEncryption/DisableAzureVmssDiskEncryption.cs index df376ab10b87..822127b6ffaa 100644 --- a/src/Compute/Compute/Extension/VmssDiskEncryption/DisableAzureVmssDiskEncryption.cs +++ b/src/Compute/Compute/Extension/VmssDiskEncryption/DisableAzureVmssDiskEncryption.cs @@ -127,7 +127,7 @@ public override void ExecuteCmdlet() bool extensionFound = false; foreach (var ext in vmss.VirtualMachineProfile.ExtensionProfile.Extensions) { - if (ext.Type1.Equals(this.ExtensionName)) + if (ext.VirtualMachineScaleSetExtensionPropertiesType.Equals(this.ExtensionName)) { ext.Settings = GetDisalbeEncryptionSetting(); ext.ProtectedSettings = null; diff --git a/src/Compute/Compute/Extension/VmssDiskEncryption/GetAzureVmssDiskEncryptionStatus.cs b/src/Compute/Compute/Extension/VmssDiskEncryption/GetAzureVmssDiskEncryptionStatus.cs index 422a84ec2c9e..57c3b81341cd 100644 --- a/src/Compute/Compute/Extension/VmssDiskEncryption/GetAzureVmssDiskEncryptionStatus.cs +++ b/src/Compute/Compute/Extension/VmssDiskEncryption/GetAzureVmssDiskEncryptionStatus.cs @@ -148,7 +148,7 @@ private PSVmssDiskEncryptionStatusContext GetVmssDiskStatus(string rgName, strin } ext = vmssResult.VirtualMachineProfile.ExtensionProfile.Extensions.First( - e => e.Type1.Equals(this.ExtensionName)); + e => e.VirtualMachineScaleSetExtensionPropertiesType.Equals(this.ExtensionName)); } catch (InvalidOperationException) { diff --git a/src/Compute/Compute/Extension/VmssDiskEncryption/GetAzureVmssVMDiskEncryptionStatus.cs b/src/Compute/Compute/Extension/VmssDiskEncryption/GetAzureVmssVMDiskEncryptionStatus.cs index 88c8bb0788da..775c2cfa17f3 100644 --- a/src/Compute/Compute/Extension/VmssDiskEncryption/GetAzureVmssVMDiskEncryptionStatus.cs +++ b/src/Compute/Compute/Extension/VmssDiskEncryption/GetAzureVmssVMDiskEncryptionStatus.cs @@ -24,6 +24,7 @@ using System.Management.Automation; using System; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using EncryptionStatus = Microsoft.Azure.Commands.Compute.Models.EncryptionStatus; namespace Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption { diff --git a/src/Compute/Compute/Extension/VmssDiskEncryption/SetAzureVmssDiskEncryptionExtension.cs b/src/Compute/Compute/Extension/VmssDiskEncryption/SetAzureVmssDiskEncryptionExtension.cs index 12b28d92080b..203588a3dc48 100644 --- a/src/Compute/Compute/Extension/VmssDiskEncryption/SetAzureVmssDiskEncryptionExtension.cs +++ b/src/Compute/Compute/Extension/VmssDiskEncryption/SetAzureVmssDiskEncryptionExtension.cs @@ -227,7 +227,7 @@ private VirtualMachineScaleSetExtension GetVmssExtensionParameters() { Name = this.ExtensionName, Publisher = this.ExtensionPublisherName, - Type1 = this.ExtensionType, + VirtualMachineScaleSetExtensionPropertiesType = this.ExtensionType, TypeHandlerVersion = (this.TypeHandlerVersion) ?? AzureVmssDiskEncryptionExtensionContext.ExtensionDefaultVersion, Settings = SettingString, AutoUpgradeMinorVersion = !DisableAutoUpgradeMinorVersion.IsPresent, @@ -244,7 +244,7 @@ private VirtualMachineScaleSetExtension GetVmssExtensionParameters() { Name = this.ExtensionName, Publisher = this.ExtensionPublisherName, - Type1 = this.ExtensionType, + VirtualMachineScaleSetExtensionPropertiesType = this.ExtensionType, TypeHandlerVersion = (this.TypeHandlerVersion) ?? AzureVmssDiskEncryptionExtensionContext.LinuxExtensionDefaultVersion, Settings = SettingString, AutoUpgradeMinorVersion = !DisableAutoUpgradeMinorVersion.IsPresent, @@ -298,7 +298,7 @@ private bool UpdateVmssEncryptionIdentity() if (updateVmss) { // update VMss - AzureOperationResponse updateEncryptionIdentity = null; + AzureOperationResponse updateEncryptionIdentity = null; updateEncryptionIdentity = this.VirtualMachineScaleSetClient.CreateOrUpdateWithHttpMessagesAsync( this.ResourceGroupName, vmssParameters.Name, vmssParameters).GetAwaiter().GetResult(); diff --git a/src/Compute/Compute/ExtensionImages/GetAzureVMExtensionImageCommand.cs b/src/Compute/Compute/ExtensionImages/GetAzureVMExtensionImageCommand.cs index dac2b26f46d8..071e9b851024 100644 --- a/src/Compute/Compute/ExtensionImages/GetAzureVMExtensionImageCommand.cs +++ b/src/Compute/Compute/ExtensionImages/GetAzureVMExtensionImageCommand.cs @@ -51,13 +51,12 @@ public override void ExecuteCmdlet() { if (string.IsNullOrEmpty(this.Version) || WildcardPattern.ContainsWildcardCharacters(this.Version)) { - var filter = new ODataQuery(this.FilterExpression); var result = this.VirtualMachineExtensionImageClient.ListVersionsWithHttpMessagesAsync( this.Location.Canonicalize(), this.PublisherName, this.Type, - odataQuery: filter).GetAwaiter().GetResult(); + filter: this.FilterExpression).GetAwaiter().GetResult(); var images = from r in result.Body select new PSVirtualMachineExtensionImage diff --git a/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskConfigCommand.cs b/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskConfigCommand.cs index e1c7982b6042..56a10be1db9e 100644 --- a/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskConfigCommand.cs +++ b/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskConfigCommand.cs @@ -441,7 +441,7 @@ private void Run() if (this.IsParameterBound(c => c.EdgeZone)) { - vExtendedLocation = new ExtendedLocation { Name = this.EdgeZone, Type = ExtendedLocationTypes.EdgeZone }; + vExtendedLocation = new ExtendedLocation { Name = this.EdgeZone, Type = ExtendedLocationType.EdgeZone }; } if (this.IsParameterBound(c => c.AcceleratedNetwork)) diff --git a/src/Compute/Compute/Generated/Image/Config/NewAzureRmImageConfigCommand.cs b/src/Compute/Compute/Generated/Image/Config/NewAzureRmImageConfigCommand.cs index 2935d346d515..1f138b244f38 100644 --- a/src/Compute/Compute/Generated/Image/Config/NewAzureRmImageConfigCommand.cs +++ b/src/Compute/Compute/Generated/Image/Config/NewAzureRmImageConfigCommand.cs @@ -135,7 +135,7 @@ private void Run() if (this.IsParameterBound(c => c.EdgeZone)) { - vExtendedLocation = new ExtendedLocation { Name = this.EdgeZone, Type = ExtendedLocationTypes.EdgeZone }; + vExtendedLocation = new ExtendedLocation { Name = this.EdgeZone, Type = ExtendedLocationType.EdgeZone }; } var vImage = new PSImage diff --git a/src/Compute/Compute/Generated/LogAnalytic/LogAnalyticExportRequestRateByIntervalMethod.cs b/src/Compute/Compute/Generated/LogAnalytic/LogAnalyticExportRequestRateByIntervalMethod.cs index 4cc9601c2b69..63c0635b96c6 100644 --- a/src/Compute/Compute/Generated/LogAnalytic/LogAnalyticExportRequestRateByIntervalMethod.cs +++ b/src/Compute/Compute/Generated/LogAnalytic/LogAnalyticExportRequestRateByIntervalMethod.cs @@ -57,14 +57,14 @@ public override void ExecuteCmdlet() if (NoWait.IsPresent) { - var result = LogAnalyticsClient.BeginExportRequestRateByInterval(parameters, location); + var result = LogAnalyticsClient.BeginExportRequestRateByInterval(location, parameters); var psObject = new PSLogAnalyticsOperationResult(); ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); WriteObject(psObject); } else { - var result = LogAnalyticsClient.ExportRequestRateByInterval(parameters, location); + var result = LogAnalyticsClient.ExportRequestRateByInterval(location, parameters); var psObject = new PSLogAnalyticsOperationResult(); ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); WriteObject(psObject); diff --git a/src/Compute/Compute/Generated/LogAnalytic/LogAnalyticExportThrottledRequestsMethod.cs b/src/Compute/Compute/Generated/LogAnalytic/LogAnalyticExportThrottledRequestsMethod.cs index 61e3c218378c..e0069199f6d8 100644 --- a/src/Compute/Compute/Generated/LogAnalytic/LogAnalyticExportThrottledRequestsMethod.cs +++ b/src/Compute/Compute/Generated/LogAnalytic/LogAnalyticExportThrottledRequestsMethod.cs @@ -56,14 +56,14 @@ public override void ExecuteCmdlet() if (NoWait.IsPresent) { - var result = LogAnalyticsClient.BeginExportThrottledRequests(parameters, location); + var result = LogAnalyticsClient.BeginExportThrottledRequests(location, parameters); var psObject = new PSLogAnalyticsOperationResult(); ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); WriteObject(psObject); } else { - var result = LogAnalyticsClient.ExportThrottledRequests(parameters, location); + var result = LogAnalyticsClient.ExportThrottledRequests(location, parameters); var psObject = new PSLogAnalyticsOperationResult(); ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); WriteObject(psObject); diff --git a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs index 196e98946fd3..1623e245f55c 100644 --- a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs +++ b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs @@ -182,9 +182,9 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap() - .ForMember(c => c.Type, o => o.MapFrom(r => r.Type1)); + .ForMember(c => c.Type, o => o.MapFrom(r => r.VirtualMachineScaleSetExtensionPropertiesType)); cfg.CreateMap() - .ForMember(c => c.Type1, o => o.MapFrom(r => r.Type)); + .ForMember(c => c.VirtualMachineScaleSetExtensionPropertiesType, o => o.MapFrom(r => r.Type)); cfg.CreateMap(); cfg.CreateMap(); diff --git a/src/Compute/Compute/Generated/Snapshot/Config/NewAzureRmSnapshotConfigCommand.cs b/src/Compute/Compute/Generated/Snapshot/Config/NewAzureRmSnapshotConfigCommand.cs index db8b6f643f3e..30b68da67305 100644 --- a/src/Compute/Compute/Generated/Snapshot/Config/NewAzureRmSnapshotConfigCommand.cs +++ b/src/Compute/Compute/Generated/Snapshot/Config/NewAzureRmSnapshotConfigCommand.cs @@ -368,7 +368,7 @@ private void Run() if (this.IsParameterBound(c => c.EdgeZone)) { - vExtendedLocation = new ExtendedLocation { Name = this.EdgeZone, Type = ExtendedLocationTypes.EdgeZone }; + vExtendedLocation = new ExtendedLocation { Name = this.EdgeZone, Type = ExtendedLocationType.EdgeZone }; } if (this.IsParameterBound(c => c.AcceleratedNetwork)) diff --git a/src/Compute/Compute/Generated/Snapshot/Config/NewAzureRmSnapshotUpdateConfigCommand.cs b/src/Compute/Compute/Generated/Snapshot/Config/NewAzureRmSnapshotUpdateConfigCommand.cs index 51af6adc9498..347adda3349c 100644 --- a/src/Compute/Compute/Generated/Snapshot/Config/NewAzureRmSnapshotUpdateConfigCommand.cs +++ b/src/Compute/Compute/Generated/Snapshot/Config/NewAzureRmSnapshotUpdateConfigCommand.cs @@ -163,7 +163,7 @@ private void Run() if (this.IsParameterBound(c => c.EdgeZone)) { - vExtendedLocation = new ExtendedLocation { Name = this.EdgeZone, Type = ExtendedLocationTypes.EdgeZone }; + vExtendedLocation = new ExtendedLocation { Name = this.EdgeZone, Type = ExtendedLocationType.EdgeZone }; } if (this.IsParameterBound(c => c.DiskEncryptionKey)) diff --git a/src/Compute/Compute/Generated/VirtualMachine/InvokeAzureVMInstallPatch.cs b/src/Compute/Compute/Generated/VirtualMachine/InvokeAzureVMInstallPatch.cs index 34bc79958a84..ca1322f2cad5 100644 --- a/src/Compute/Compute/Generated/VirtualMachine/InvokeAzureVMInstallPatch.cs +++ b/src/Compute/Compute/Generated/VirtualMachine/InvokeAzureVMInstallPatch.cs @@ -275,7 +275,7 @@ public override void ExecuteCmdlet() } VirtualMachineInstallPatchesParameters vmInstallPatchesParameters = new VirtualMachineInstallPatchesParameters(); - vmInstallPatchesParameters.MaximumDuration = this.MaximumDuration; + vmInstallPatchesParameters.MaximumDuration = System.Xml.XmlConvert.ToTimeSpan(this.MaximumDuration); vmInstallPatchesParameters.RebootSetting = this.RebootSetting; // divde linux and windows diff --git a/src/Compute/Compute/Generated/VirtualMachineScaleSetVM/VirtualMachineScaleSetVMGetMethod.cs b/src/Compute/Compute/Generated/VirtualMachineScaleSetVM/VirtualMachineScaleSetVMGetMethod.cs index c482a97bdd5a..91af1289a013 100644 --- a/src/Compute/Compute/Generated/VirtualMachineScaleSetVM/VirtualMachineScaleSetVMGetMethod.cs +++ b/src/Compute/Compute/Generated/VirtualMachineScaleSetVM/VirtualMachineScaleSetVMGetMethod.cs @@ -80,7 +80,7 @@ public override void ExecuteCmdlet() var expand = new Microsoft.Rest.Azure.OData.ODataQuery(); expand.Expand = "instanceView"; - var result = VirtualMachineScaleSetVMsClient.List(resourceGroupName, vmScaleSetName, expand); + var result = VirtualMachineScaleSetVMsClient.List(resourceGroupName, vmScaleSetName, expand: expand.Expand); var resultList = result.ToList(); var nextPageLink = result.NextPageLink; while (!string.IsNullOrEmpty(nextPageLink)) diff --git a/src/Compute/Compute/Images/GetAzureVMImageCommand.cs b/src/Compute/Compute/Images/GetAzureVMImageCommand.cs index 110f797f3840..cc755fa35238 100644 --- a/src/Compute/Compute/Images/GetAzureVMImageCommand.cs +++ b/src/Compute/Compute/Images/GetAzureVMImageCommand.cs @@ -189,7 +189,7 @@ public override void ExecuteCmdlet() this.PublisherName, this.Offer, this.Skus, - this.Expand, + expand: this.Expand, top: this.Top, orderby: this.OrderBy ).GetAwaiter().GetResult(); diff --git a/src/Compute/Compute/Manual/AddAzVmssRunCommand.cs b/src/Compute/Compute/Manual/AddAzVmssRunCommand.cs index 73e29a1c124f..4902bee8febf 100644 --- a/src/Compute/Compute/Manual/AddAzVmssRunCommand.cs +++ b/src/Compute/Compute/Manual/AddAzVmssRunCommand.cs @@ -119,7 +119,7 @@ public override void ExecuteCmdlet() var expand = new Microsoft.Rest.Azure.OData.ODataQuery(); expand.Expand = "instanceView"; - var vmList = VirtualMachineScaleSetVMsClient.List(resourceGroupName, vmScaleSetName, expand); + var vmList = VirtualMachineScaleSetVMsClient.List(resourceGroupName, vmScaleSetName, expand: expand.Expand); var resultList = vmList.ToList(); var nextPageLink = vmList.NextPageLink; while (!string.IsNullOrEmpty(nextPageLink)) diff --git a/src/Compute/Compute/Manual/RemoveAzVmssRunComand.cs b/src/Compute/Compute/Manual/RemoveAzVmssRunComand.cs index e69896bb7a3f..e109d0ea5573 100644 --- a/src/Compute/Compute/Manual/RemoveAzVmssRunComand.cs +++ b/src/Compute/Compute/Manual/RemoveAzVmssRunComand.cs @@ -74,7 +74,7 @@ public override void ExecuteCmdlet() var expand = new Microsoft.Rest.Azure.OData.ODataQuery(); expand.Expand = "instanceView"; - var vmList = VirtualMachineScaleSetVMsClient.List(resourceGroupName, vmScaleSetName, expand); + var vmList = VirtualMachineScaleSetVMsClient.List(resourceGroupName, vmScaleSetName, expand: expand.Expand); var resultList = vmList.ToList(); var nextPageLink = vmList.NextPageLink; while (!string.IsNullOrEmpty(nextPageLink)) diff --git a/src/Compute/Compute/Models/PSExtendedLocation.cs b/src/Compute/Compute/Models/PSExtendedLocation.cs index 0232f23cbce6..bd500893a06d 100644 --- a/src/Compute/Compute/Models/PSExtendedLocation.cs +++ b/src/Compute/Compute/Models/PSExtendedLocation.cs @@ -12,7 +12,7 @@ public PSExtendedLocation(string EdgeZone) var extendedLocation = new ExtendedLocation(EdgeZone); this.Name = extendedLocation.Name; - this.Type = ExtendedLocationTypes.EdgeZone; + this.Type = ExtendedLocationType.EdgeZone; } public string Name { get; set; } diff --git a/src/Compute/Compute/Strategies/ComputeRp/VirtualMachineScaleSetStrategy.cs b/src/Compute/Compute/Strategies/ComputeRp/VirtualMachineScaleSetStrategy.cs index 10e9caa76cc7..14a4b8fe9df2 100644 --- a/src/Compute/Compute/Strategies/ComputeRp/VirtualMachineScaleSetStrategy.cs +++ b/src/Compute/Compute/Strategies/ComputeRp/VirtualMachineScaleSetStrategy.cs @@ -91,7 +91,7 @@ internal static ResourceConfig CreateVirtualMachineScale var vmss = new VirtualMachineScaleSet { Zones = zones, - ExtendedLocation = edgeZone == null ? null : new CM.ExtendedLocation(edgeZone, CM.ExtendedLocationTypes.EdgeZone), + ExtendedLocation = edgeZone == null ? null : new CM.ExtendedLocation(edgeZone, CM.ExtendedLocationType.EdgeZone), UpgradePolicy = new UpgradePolicy { Mode = upgradeMode ?? UpgradeMode.Manual, @@ -266,7 +266,7 @@ internal static ResourceConfig CreateVirtualMachineScale } }, Zones = zones, - ExtendedLocation = edgeZone == null ? null : new CM.ExtendedLocation(edgeZone, CM.ExtendedLocationTypes.EdgeZone), + ExtendedLocation = edgeZone == null ? null : new CM.ExtendedLocation(edgeZone, CM.ExtendedLocationType.EdgeZone), Sku = new Azure.Management.Compute.Models.Sku() { Capacity = instanceCount, diff --git a/src/Compute/Compute/VirtualMachine/Action/StopAzureVMCommand.cs b/src/Compute/Compute/VirtualMachine/Action/StopAzureVMCommand.cs index 49df74e5b8c6..d40bdf00317b 100644 --- a/src/Compute/Compute/VirtualMachine/Action/StopAzureVMCommand.cs +++ b/src/Compute/Compute/VirtualMachine/Action/StopAzureVMCommand.cs @@ -150,11 +150,11 @@ public override void ExecuteCmdlet() { if (NoWait.IsPresent) { - op = this.VirtualMachineClient.BeginDeallocateWithHttpMessagesAsync(this.ResourceGroupName, this.Name, null, CancellationToken.None).GetAwaiter().GetResult(); + op = this.VirtualMachineClient.BeginDeallocateWithHttpMessagesAsync(this.ResourceGroupName, this.Name).GetAwaiter().GetResult(); } else { - op = this.VirtualMachineClient.DeallocateWithHttpMessagesAsync(this.ResourceGroupName, this.Name, null, CancellationToken.None).GetAwaiter().GetResult(); + op = this.VirtualMachineClient.DeallocateWithHttpMessagesAsync(this.ResourceGroupName, this.Name).GetAwaiter().GetResult(); } } diff --git a/src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs b/src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs index 605751e477b8..fe0ffdf22afd 100644 --- a/src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs +++ b/src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs @@ -708,7 +708,7 @@ public async Task> CreateConfigAsync() CM.ExtendedLocation extLoc = null; if (_cmdlet.EdgeZone != null) { - extLoc = new CM.ExtendedLocation { Name = _cmdlet.EdgeZone, Type = CM.ExtendedLocationTypes.EdgeZone }; + extLoc = new CM.ExtendedLocation { Name = _cmdlet.EdgeZone, Type = CM.ExtendedLocationType.EdgeZone }; } if (_cmdlet.DiskFile == null) @@ -996,7 +996,7 @@ public void DefaultExecuteCmdlet() CM.ExtendedLocation ExtendedLocation = null; if (this.EdgeZone != null) { - ExtendedLocation = new CM.ExtendedLocation { Name = this.EdgeZone, Type = CM.ExtendedLocationTypes.EdgeZone }; + ExtendedLocation = new CM.ExtendedLocation { Name = this.EdgeZone, Type = CM.ExtendedLocationType.EdgeZone }; } // Normal TL defaulting check, minimal params @@ -1182,7 +1182,7 @@ public void DefaultExecuteCmdlet() } } - Rest.Azure.AzureOperationResponse result; + Rest.Azure.AzureOperationResponse result; if (this.IsParameterBound(c => c.SshKeyName)) { @@ -1205,36 +1205,31 @@ public void DefaultExecuteCmdlet() var psResult = ComputeAutoMapperProfile.Mapper.Map(result); - if (!(this.DisableBginfoExtension.IsPresent || IsLinuxOs())) - { - var currentBginfoVersion = GetBginfoExtension(); - - if (!string.IsNullOrEmpty(currentBginfoVersion)) - { - var extensionParameters = new VirtualMachineExtension - { - Location = this.Location, - Publisher = VirtualMachineBGInfoExtensionContext.ExtensionDefaultPublisher, - VirtualMachineExtensionType = VirtualMachineBGInfoExtensionContext.ExtensionDefaultName, - TypeHandlerVersion = currentBginfoVersion, - AutoUpgradeMinorVersion = true, - }; - - typeof(CM.ResourceWithOptionalLocation).GetRuntimeProperty("Name") - .SetValue(extensionParameters, VirtualMachineBGInfoExtensionContext.ExtensionDefaultName); - typeof(CM.ResourceWithOptionalLocation).GetRuntimeProperty("Type") - .SetValue(extensionParameters, VirtualMachineExtensionType); - - var op2 = ComputeClient.ComputeManagementClient.VirtualMachineExtensions.CreateOrUpdateWithHttpMessagesAsync( - this.ResourceGroupName, - this.VM.Name, - VirtualMachineBGInfoExtensionContext.ExtensionDefaultName, - extensionParameters).GetAwaiter().GetResult(); - psResult = ComputeAutoMapperProfile.Mapper.Map(op2); - } - } - - WriteObject(psResult); + if (!(this.DisableBginfoExtension.IsPresent || IsLinuxOs())) + { + var currentBginfoVersion = GetBginfoExtension(); + + if (!string.IsNullOrEmpty(currentBginfoVersion)) + { + var extensionParameters = new VirtualMachineExtension + { + Location = this.Location, + Publisher = VirtualMachineBGInfoExtensionContext.ExtensionDefaultPublisher, + VirtualMachineExtensionType = VirtualMachineBGInfoExtensionContext.ExtensionDefaultName, + TypeHandlerVersion = currentBginfoVersion, + AutoUpgradeMinorVersion = true, + }; + + var op2 = ComputeClient.ComputeManagementClient.VirtualMachineExtensions.CreateOrUpdateWithHttpMessagesAsync( + this.ResourceGroupName, + this.VM.Name, + VirtualMachineBGInfoExtensionContext.ExtensionDefaultName, + extensionParameters).GetAwaiter().GetResult(); + psResult = ComputeAutoMapperProfile.Mapper.Map(op2); + } + } + + WriteObject(psResult); }); } } @@ -1555,7 +1550,7 @@ private string CreateStandardStorageAccount(StorageManagementClient client) SM.ExtendedLocation extendedLocation = null; if (this.EdgeZone != null) { - extendedLocation = new SM.ExtendedLocation { Name = this.EdgeZone, Type = CM.ExtendedLocationTypes.EdgeZone }; + extendedLocation = new SM.ExtendedLocation { Name = this.EdgeZone, Type = CM.ExtendedLocationType.EdgeZone }; } var storaeAccountParameter = new StorageAccountCreateParameters